I am using Visual Studio using c++. I have a char which holds a value. I need to add the value to a text box, so I have:
Visual c++ help appreciated!!
3
I am using Visual Studio using c++.
I have a char which holds a value. I need to add the value to a text box, so I have:
char x;
textBox2->Text = x.ToString();
Trouble is I need to get the ASCII value instead of the decimal.
i.e. if x has 117 in it I want to get 'u' in the string, at the moment I get 117.
Any easy way to do this!
Really appreciate any help!
I have a char which holds a value. I need to add the value to a text box, so I have:
char x;
textBox2->Text = x.ToString();
Trouble is I need to get the ASCII value instead of the decimal.
i.e. if x has 117 in it I want to get 'u' in the string, at the moment I get 117.
Any easy way to do this!
Really appreciate any help!
- Vin Venture
- KirkMcD
Next Topics on Trending Feed
-
3