home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 5820
- ClientLeft = 1080
- ClientTop = 1485
- ClientWidth = 7365
- Height = 6225
- Left = 1020
- LinkTopic = "Form1"
- ScaleHeight = 5820
- ScaleWidth = 7365
- Top = 1140
- Width = 7485
- Begin TextBox Text1
- Height = 315
- Left = 330
- TabIndex = 1
- Text = "Text1"
- Top = 690
- Width = 2415
- End
- Begin CommandButton Command1
- Caption = "Command1"
- Height = 405
- Left = 2790
- TabIndex = 0
- Top = 630
- Width = 975
- End
- Option Explicit
- Sub Command1_Click ()
- text1.Text = GetDate(text1)
- End Sub
- Sub Form_Load ()
- text1 = Date
- End Sub
-