Len Boorman
Back in gainfull employme
- Local time
- Today, 18:42
- Joined
- Mar 23, 2000
- Messages
- 1,927
The On Click Event Procedure for a combo box on a form is as below
cbo_NHA = cbo_FFC.Column(1)
cbo_NHA_Effect = cbo_FFC.Column(2)
cbo_NHA.Locked = True
cbo_NHA_Effect.Locked = True
Basically this works fine but
The Limit to list is set to No since it is possible that a new value for Column(0) will be required. Column(0) is the bound column.
So what I actually want to do is
If User selects from list then carry out actions as above
Else Just accept the User new value input to the combo box and do nothing else.
Hope someone out there can help.
Len B
cbo_NHA = cbo_FFC.Column(1)
cbo_NHA_Effect = cbo_FFC.Column(2)
cbo_NHA.Locked = True
cbo_NHA_Effect.Locked = True
Basically this works fine but
The Limit to list is set to No since it is possible that a new value for Column(0) will be required. Column(0) is the bound column.
So what I actually want to do is
If User selects from list then carry out actions as above
Else Just accept the User new value input to the combo box and do nothing else.
Hope someone out there can help.
Len B