LEADTOOLS Multimedia (Leadtools.Multimedia assembly)

MultimediaSupport Class

Show in webframe
Example 



Members 
Unlocks the Multimedia features, filters, codecs and objects.
Object Model
Syntax
'Declaration
 
Public MustInherit NotInheritable Class MultimediaSupport 
'Usage
 
Dim instance As MultimediaSupport
public static class MultimediaSupport 
public ref class MultimediaSupport abstract sealed 
Remarks
This is a static class, so it does not need to be created.

This class is internally calling the DSKERNEL2.DLL ILMDSKernel2 interface. So you can either call the methods in this class or use the ILMDSKernel2 interface directly.

A typical use is to call UnlockModule when the application starts and LockModules at before the application exits.

Example
Copy Code  
Imports Leadtools
Imports Leadtools.Multimedia
Imports LeadtoolsMultimediaExamples.Fixtures

Public _result As Boolean = False
Public 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 feature
           Leadtools.Multimedia.Common.MultimediaSupport.UnlockModule(pszKey, _
                                                                      Leadtools.Multimedia.Common.LockType.Application, _
                                                                      pszAppId)
   Catch
      Exit Sub
   End Try

   ' [use the multimedia feature here]

   ' lock the multimedia feature before exiting the app
   Try
      Leadtools.Multimedia.Common.MultimediaSupport.LockModules(Leadtools.Multimedia.Common.LockType.Application, pszAppId)
      _result = True
   Catch e1 As Exception
      _result = False
   End Try
End Sub
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 feature
      Leadtools.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 app
   try
   {
      Leadtools.Multimedia.Common.MultimediaSupport.LockModules(Leadtools.Multimedia.Common.LockType.Application, 
                                                                pszAppId);
   }
   catch
   {
      return;
   }
   _result = true;
}
Requirements

Target Platforms

See Also

Reference

MultimediaSupport Members
Leadtools.Multimedia.Common Namespace

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.

Leadtools.Multimedia requires a Multimedia or Multimedia Suite license and unlock key. For more information, refer to: LEADTOOLS Toolkit Features