Hi, I want my button to fire/Run the command below based on the number in my unbound textbox field (txtboxnumber)
the scenario will be... to input the number in my txtbox ex. "5" ....then when I click on the button (ComButton) it will run the code below 5 times...
Private Sub ComButton_Click()
Me.FieldName = Nz(Me.FieldName, 0) + 1
End Sub
the scenario will be... to input the number in my txtbox ex. "5" ....then when I click on the button (ComButton) it will run the code below 5 times...
Private Sub ComButton_Click()
Me.FieldName = Nz(Me.FieldName, 0) + 1
End Sub