Access 2010. Here is an extract of vba code
The idea is to have the code halt while form FRMLatefEEManage is open. The form needs to be usable.
When form is closed, the code can continue.
The form opens but isn't full size and doesn't behave as it normally does.
Is acDialog the only method to have the code halted while the form is open ??
Code:
If LoanTotToPay <= 2 Then
Response = MsgBox("Loan Appears to be Completed. Do you want to check for Late Fees ?", vbYesNo)
If Response = vbYes Then 'total is less then K2. Give option to check for Late Fees
stDocName = "FrmLateFeeManage"
stLinkCriteria = "[LDPK]=" & CStr(LoanRef)
DoCmd.OpenForm stDocName, acNormal, , stLinkCriteria, , acDialog
End If
'Operator choose not to check for Late Fees
End If
The idea is to have the code halt while form FRMLatefEEManage is open. The form needs to be usable.
When form is closed, the code can continue.
The form opens but isn't full size and doesn't behave as it normally does.
Is acDialog the only method to have the code halted while the form is open ??