home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 May / PCUser05CD1.iso / utils / automate.exe / %MAINDIR% / sample2.BAS < prev    next >
Encoding:
BASIC Source File  |  2001-01-22  |  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.