| |
milanezi
Posts: 1
Score: 0
Joined: 7/19/2004
From:
Status: offline
|
Hi I am new to VBScript and I want to know where I can get help about creating Word document. For example ( yesterday I wrote this code ) : Dim objWord Dim doc Set objWord=CreateObject("Word.Application") Set doc=CreateObject("Word.Document") objWord.Application.Visible = True doc = objWord.Documents.Add() with objWord .Selection.Font.Name = "Times New Roman" .Selection.Font.Size = 16 .Selection.TypeText vbTab .Selection.TypeText "Hello Word" .Selection.TypeText vbNewLine end with What I need is information where to find specific method or properties about Word.Application or .Selection.Font, etc Are there some usefull e-book ? Thanks in advanced
|
|