ConvertVietDoc Method

Microsoft Word Visual Basic

ConvertVietDoc Method

       

Reconverts a Vietnamese document to Unicode using a code page other than the default.

expression.ConvertVietDoc(CodePageOrigin)

expression   Required. An expression that returns a Document object.

CodePageOrigin  Required Long. The original code page used to encode the document.

Remarks

Use the ConvertVietDoc method if you want a document to be viewable on another computer or platform.

Example

This example converts the active document from the Vietnamese ABC code page to Unicode. This example assumes that the active document is encoded using the Vietnamese ABC code page.

Sub ConvertToVietCodePage()
    ActiveDocument.ConvertVietDoc CodePageOrigin:=5
End Sub