Quote:
> My project requires that QuickTime 3.0 or newer be installed on the
> computer. Do you know of any way to do this.
Use Gestalt to get the value of the selector "qtim" - the higest byte of
the returned 32 bit int contains the major version number.
In RB 2, Gestalt is included, before that, you need to get a plugin that
gives you that function.
Here's something out of my head:
dim vers, majorversion as integer
vers = System.Gestalt("qtim")
majorversion = vers / (256*256*256)
if majorversion < 3 then
msgbox "QT 3 is needed. Please upgrade."
quit
end
--
Thomas Tempelmann
<mailto:tom$tempel.org>