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?

link|improve this question
i found the answer for q1 . i just have to use the timer from the toolbox. – mak Sep 7 '11 at 12:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.