Opens a Word Processing file (docx format) in Read/Write mode. The docx file is opened and locked until it is closed.
Remark: To create a docx file without using an initial file, all you have to do is create a
Document variable (in this case,
DocOpen is useless).
// Using a Document variable
d is Document
d = DocOpen("C:\Users\test\Documents\file.docx")
IF ErrorOccurred() THEN
Error(ErrorInfo())
RETURN
END
// Using a Word Processing control
DocOpen(WP_MyWP, "C:\Users\test\Documents\file.docx")
IF ErrorOccurred() THEN
Error(ErrorInfo())
RETURN
END
Syntax
Associating a docx file with a Document variable Hide the details
<Result> = DocOpen(<Document source> [, <Password>])
<Result>: Document variable
Name of Document variable corresponding to the docx file. This variable can be used in all the DocXXX functions.
<Document source>: Type corresponding to the source
Corresponds to one of the following elements: - Full or relative path of docx file to open (up to 260 characters).
- Name of the Buffer variable with the docx document to display in the Word Processing control.
- Name of the memo item with the docx document to display in the Word Processing control. This parameter has the following format: <Data file> <Item>.
<Password>: Optional character string
Password to open the docx file to use (if the file is protected by a password).
Business / UI classification: UI Code