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
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
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