Yes, this is possible using the following details and design -
If you are storing your Flash movie clip in the same directory as the database you can try the following:
With your start-up form in design mode, go to Insert >> ActiveX Control. From the list choose Shockwave Flash Object.
Open up the properties window for this new control and name it obj_flashmovie.
Now go to the properties of the form, and for the On Activate Event Procedure add the following code:
Private Sub Form_Activate() Me.obj_flashmovie.Movie = Application.CurrentProject.Path + "\Movie1.swf"End Sub
Change the Movie1.swf to the name of your flash file.
Good luck!!!
--- Minh Hien ----