Software Development Network>> .NET Development>> Help me to solve this problem(about a display)!Thanks!
to hauptman Thanks!But it can't show 'a'.it also show '97'.
Help me to solve this problem(about a display)!Thanks!
jimg43
Ok, you can do this instead.
char c = 'a';
MessageBox::Show(Convert::ToChar(c).ToString());
Hope that works...
cheers,
Paul June A. Domag
sramshaw
Thank you very much!
It's all right!
C.P.Hardcastle
you could do this:
char ch;
ch = 'a';
// cast it to a System::Char type
MessageBox::show((System::Char) ch);
cheers,
Paul June A. Domag
riddler_69
Zoltan Magyar
NickP
to hauptman
Thanks!
But it can't show 'a'.
it also show '97'.
RickSolie
Thanks!
But when complied this code,there was a error which said "can't convet paramete 1 (from _wchar_t )"