Sep 3, 2005 #1 AFKAFB Programmer Joined Aug 22, 2005 Messages 26 Location US All I've a number of combo boxes with YES/NO options on a form. However, its possible to type in different values which i want to prevent. Is this prevented through the data validation to limit the user to yes/no. regards chris
All I've a number of combo boxes with YES/NO options on a form. However, its possible to type in different values which i want to prevent. Is this prevented through the data validation to limit the user to yes/no. regards chris
Sep 3, 2005 1 #2 TheAceMan1 Programmer Joined Sep 23, 2003 Messages 11,174 Location US How are ya AFKAFB . . . . . In the [blue]NotInList[/blue] event of each combo: Code: [blue] MsgBox "You Must Make a Selection From The DropDown List!" Response = acDataErrContinue[/blue] See Ya! . . . . . . Upvote 0 Downvote
How are ya AFKAFB . . . . . In the [blue]NotInList[/blue] event of each combo: Code: [blue] MsgBox "You Must Make a Selection From The DropDown List!" Response = acDataErrContinue[/blue] See Ya! . . . . . .