gambas-source-code/app/examples/Games/DeepSpace/.src/FAbout.class

20 lines
499 B
Text
Raw Normal View History

' 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 =
2019-05-17 05:44:34 +02:00
("<u><font size=\"6\"><b>DeepSpace&nbsp;&nbsp;") & 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>"
2019-05-17 05:44:34 +02:00
"Copyright (C) 2004, Michael Isaac. All rights reserved.")
End