home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Programmer'…arterly (Limited Edition) / Visual_Basic_Programmers_Journal_VB-CD_Quarterly_Limited_Edition_1995.iso / code / ch15code / createle.txt < prev    next >
Encoding:
Text File  |  1995-08-12  |  369 b   |  14 lines

  1. ' NORMAL.DOT.This is a new letter
  2. ' CreateLetter WordBasic macro.
  3. Sub MAIN
  4.      ' Insert some text -- not very interesting,
  5.      '  but you get the idea...
  6.      Insert "This is a new letter"
  7.      InsertPara
  8.      Insert "Dear Jane:"
  9.      InsertPara
  10.      Insert "I'm sorry I won't make it to your party."
  11.      Insert "I'm too busy programming VBA."
  12. End Sub
  13.  
  14.