home *** CD-ROM | disk | FTP | other *** search
- ' 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
-
-