|
[Visual Basic]
Dim myobj As New Gestalt
Response.Write("QT Version " + myobj.QuickTime)
[C#]
Gestalt myobj = new Gestalt();
Response.Write("QT Version " + myobj.QuickTime);
The above will produce the following output - depending on your
installation of QuickTime:
QT Version 7.0.2
|