inighthawki
Newcomer
- Joined
- Nov 29, 2005
- Messages
- 14
i am having some trouble transitioning a few things with C++ from vb, in vb, i could easily grab the text value from a button's sender property by declaring a variable as a control and grabbing it from there
Dim c as Control = sender
Dim s as string = c.text
walla, however, obviously not so easy in C++, it gives me a cannot covert object -> control...anyone know exactly how to go about doing this?
Dim c as Control = sender
Dim s as string = c.text
walla, however, obviously not so easy in C++, it gives me a cannot covert object -> control...anyone know exactly how to go about doing this?