Search found 518 matches

by stevedee
Friday 2nd February 2018 8:32am
Forum: Lounge
Topic: so silent
Replies: 9
Views: 15586

Re: so silent

...It's so silent. I'm worry this forum will be sleep forever. :( So, are you working on any Gambas related projects at the moment Sony? I'm currently working on my Bat Call Logger which uses a very simple Gambas program, but there is nothing very unusual or interesting in this code. This forum doe...
by stevedee
Monday 15th January 2018 10:05am
Forum: General
Topic: 'Ends'
Replies: 2
Views: 5506

Re: 'Ends'

That's great cogier! an interesting example.

I played around with it for a while, and then I sort of 'drifted off', creating this one liner using Last.Name.
HiBye.png
HiBye.png (14.98 KiB) Viewed 5503 times
by stevedee
Tuesday 9th January 2018 3:12pm
Forum: General
Topic: Gridview borders
Replies: 14
Views: 21440

Re: Gridview borders

OK try this:- Public Sub Form_Open() Dim hBorder As Border hBorder = New Border 'specify cell border With hBorder .Width = 5 .Color = Color.Red .BottomStyle = Border.Raised .BottomColor = Color.DarkBlue .TopColor = Color.Green End With GridView1.Columns.Count = 3 GridView1.Rows.Count = 4 GridView1.H...
by stevedee
Tuesday 9th January 2018 2:24pm
Forum: General
Topic: Gridview borders
Replies: 14
Views: 21440

Re: Gridview borders

Its certainly not a complete answer, and I've just looked at it again and found that using a Static Function:- GridView1[1, 1].Border = Border("style:double;color:Red") ...works just as well. Also, if you type:- GridView1[1, 1].Border. ...you are offered a list of possible Properties. So i...
by stevedee
Tuesday 9th January 2018 10:46am
Forum: General
Topic: Gridview borders
Replies: 14
Views: 21440

Re: Gridview borders

Hi cogier, this is one of those cases where I find Gambas documentation pretty useless. However, I discovered that this format seems to work; GridView1[1, 1].Border = New Border("style:double;color:Red") Unless something is obvious to beginners (& me), there needs to be a working examp...
by stevedee
Sunday 24th December 2017 10:49am
Forum: Lounge
Topic: Merry Christmas!
Replies: 3
Views: 7201

Re: Merry Christmas!

Happy Christmas and a Gambas New Year!!!
by stevedee
Friday 1st December 2017 7:30am
Forum: General
Topic: 3.10 - Strange Message something about 'Desktop.H'
Replies: 7
Views: 11221

Re: 3.10 - Strange Message something about 'Desktop.H'

... or can make a guess? I really have no idea. If it happened to me, I'd try menu Project > Compile All as this has fixed a few strange problems for me in the past. What version of Gambas are you using? Are you able to upload your project here? I'm sure one or two of us would be interested in tryi...
by stevedee
Friday 24th November 2017 8:05pm
Forum: General
Topic: Terminal
Replies: 2
Views: 4901

Re: Terminal

cogier wrote: Friday 24th November 2017 4:49pm ...Can anybody tell me where the Gambas Terminal history is held while the Terminal is open...
I suspect its like MS Windows, were it is held in RAM, so not persistent.
by stevedee
Friday 10th November 2017 7:19pm
Forum: General
Topic: "And" query
Replies: 3
Views: 5737

Re: "And" query

Hi cogier, Gambas is checking your code first and finding an error (that the assignment of the value is illegal or out of bounds). It hasn't got to the stage of evaluating the If expression yet.
by stevedee
Tuesday 7th November 2017 3:28pm
Forum: General
Topic: How to simulate "Enter" key
Replies: 2
Views: 4959

Re: How to simulate "Enter" key

You can use Desktop.Sendkeys("[Return]") if that is what you mean.

See: http://gambaswiki.org/wiki/comp/gb.desk ... p/sendkeys