Quicktime automation

Xancholy

Well-known member
Joined
Aug 29, 2006
Messages
143
Programming Experience
Beginner
Need some help from the gurus on these forums.

I am trying to create a simple vb.net media player using quicktime.

After installing quicktime, I have added a quicktime qtocontrol.dll to my vb.net toolbox, dragged it onto my form.

I've included in my code
VB.NET:
Imports QTOControlLib
Imports QTOLibrary

I then get it to open a movie in the form load event

VB.NET:
AxQTControl1.URL = "c:\videos\movie.mpg"
AxQTControl1.AutoPlay = True

Clicking/Double clicking on the quicktime control stops and starts the movie. This is undesirable as I need to control the movie from my own player buttons.

My question is : How can I disable click/doubleclick on the quicktime control. I would like movie to be controlled exclusively from my own buttons.

Thanks for any help.
 
Last edited:
Back
Top