Mike
|
| Posted: 03/14/2002, 6:17 AM |
|
I develpe an arabic applicaton and i use listbox, i define a query in the access database and i use this query as a table in CC listbox (i don't write the sql statment in the Lookup SQL in CC because it's give me invisible list means i cann't see the values of the listbox) the listbox values Appears as question marks (it's encode problem) please tell me how to solve this problem with arabic data and how i control the listbox encode (Note: i control the encode of all pages the only problem is listbox).
thanks
|
|
|
 |
Nicole
|
| Posted: 03/14/2002, 7:19 AM |
|
Mike,
try to create Custom Show event for the form, find the code related to listing values and pass table value to tohtml() function before displaying it on the form. E.g. for ASP+Templates
SetVar "ID", GetValue(rsproject_id, 0) : SetVar "Value", tohtml(GetValue(rsproject_id, 1))
|
|
|
 |
|