Link to home
Start Free TrialLog in
Avatar of SteveL13
SteveL13Flag for United States of America

asked on

Message box not working all of the time

I have a strange thing happening with a message box.  Here is the code of an onclick event of a command button:

    DoCmd.SetWarnings False

    DoCmd.RunSavedImportExport "ImportEstimateWon"
    DoCmd.RunSavedImportExport "EstimateWonOutbuys"

    DoCmd.SetWarnings True

    MsgBox "Estimate imported.  Proceed to job schedule.  Be sure to check for outside purchase information."

The problem is this... if there is no "EstimateWonOutbuys" import the message box does not appear.  If both imports take place then the message box does appear.  I need it to appear in either case.  There are cases where there is no import to be done for "EstimateWonOutbuys".

--Steve


 
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

do you have error handling codes that goes with the codes above?

or, is there an
       on error resume next        line
comment this two lines, then test your codes again

' DoCmd.SetWarnings False


'  DoCmd.SetWarnings True
Avatar of SteveL13

ASKER

I commented those two lines out and the message box did not popup when only the first import existed.
what about the first question?
ASKER CERTIFIED SOLUTION
Avatar of DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial