I did setup a module with public variables(12) declaration like:
Option Compare Database
Public glb_Job_descr As String
Public glb_zip_code As String
Public glb_sched_day As String
.
.
.
These variables have values assigned on a forms (with text and combo boxes) like:
Private Sub JOB_DESCRI_LostFocus()
glb_Job_descr = IIf(IsNull(Me.JOB_DESCRI.Value), "", Me.JOB_DESCRI.Value)
End Sub
It was working fine for a while but now access is crashing every time I click on combobox(try to open) any of them on one form. The only message popping up during a crash is the message which is asking to send report to Microsoft.
Can someone tell me what is wrong?
Option Compare Database
Public glb_Job_descr As String
Public glb_zip_code As String
Public glb_sched_day As String
.
.
.
These variables have values assigned on a forms (with text and combo boxes) like:
Private Sub JOB_DESCRI_LostFocus()
glb_Job_descr = IIf(IsNull(Me.JOB_DESCRI.Value), "", Me.JOB_DESCRI.Value)
End Sub
It was working fine for a while but now access is crashing every time I click on combobox(try to open) any of them on one form. The only message popping up during a crash is the message which is asking to send report to Microsoft.
Can someone tell me what is wrong?