Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
USE customers
public oWord
oWord=CREATEOBJECT("Word.Basic")
scan
oWord.FileOpen ("MyLetter.doc")
oWord.EditGoto("Contact")
oWord.Insert(customers.Contact)
oWord.EditGoTo("Company")
oWord.Insert(customers.Company)
oWord.FilePrint
wait window 'Printing please wait...' timeout(3)
oWord.Fileclose(2)
endscan
oWord.AppClose()
release oWord