> For the complete documentation index, see [llms.txt](https://xojo.gitbook.io/add-ons/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xojo.gitbook.io/add-ons/ftc-word-exporter/how-to-use-it.md).

# How to use it

## Example code for using the export

```xojo
Dim file As Folderitem = GetSaveFolderItem("DOCX", "test.docx")
Dim it As New WordIterator
Dim ftit As New FTIterator(TestDisplay, it)

// Set the cursor to a watch.
App.MouseCursor = System.Cursors.Wait

// Create the Microsoft Word output.
ftit.Run(Nil, Nil)
it.Save(file, it.ZIP_MBS)

// Reset the cursor.
App.MouseCursor = Nil 
```
