[Gambas-user] Automanic Line Separator for Subroutine in writing code
Dimitri Bellini
dimitribellini at ...69...
Thu May 8 01:49:26 CEST 2003
Hi Benoit
is possible to have a automatic line separator for every subroutine (like
visual basic while writing a Subroutine) like this:
#######################################
PRIVATE $hConn AS NEW Connection
PRIVATE $rData AS NEW Result
---------------------------------------------------------------
STATIC PUBLIC SUB Main()
DIM hForm AS Form
hForm = NEW FMain
hForm.Show
END
----------------------------------------------------------------
PUBLIC SUB btnConnetti_Click()
DIM sName AS String
TRY $hConn.Close
WITH $hConn
.Type = "mysql"
.Host = "localhost"
.Login = "root"
.Password = "dimitri76"
END WITH
END
---------------------------------------------------------------
######################################
I know that is only for newbie but if is possible...
Thanks in advance
Dimitri
More information about the User
mailing list