Public Shared Sub LockModules( _ByVal type As Leadtools.Multimedia.Common.LockType, _ByVal appId As String _)
public:static void LockModules(Leadtools.Multimedia.Common.LockType type,String^ appId)
type
One of the LockType enumeration values that specify the level at which the locking operation will be performed. It should be the same value passed to UnlockModule.
appId
If type is set to LockType.Application or LockType.Computer, appId should be the application ID; a unique ID of the calling application. The caller is responsible for uniqueness of this ID. It is recommended to use the full path of the application.
If type is set to LockType.ApplicationPath, appId should be the application full path of the application (the long version, not the short 8.3 version of the path).
This parameter cannot be NULL (empty).
You must call LockModules:
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public void MultimediaSupportExample(){// pszKey is a string containing the serial number. It is defined like this:// string pszKey = "MySerial";string pszAppId = "My Test Application";try{// unlock the multimedia featureLeadtools.Multimedia.Common.MultimediaSupport.UnlockModule(pszKey,Leadtools.Multimedia.Common.LockType.Application,pszAppId);}catch{return;}// [use the multimedia feature here]// lock the multimedia feature before exiting the apptry{Leadtools.Multimedia.Common.MultimediaSupport.LockModules(Leadtools.Multimedia.Common.LockType.Application,pszAppId);}catch{return;}_result = true;}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic Sub MultimediaSupportExample()' pszKey is a string containing the serial number. It is defined like this:' Private pszKey As String = "MyString"Dim pszAppId As String = "My Test Application"Try' unlock the multimedia featureLeadtools.Multimedia.Common.MultimediaSupport.UnlockModule(pszKey,Leadtools.Multimedia.Common.LockType.Application,pszAppId)CatchExit SubEnd Try' [use the multimedia feature here]' lock the multimedia feature before exiting the appTryLeadtools.Multimedia.Common.MultimediaSupport.LockModules(Leadtools.Multimedia.Common.LockType.Application, pszAppId)_result = TrueCatch e1 As Exception_result = FalseEnd TryEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
