Article Details
Id:13477
Product:finPOWER Connect
Type:FIX
Version:2.03.04
Opened:02/12/2015
Closed:02/12/2015
Released:03/02/2016
Job: J016643

ISWordDocument; Bookmarks retrieved via GetBookmarks may not set Table property correctly

The finPOWER Connect Business Layer function ISWordDocument.GetBookmarks may not get the Table property of Bookmarks correctly.

The Table property may include a tab character when the bookmark is in a bulleted list. This means comparisons on the Table property will fail to work as expected.

As a workaround, the following code could be used:

Table = Bookmark.Table
If Left(Table, 1) = vbTab Then Table = Mid(Table, 2)

Then use the Table variable in place of the Bookmark.Table property.