home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 4020
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 5565
- Height = 4545
- Left = 1035
- LinkTopic = "Form1"
- ScaleHeight = 4020
- ScaleWidth = 5565
- Top = 1020
- Width = 5685
- Begin CommandButton InputMsg
- Caption = "Show Input Message"
- Height = 615
- Left = 1440
- TabIndex = 2
- Top = 2520
- Width = 3375
- End
- Begin CommandButton PromptMsg
- Caption = "Show message requiring User Action"
- Height = 615
- Left = 1440
- TabIndex = 1
- Top = 1560
- Width = 3375
- End
- Begin CommandButton TimedMsg
- Caption = "Show timed message"
- Height = 615
- Left = 1440
- TabIndex = 0
- Top = 600
- Width = 3375
- End
- Sub InputMsg_Click ()
- Dim text As String
- text = Getinput("You can validate your Input!", "A10", "Start")
- message "This was the value you entered:" + Chr$(13) + Chr$(10) + Chr$(13) + Chr$(10) + text
- End Sub
- Sub PromptMsg_Click ()
- Dim x As Integer
- x = Prompt("You must use the button to remove this message", 3)
- End Sub
- Sub TimedMsg_Click ()
- Dim text As String
- message "This message will disappear after a while, or you can click on it, or press any key."
- End Sub
-