combobox answer disables rest of feilds on form from having data entered in

  • Thread starter Thread starter reservedbcreater
  • Start date Start date
R

reservedbcreater

i have a combo box on a form - its a survey...if u select YES for a in this
combobox the rest of that inparticular form becomes so that the user cannto
enter in anything into the fields that were left and must proceed to the
next page.

in after update event of community garbage disposal combo box this code
deosnt work and gives me this error: ms access cant find the macro If
CommunityGarbageDisposal = "YES" Then
| Me

If CommunityGarbageDisposal = "YES" Then
| Me.AllowEdits = False
| Else
| Me.AllowEdits = True
| End If
|
| Exit_cmdClose_Click:
| Exit Sub
| Err_cmdClose_Click:
| MsgBox Err.Description
| Resume Exit_cmdClose_Click
|
 
answered in your other post.


|i have a combo box on a form - its a survey...if u select YES for a in this
| combobox the rest of that inparticular form becomes so that the user cannto
| enter in anything into the fields that were left and must proceed to the
| next page.
|
| in after update event of community garbage disposal combo box this code
| deosnt work and gives me this error: ms access cant find the macro If
| CommunityGarbageDisposal = "YES" Then
|| Me
|
| If CommunityGarbageDisposal = "YES" Then
|| Me.AllowEdits = False
|| Else
|| Me.AllowEdits = True
|| End If
||
|| Exit_cmdClose_Click:
|| Exit Sub
|| Err_cmdClose_Click:
|| MsgBox Err.Description
|| Resume Exit_cmdClose_Click
||
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top