A family of Microsoft relational database management systems designed for ease of use.
I keep trying so many things. I must have ten different versions of the file now and none work. I was supposed to be done yesterday with this project and to start my next new project. Management is not happy with me and I am under a ton of pressure and stress to get this done ASAP.
Here is my latest attempt:
Option Compare Database
Option Explicit
Private Sub BtnReset_Click()
Me.cboProviderName = ""
Me.cboVisitType = ""
Me.cboSpecialty = ""
Me.cboInsurance = ""
Me.txtSubSpecialty = ""
End Sub
Private Sub BtnSearch_Click()
End Sub
Private Sub cboProviderName_AfterUpdate()
' set Visit Type and Insurance combo boxes to Null
' and requery controls to show Visit Type in selected Provider
Me.cboVisitType = Null
Me.cboVisitType.Requery
Me.cboInsurance = Null
Me.cboInsurance.Requery
' requery form to show Provider choice
Me.Requery
End Sub
Private Sub cboVisitType_AfterUpdate()
' set Insurance combo box to Null
' and requery control to show Insurance in Visit Type
Me.cboInsurance = Null
Me.cboInsurance.Requery
' requery form to show Visit in selected Visit Type
Me.Requery
End Sub
Private Sub cboInsurance_AfterUpdate()
' requery form to show Insurance name in selected Insurance
Me.Requery
End Sub