Flash *.exe onto start-up form.

G

Guest

Hello,

I'm just experimenting with my datbase and would like to
put a Flash file for my intro into the database. I have a
file that is an executable. does anyone know how to put
flash in Access.

Cheers
 
A

Alex Elbert

You may experiment with Shell(pathname[,windowstyle]) function. It can launch exe directly from your application.
 
A

Arvin Meyer

I'm just experimenting with my datbase and would like to
put a Flash file for my intro into the database. I have a
file that is an executable. does anyone know how to put
flash in Access.

There isn't a direct way that I know of, but Flash can be shown in an IE
window. You can put an IE ActiveX control on an Access form and build an
html page to display the flash. Put the Flash file in the same folder as the
html page and use the following code to navigate the ActiveX control to the
page:

Private Sub Form_Load()
Me.ActiveXCtl0.Navigate "C:\Path to html page"
End Sub

That's it. When the form loads the Flash movie will play.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top