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 / ch18code / document.bas < prev    next >
Encoding:
BASIC Source File  |  1995-08-13  |  371 b   |  15 lines

  1. Attribute VB_Name = "modMain"
  2. ' Internal variable for Word object.
  3. Private mobjWord As Object
  4. ' Internal variable for WordBasic object.
  5. Private mObjBasic As Object
  6.  
  7. Sub Main()
  8.     Form1.Show
  9.     Dim Document As New Document
  10.     Document.Create Form1.OLE1, 1, 1, Form1.Height, Form1.Width
  11.     Form1.OLE1.DoVerb
  12.     Document.Basic.INSERT "Some text"
  13. End Sub
  14.  
  15.