Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

button next for picturebox c#

  int count = +1;
        private void BtnNext_Click(object sender, EventArgs e)
        {
           if(count<7)
           {
               count++;
           }
            pictureBox1.Image=imageList1.Images[count];
           
        }
//with out using openfiledialog
 
PREVIOUS NEXT
Tagged: #button #picturebox
ADD COMMENT
Topic
Name
5+5 =