home *** CD-ROM | disk | FTP | other *** search
/ Net Power 2000 #9 / Net2.iso / Utility / automate.exe / %MAINDIR% / sample2.BAS < prev    next >
Encoding:
BASIC Source File  |  2000-07-27  |  218 b   |  7 lines

  1. Sub Main
  2.     L$ = InputBox$("What is your name?", "Accepting User Input","No Name")
  3.     Shell "notepad.exe", vbNormalFocus 
  4.     Wait(1)
  5.     SendKeys "See what I mean, " + L$ + ", now let me show you the new way!", 1
  6. End Sub
  7.