c6a9cd69c2
* NEW: Add examples again. I hope correctly this time. git-svn-id: svn://localhost/gambas/trunk@6726 867c0c6c-44f3-4631-809d-bfa615b0a4ec
19 lines
495 B
Text
19 lines
495 B
Text
' Gambas class file
|
|
|
|
'
|
|
' Copyright (C) 2004, Michael Isaac. All rights reserved.
|
|
'
|
|
|
|
Public Sub cmdOK_Click()
|
|
Me.Close()
|
|
End
|
|
|
|
Public Sub Form_Open()
|
|
|
|
Me.Center
|
|
|
|
lblInfo.Text =
|
|
"<u><font size=\"6\"><b>DeepSpace " & Application.Version & "</b></font></u><br>"
|
|
"A vector engine written in Gambas.<br><br>Contact <font color=\"#0000FF\">subjugator@gmail.com</font> with questions.<br>"
|
|
"Copyright (C) 2004, Michael Isaac. All rights reserved."
|
|
End
|