I have a message box pop up when the proccess is done running telling the user where the report is located( on the network). I would like to add the ablity to open that folder if the user clicks on that link
any ideas
Printable View
I have a message box pop up when the proccess is done running telling the user where the report is located( on the network). I would like to add the ablity to open that folder if the user clicks on that link
any ideas
MessageBoxes do what they do. If you want more then you can't use a MessageBox. You'll have to create your own form, which is all a MessageBox is after all. Alternatively you could just use a MessageBox to specify the path, ask if the user wants to open it and provide Yes and No buttons.
Form sounds easier at this point
thanks