-
Is this possible?
Is it possibel to change properties of objects in VC++ like in VB?
Ex: Text1.Text= "VB6"
and in VC: Text1->Text="VC"?
Please help. I got bored assigning member variable to objects and changing variable values and then the object properties.
:D Kinjal :D
-
What are you trying to do here? When you say 'objects' do you mean the objects in a window like the controls on a form in VB? Are you using MFC?
Have you just started using C or are you pretty experienced?
-
With pure windows API it is not that easy. You have to use the SendMessage function.
But if you don't know C or C++ well, you shouldn't even think about windows programming.