form using UNICODE

Hi all!
I want to use unicode in my form such as the caption of the button, can we do that with VB and if posible, please tell me how to do!
Thank you!
[164 byte] By [Chua] at [2007-11-17 16:54:55]
# 1 Re: form using UNICODE
hi,

Refer the functions you want to know more about unicode AscB/ChrB and AscW/ChrW functions.

K.Babu
K.Babu at 2007-11-10 0:23:16 >
# 2 Re: form using UNICODE
Thanks!
I will follow you guide
Chua at 2007-11-10 0:24:16 >
# 3 Re: form using UNICODE
I guess you can do it in VB with strings, but most of the controls (buttons, textboxes) don't support unicode, only one codepage at a time. Some that do support Unicode are Datagrid and Forms20 controls and they also have some problems in Win95/98/Me.

Search the net for unicode buttons or make your own using windows api unicode functions.
lehmaeit at 2007-11-10 0:25:18 >
# 4 Re: form using UNICODE
I've experienced developing an application which is in chinese version. I just input the those chinese characters in the caption and text properties of the buttons, tabs, etc.

Everything is just the same, except for one thing. You need to compile the project in a chinese windows operating system.

Try it. It might work :)
nokiamania at 2007-11-10 0:26:23 >
# 5 Re: form using UNICODE
Work with visual UNICODE components, it will solve the problem for you. For instance, if you want to output HTML contents in UNICODE you can use the VXPLib component.
Email me, if you need it.
Chopper at 2007-11-10 0:27:24 >