R
R.Kaiser
In a VS2005 Windows Forms Application I have an ordinary class like
class C{
int x;
public:
C(int x_):x(x_) { }
void display()
{
// Here I want to access a TextBox Form member
// Form???->textBox1->Text=(x).ToString();
}
};
In one of its member function I want to do some output to a TextBox on a
Form, like in the display function above.
Is there any way to do this?
Thanks
Richard
class C{
int x;
public:
C(int x_):x(x_) { }
void display()
{
// Here I want to access a TextBox Form member
// Form???->textBox1->Text=(x).ToString();
}
};
In one of its member function I want to do some output to a TextBox on a
Form, like in the display function above.
Is there any way to do this?
Thanks
Richard