home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 17
/
Freelog017.iso
/
Prog
/
FreeDate.bas
Wrap
BASIC Source File
|
2000-11-27
|
611b
|
28 lines
' Copy and paste into your program
DECLARE SUB Button1Click (Sender AS QBUTTON)
CREATE Form AS QFORM
Caption = "Freelog Date"
Width = 320
Height = 69
Center
CREATE Button1 AS QBUTTON
Caption = "Cliquez sur ce bouton pour faire apparaεtre la date du jour"
Left = 8
Top = 10
Width = 291
OnClick = Button1Click
END CREATE
END CREATE
'Insert your initialization code here
Form.ShowModal
'--------- Subroutines ---------
SUB Button1Click (Sender AS QBUTTON)
ShowMessage("Nous sommes aujourd'hui le "+date$+".")
END SUB