Felix18807
Programmer
I need to allow a user to run a series of action queries based on an order he/she chooses on a form. At the moment I have a series of combo boxes where the user can type the order (1,2,3,4,5 etc).
etc
Is this possible?
Code:
Dim vControl As Control
For Each vControl In Me.Controls
If vControl = 1 Then
'Run the query based on the control name.
End If
Next
For Each vControl In Me.Controls
If vControl = 2 Then
'Run the query based on the control name.
End If
Next
etc
Is this possible?