L
Louis
I have created a VBA procedure in MS Access 2003 that creates a PowerPoint
PPT from data in MS Access. However, whenever a field contains more than
255 or 256 characters, it displays garbage characters. The rest of the data
doesn't show.
If I copy the data from the Access Query and paste it into the powerpoint,
all the characters will display.
I use the following code for this action:
....
.Shapes.AddTextbox msoTextOrientationHorizontal, 0, 120, 360, 100
.Shapes(6).TextFrame.TextRange.Text =
CStr(rs.Fields("ProblemStatement").Value)
....
This is a really powerful tool, but if I can't get around this it will be
useless for me.
Thanks is advance.
PPT from data in MS Access. However, whenever a field contains more than
255 or 256 characters, it displays garbage characters. The rest of the data
doesn't show.
If I copy the data from the Access Query and paste it into the powerpoint,
all the characters will display.
I use the following code for this action:
....
.Shapes.AddTextbox msoTextOrientationHorizontal, 0, 120, 360, 100
.Shapes(6).TextFrame.TextRange.Text =
CStr(rs.Fields("ProblemStatement").Value)
....
This is a really powerful tool, but if I can't get around this it will be
useless for me.
Thanks is advance.