S
Steve Behman
In Visual C++ 8.0 Express I am trying to programmatically change the contents
of a text box.
In form1.h I find the initializing code _PAYEE->Text=L"a";.
I assumed that the type of "a" in this expression is const char[] (which
may be a drastic error). Be that as it may I have tried every conceivable
datatype on the right side of _PAYEE->Text=L"a"; each one of which generates
a compiler error saying something to the effect that it cannot find a
suitable conversion to:
_PAYEE->Text.
What is the datatype of the left side and how can I construct an object of a
type to assign to it?
Alternatively, is there another way (beside the = operator) to change the
text that appears in the box to what I want it to be?
BTW: What in He** does the 'L' mean on the right side?
of a text box.
In form1.h I find the initializing code _PAYEE->Text=L"a";.
I assumed that the type of "a" in this expression is const char[] (which
may be a drastic error). Be that as it may I have tried every conceivable
datatype on the right side of _PAYEE->Text=L"a"; each one of which generates
a compiler error saying something to the effect that it cannot find a
suitable conversion to:
_PAYEE->Text.
What is the datatype of the left side and how can I construct an object of a
type to assign to it?
Alternatively, is there another way (beside the = operator) to change the
text that appears in the box to what I want it to be?
BTW: What in He** does the 'L' mean on the right side?