I need to find some sort of method to convert a series of char variables to a string, to be shown in a label. I've searched for two days and experimented myself just as long, and the closest I've gotten simply puts ASCII values into the string with the following command:
fdp1-fdp8 are all char variables.
Thanks
Code:
label1 -> Text = System::Convert::ToString(fdp8), System::Convert::ToString(fdp7), System::Convert::ToString(fdp6), System::Convert::ToString(fdp5), System::Convert::ToString(fdp4), System::Convert::ToString(fdp3), System::Convert::ToString(fdp2), System::Convert::ToString(fdp1);
Thanks
Comment