19 lines
778 B
Text
19 lines
778 B
Text
|
' Gambas class file
|
||
|
|
||
|
' Copyright(C)2010. Autor: Pablo Mileti
|
||
|
|
||
|
'This program Is free software: you can redistribute it And / Or modify it under the terms Of the GNU General Public License As published by the Free Software Foundation, either version 3 Of the License, Or (at your option)any later version.
|
||
|
|
||
|
'This program Is distributed In the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty Of MERCHANTABILITY Or FITNESS For A PARTICULAR PURPOSE.See the GNU General Public License For more details.
|
||
|
|
||
|
'You should have received a Copy Of the GNU General Public License along With this program.IfNot, see < http: / / www.gnu.org / licenses / > .
|
||
|
|
||
|
|
||
|
Public Sub Form_Open()
|
||
|
Me.Window.Center
|
||
|
End
|
||
|
|
||
|
Public Sub Button1_Click()
|
||
|
Me.Close
|
||
|
End
|