igorm 0 Posted September 23, 2007 My question is: How to display error to user (using MsgBox) if file or path to file is not found. Tnx in advance for help. Office 2000/XP/2003/2007 Slipstreamer Share this post Link to post Share on other sites
Achilles 2 Posted September 23, 2007 (edited) If FileExists('C:\This file does not exist.txt') = False then;If the file is not found then Msgbox(0, 'Error', 'File not found') ;Show message box Else;If the file was found Msgbox(0, 'Congratulations', 'File was found');Show a different message box EndIf EDIT: Welcome to the forums!!! Edited September 23, 2007 by Piano_Man My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list] Share this post Link to post Share on other sites
BigDod 518 Posted September 23, 2007 Try Opt("RunErrorsFatal", 0) Run("notpad.exe") if @error then MsgBox(0,"", "Filename or Path wrong") Note - Notepad is spelt wrong so that you can see what happens. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother Share this post Link to post Share on other sites
igorm 0 Posted September 23, 2007 Thank you Piano Man for help. That was good idea, but what I really need is this what BigDod suggested, so BigDod thank you very much. Great forum!!! Cheers Office 2000/XP/2003/2007 Slipstreamer Share this post Link to post Share on other sites