Is QuickTime Present

This method looks to see if QuickTime is present in the registry. It isn’t foolproof but offers a simple test //————————————– //—– CHECK QUICKTIME IS PRESENT —– //————————————– bool QuicktimePresent = false; try { //This is the registry path we’re interested in: HKEY_LOCAL_MACHINE\Software\Apple Computer, Inc.\QuickTime RegistryKey ^rkey = Registry::LocalMachine; rkey = rkey->OpenSubKey(L”Software\\Apple Computer, Inc.”); array<String^>^names […]

Read More

Using QuickTime In An Application

Adding QuickTime to a project Menu > Project > Project Properties > Common Properties > References > Add New Reference > COM > Apple QuickTime Control 2.0 (AxInterop.QTOControlLib) In a form design view open the tool box > Right Click > Choose Items > COM Components > Select the ‘Apple QuickTime Control’ The ‘Apple QuickTime […]

Read More