[Gambas-user] Problem finding DataBaseManager

2016-01-10 Thread Robert Boykin
I am using Gambas 3.8.4 and can't find the DataBaseManager or any mention of it in the IDE .  I am a newbie  trying to learn Gambas by studying examples from the internet.  Any suggestions? [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.19.0-32-generic Architecture=x86_64 Distribution=Li

[Gambas-user] How to delete a Project from Gambas

2016-01-05 Thread Robert Boykin
How can I delete a project from Gamas3 ?When I  am finished using example projects, I need to delete them to keep from building up clutter. -- ___ Gambas-user mailing list Gamb

[Gambas-user] POSSIBLE! bug in while loop

2015-12-28 Thread Robert Boykin
Test Program code is: ' Gambas class file ' Static Private iexit As Integer = 0 Public Sub _new() End Public Sub Form_Open() GlobalVar.iexit = 0 End Public Sub GObtn_Click() Dim n As Integer n = 0 While n < 10 Print n n = n + 1 If GlobalVar.iexit > 0 Then Break Wend End Public Sub e