The 'Web Browser Control' is an activex Control that provides nearly all of the functionality of Microsoft's Internet Explorer web browser.<br><br>By dropping the activex control on your form you are, in effect, embedding a Web Browser on the form. You'll have to look up the documentation for the control to get the complete programming reference but...<br><br>sub SplashScreenOnStartup()<br> <br> ActiveXBrowser.Visible = True <br> ActiveXBrowser.MenuBar = False<br> ActiveXBrowser.AddressBar = False<br> ActiveXBrowser.StatusBar = False<br> ActiveXBrowser.ToolBar = False<br> ' ActiveXBrowser.TheatreMode = True ' Run Full Screen !<br><br> ' Navigate to the document<br> ActiveXBrowser.Navigate app.path &"\spash.htm"<br><br>End Sub<br><br>There are some Events available that you can use to trigger unloading of the form, perhaps, instead of using a timer.<br><br>NOTE: The 'Flash' player plug-in will have to be present on the users machine. You can, if you have internet access on the network, provide for automatic downloading of the player component.<br> <p>Amiel<br><a href=mailto:amielzz@netscape.net>amielzz@netscape.net</a><br><a href= > </a><br>