home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / code / various / msg / msgform1.txt < prev    next >
Encoding:
Text File  |  1995-02-27  |  519 b   |  22 lines

  1. Sub InputMsg_Click ()
  2.     Dim text As String
  3.  
  4.     text = Getinput("You can validate your Input!", "A10", "Start")
  5.  
  6.     message "This was the value you entered:" + Chr$(13) + Chr$(10) + Chr$(13) + Chr$(10) + text
  7.  
  8. End Sub
  9.  
  10. Sub PromptMsg_Click ()
  11.     Dim x As Integer
  12.  
  13.     x = Prompt("You must use the button to remove this message", 3)
  14. End Sub
  15.  
  16. Sub TimedMsg_Click ()
  17.     Dim text As String
  18.  
  19.     message "This message will disappear after a while, or you can click on it, or press any key."
  20. End Sub
  21.  
  22.