How can I find out if MediaManager is even installed and functioning?
You can check the registration status in one of three ways: 1. Use Media_Register with the full registration string. The Media_Register function can be used to detect whether MediaManager is installed, as it always returns one of the errors or confirmations below: * “Registered MediaManager ” & the version number, * “Invalid Registration MediaManager ” & the version number, * “Expired Registration MediaManager ” & the version number, or * Blank (“”, in FMP 5 & 6) or question mark (“?”, in FM 7 & 8) if the plug-in is not installed. So, in other words, you can register MediaManager when a file is opened or reregister MediaManager at any time, by using: Set Field [Response Field; Media_Register (“COMPANY NAME|MAC REGISTRATION CODE|WINDOWS REGISTRATION CODE”)] If [IsEmpty (Response Field)] Beep Show Message [“MediaManager is not installed on this computer.”] Quit Application End If Substitute your company name and registration information in the above Set Field step. If the Response Field
Related Questions
- I installed the wrong driver version, or had errors while installing it, or the drive isn functioning or loading properly on Windows 2000. What do I do?
- I installed the wrong driver version, or had errors while installing it, or the drive isn functioning or loading properly on Windows XP. What do I do?
- How can I find out if MediaManager is even installed and functioning?