6450456741
[DEVELOPMENT ENVIRONMENT] * NEW: Add a web form project template.
22 lines
232 B
Text
22 lines
232 B
Text
' Gambas class file
|
|
|
|
Export
|
|
|
|
|
|
Public Sub WebButton1_Click()
|
|
|
|
Message("This is a message box.")
|
|
|
|
End
|
|
|
|
Public Sub WebTimer1_Timer()
|
|
|
|
WebLabel1.Text = Format(Now, "hh:nn:ss")
|
|
|
|
End
|
|
|
|
Public Sub WebForm_Open()
|
|
|
|
WebTimer1_Timer
|
|
|
|
End
|