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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
BASIC Source File
|
1995-08-13
|
371 b
|
15 lines
Attribute VB_Name = "modMain"
' Internal variable for Word object.
Private mobjWord As Object
' Internal variable for WordBasic object.
Private mObjBasic As Object
Sub Main()
Form1.Show
Dim Document As New Document
Document.Create Form1.OLE1, 1, 1, Form1.Height, Form1.Width
Form1.OLE1.DoVerb
Document.Basic.INSERT "Some text"
End Sub