I have this small database when a SubSector (From cboSubsector)doesn't have a process(cboProcess) a new form is open and the Sector with the corresponding SubSector is displayed on the Form and the user must enter a new process and go back to continue the data entry
My problem is that the...
I think i have the correct reference but the cbo isn't working....can you see my sample database and tell me what do you think
thanks again for replying
I opened my database in access 2003 and one of my combobox isn't working
In access 2007 although it was .mbd it was working although it is not exactly the same database
Why my cboProcess isn't showing any data although it is synchronized with SubSector? i tried all day without any success! any...
Can you provide me an example with the select Statement ?
i think i understood what you said but bare in mind that i am completely noob with this subject
Thanks
Private Sub Quit_Click()
Dim intResponse As Integer
intResponse = Msgbox("Are you sure you want to quit?",vbYesNoCancel)
Select Case intResponse
Case vbYes
'Docmd.Quit
Case vbNo
'Exit anyway
Case vbCancel
'Cancel
End Select
End Sub
have three questions with choices Yes and no (or two options)
See my diagram-picture of how is planned
1. The first Question has two choices
1.1 Yes and no
1.2 If Yes is selected a Second question is spawned
1.3 if No is selected the same question is opened (Second question)
2. The...
try to avoid boolean values.Create a Frame insert a yes and no field bound to your field
then If Frame.Value = 1 Then
me.indoor.visible=true
Else
Me.indoor.Visible = False
me.outdoor.visible= true
End If
Something like this also make your lbls or text boxes are not visible