H
HumanJHawkins
I have a .adp connected to SQL. The visibility of some of the fields should
be dependant on the data from other fields.
So, I want to run a function like the following every time the user changes
anything:
Function UpdateDisplay()
If vchFactType = "multiple" Then
iMultipleLimit.Visible = True
Else
iMultipleLimit.Visible = False
End If
End Function
I have tried the "Private Sub Form_SelectionChange()" function, but it
doesn't seem to trigger the function when my selection on the form actually
changes.
What is the standard way of doing this?
I also want to run the same function when the user goes from one record to
the next... I can't seem to find how to do this either.
Thanks in advance for any help.
be dependant on the data from other fields.
So, I want to run a function like the following every time the user changes
anything:
Function UpdateDisplay()
If vchFactType = "multiple" Then
iMultipleLimit.Visible = True
Else
iMultipleLimit.Visible = False
End If
End Function
I have tried the "Private Sub Form_SelectionChange()" function, but it
doesn't seem to trigger the function when my selection on the form actually
changes.
What is the standard way of doing this?
I also want to run the same function when the user goes from one record to
the next... I can't seem to find how to do this either.
Thanks in advance for any help.