Hello people.
I am trying to do one think, and until now no sucess.
I have a form and one this form i have 25 entry for values in textbox, this texbox are normally at "0".
In front on each textbox i have one button that i want make it not ussefull , just it the value be changes for a value bigger then "0" this button became possible to click to open another form.
But i dont know way try alot of different approches and nothing.
textbox from where we goes see its there is any value (txtPNP01Min)
button name:txtPNP01det
I think should be something similary to this but is missing the details from some one that are start.
Private Sub txtPNP01det_Click()
Application.ScreenUpdating = False
If txtPNP01Min.Value >= 0 Then
txtPNP01det.Value = False
Else
txtPNP01det.Value = True
End If
frm05.Show
Application.ScreenUpdating = True
End Sub
Bookmarks