I'm getting data from a mysql table to a recordset to a datagrid in VB6.
the data is a multi-line text description field, of type text (multi-line), and it is always returning encoded text like (box characters) to my grid cell (where I need to see it), everything else is fine:
I tested sending it to a msgbox, and it returns this sample:
"????????????›???"
( a bunch of question marks)
except larger length of course.
The original data is text field in a mysql db, and getting encoded enroute to a recordset read into a datagrid. Any knowledge on why this is happening or solutions?
Another clue is that in a web page, it reads as asian characters, this is not the issue though, it reads as box characters in a
vb datagrid, or MSHFlexgrid, and THATS WHERE I NEED TO READ IT IN ENGLISH, why is the grid cell showing it encoded improperly, while everything else reads english correctly (albeit, single line field data)
Thanks