Hello again.
I think I found my core problem to an earlier post...
(
I have Main Form A which calls vbModal Form B.
In the event Form B cannot do its job, the error handling prompts the user for additional information on vbModal Form C (Retry, Continue, Abort), and clears the Error object.
When a user clicks on a decision on Form C, I need Form C to go away, partially because on "Retry," it could come back again.
I have attempted
from Form C, and also from Form B.
The introduction of Form C leaves the program in a suspended state upon assumed completion. This code..
reports that Form C is still out there and not visible. I click the Stop button to complete out the program.
Futhermore, clicking Retry on Form C (with no remedy pre-completed) causes the code to stop debugging at the line that, two seconds ago, bubbled-up an error and presented Form C.
Have other programmers worked with vbModal inside vbModal?
I think I found my core problem to an earlier post...
(
I have Main Form A which calls vbModal Form B.
In the event Form B cannot do its job, the error handling prompts the user for additional information on vbModal Form C (Retry, Continue, Abort), and clears the Error object.
When a user clicks on a decision on Form C, I need Form C to go away, partially because on "Retry," it could come back again.
I have attempted
Code:
FormC.Hide: Set FormC = Nothing
The introduction of Form C leaves the program in a suspended state upon assumed completion. This code..
Code:
Private Sub Form_Unload(Cancel As Integer)
Dim myForm As Form
For Each myForm In Forms
Debug.Print myform.Name & vbTab & myForm.Visible
Next
End Sub
reports that Form C is still out there and not visible. I click the Stop button to complete out the program.
Futhermore, clicking Retry on Form C (with no remedy pre-completed) causes the code to stop debugging at the line that, two seconds ago, bubbled-up an error and presented Form C.
Have other programmers worked with vbModal inside vbModal?