i have this code :
private: System::Void piccar_Click(System::Object^ sender, System::EventArgs^ e) { //picture
}
private: System::Void move_Click(System::Object^ sender, System::EventArgs^ e) { //button
int x,y;
x=172;
y=67;
bool tf = true;
for (;;) {
if (tf) {
for (int i=x; i<400;i++) {
x++;
piccar->Location= System::Drawing::Point(x,y);
}
if (piccar->Location==System::Drawing::Point(400,67)) {
tf=false;
}
}
if(!tf) {
for (int r=400; r>172;r--) {
x--;
piccar->Location= System::Drawing::Point(x,y);
}
if (piccar->Location==System::Drawing::Point(172,67)) {
tf=true;
}
}
}
}
q1: how can i make the picture goes from left to right and reverse in an infinite loop without making the program stop with error?
q2: this is outside the code. if i want a button to be clicked and do something(outside the button object) how can i perform that, like if button1.clicked do something,give me example please?