Doug Lindauer
Programmer
Hopefully this isn't a stupid question. My current system creates and edits a Word file. Here's a sample of some of the code:
All of my computers do have MS Office installed so I don't really have a way to easily test it. One of my potential users wants to know if he needs to have Office installed or is something like Open Office sufficient. So that's my question if anyone can answer it.
Code:
local oWord, wdReplaceAll
wdReplaceAll = 2
oWord = Createobject("Word.Application")
oDocument = oWord.Documents.Open(mWORDFILE)
oRange = oWord.ActiveDocument.Content
with oRange.Find
.Text = "CARDYEAR"
.Replacement.Text = mCARDYEAR
.Execute( , , , , , , , , , , wdReplaceAll)
All of my computers do have MS Office installed so I don't really have a way to easily test it. One of my potential users wants to know if he needs to have Office installed or is something like Open Office sufficient. So that's my question if anyone can answer it.