G
Guest
I have a macro programmed in VBA to fill a word table with fields of data
from outlook journal entries. I am using the approach Sue Mosher describes
in her book Listing 22.11 on page 509, which uses the following code syntax
to put data into row x and column y of a word table:
objTable.Cell(x,y).Range.InsertAfter _
Myitem.UserProperties.Find("string"), where in my case "string" is used
as a user defined value that is bound to a textbox.
For bound values that are type of Text, this works fine. My problem is that
oone of the bound values to one of the textboxes is a Keyword and another is
type Yes/No.
Can anyone advise me as to how to change the code syntax on
MyItem.UserProperties to pick up the value of the Keyword or Yes/No value and
insert it into the cell of the WORD table?????
from outlook journal entries. I am using the approach Sue Mosher describes
in her book Listing 22.11 on page 509, which uses the following code syntax
to put data into row x and column y of a word table:
objTable.Cell(x,y).Range.InsertAfter _
Myitem.UserProperties.Find("string"), where in my case "string" is used
as a user defined value that is bound to a textbox.
For bound values that are type of Text, this works fine. My problem is that
oone of the bound values to one of the textboxes is a Keyword and another is
type Yes/No.
Can anyone advise me as to how to change the code syntax on
MyItem.UserProperties to pick up the value of the Keyword or Yes/No value and
insert it into the cell of the WORD table?????