I have this code on the On Click Event, which does work but I need it to do some other things
Private Sub LabelDetailSearch_Click()
If Me!SubFrmEEC2CFL.SourceObject = "SubFrmEEC2CFL" Then
CFLValidationSequence
Else
....
End If
Exit Sub
If the "SubFrmEEC2CFL" is true then I need the OnClick Event to stop, how do I do this?
also
If after runing the CFLValidationSequence (basically checks to make sure that various rules regarding the data on the form is all correct)if it finds that that everything is okay then the on click event sould continue
How do I do this?
Thanks in advanace
Private Sub LabelDetailSearch_Click()
If Me!SubFrmEEC2CFL.SourceObject = "SubFrmEEC2CFL" Then
CFLValidationSequence
Else
....
End If
Exit Sub
If the "SubFrmEEC2CFL" is true then I need the OnClick Event to stop, how do I do this?
also
If after runing the CFLValidationSequence (basically checks to make sure that various rules regarding the data on the form is all correct)if it finds that that everything is okay then the on click event sould continue
How do I do this?
Thanks in advanace