How can I show Messagebox and allow user to work on other DB

Hi,I have a scenario when user click a button on the form, my LS will open a view from other database then display a message box. I want user to be able to work the view before click “OK” button on messagebox to continue my script. Here is my sample code:

Call ws.OpenDatabase(server, dbName, viewName, keyID)

Messagebox “Reminder: Make sure to update asset DB.”, , “IT Process”

…more coding

thanks in advance,

Subject: How can I show Messagebox and allow user to work on other DB

A messagebox is modal so you can’t.

You might be able to do something calling native windows calls to display a non modal window.

Subject: RE: How can I show Messagebox and allow user to work on other DB

Thanks Carl for the quick response, do you have any sample code for calling the native window program to display message?