Is there a way of shortening this code
Private Sub Command1_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command2_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command3_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command4_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command5_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
to something that uses a do loop where I = I + 1 and then the # in Command#_Click could be dynamically replaced?
Private Sub Command1_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command2_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command3_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command4_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
Private Sub Command5_Click()
Does something in here doesnt really matter dont have the code as its at work
End Sub
to something that uses a do loop where I = I + 1 and then the # in Command#_Click could be dynamically replaced?