Search found 1115 matches

by cogier
Monday 14th November 2016 12:37pm
Forum: General
Topic: SimpleEval
Replies: 3
Views: 7257

SimpleEval

I am interested in the SimpleEval program on the Gambas Farm but when I try to open it I get the following message.
SimpleEval.png
SimpleEval.png (82.21 KiB) Viewed 7257 times
Any idea what the issue is?
by cogier
Sunday 6th November 2016 5:17pm
Forum: General
Topic: Flyer Invasion - Just for fun :)
Replies: 9
Views: 11900

Re: Flyer Invasion - Just for fun :)

The latest version seems to work well. Fullscreen works now as well.
by cogier
Thursday 3rd November 2016 10:22pm
Forum: General
Topic: Flyer Invasion - Just for fun :)
Replies: 9
Views: 11900

Re: Flyer Invasion - Just for fun :)

Yes I have looked at this and learnt a lot. I did not know you could do that. As usual - VERY IMPRESSIVE CODE! :geek:

I have one question. Why do you use a variable 's' and not sData or sResult (or Similar)?
by cogier
Monday 31st October 2016 5:29pm
Forum: General
Topic: Flyer Invasion - Just for fun :)
Replies: 9
Views: 11900

Re: Flyer Invasion - Just for fun :)

If only all Linux systems were the same! I found a solution to the screen size issue with the code below: - Public Sub ScreenSize() As String 'To capture current screen size Dim sData, sSize, sTemp As String 'Variables to store the result of the shelled command, the size of the screen and a Temp var...
by cogier
Friday 28th October 2016 11:59am
Forum: General
Topic: Gridview scrollbars
Replies: 2
Views: 5525

Re: Gridview scrollbars

Thanks for this. You have pointed me in the right direction. By using the amount of Rows and multiplying by the height of the Row the Form height required can be calculated.

A sample program is attached.
take1.tar
(500.5 KiB) Downloaded 678 times
by cogier
Thursday 27th October 2016 3:35pm
Forum: General
Topic: Gridview scrollbars
Replies: 2
Views: 5525

Gridview scrollbars

I want to know if the scrollbars of a GridView are being displayed. Unfortunately the GridView.Scrollbar only reports the setting and not if it is being displayed.

The idea is that if the vertical schrollbar bar is showing I could increase the height of the form until the Scrollbar disappears.
by cogier
Friday 14th October 2016 3:17pm
Forum: Lounge
Topic: Raspberry Pi update
Replies: 9
Views: 15169

Re: Raspberry Pi update

If this is the one in the Gambas Farm

Image

Then it crashes here

Image
by cogier
Tuesday 11th October 2016 3:47pm
Forum: General
Topic: FileChooser
Replies: 1
Views: 4625

FileChooser

With a FileChooser Is there a way to set the value of the 'icon size control' using software?

Image

The setting (32/&H20) goes from 0 to 256. The default is 32 as in both images here.

Image
by cogier
Monday 3rd October 2016 3:19pm
Forum: Lounge
Topic: Raspberry Pi update
Replies: 9
Views: 15169

Raspberry Pi update

There is a new Desktop for the Raspberry Pi. Check out the 'PIXEL' desktop https://www.raspberrypi.org/blog/introducing-pixel/
by cogier
Friday 30th September 2016 3:41pm
Forum: General
Topic: Interesting pieces of code
Replies: 3
Views: 6655

Re: Interesting pieces of code

This is another piece of code I liked. I had a database stored in a .csv file but I wanted to display the contents in a particular order. This code is not exactly as used but simplified to show the principle. Public Sub Form_Open() Dim sInputString As String[] = ["One ", "Three "...