VideoEdit Gold ActiveX Control

RMLoadProfiles Method

Description

Load the RM Profiles. If you want to save to RMVB file, you must call this method.

 

Syntax

Public Function RMLoadProfiles ( _
   ByVal strPathofRMdll as string
) As Bool

 

Parameters

strPathofRMdll
    the path of rm dll files.

 

Return Value

Return true if successful. Otherwise return false.
 

Example

[Visual Basic Syntax]
VideoEdit1.RMLoadProfiles "C:\Program Files\VideoEdit Gold ActiveX Control\rmdll"
iRmCount = VideoEdit1.RMProfilesCount
For i = 0 To iRmCount - 1
   cbormprofile.AddItem VideoEdit1.RMProfileName(i)
Next