Hello!
I want to develop a program to manage my audio library. Therefore I want to use Scripting dBpoweramp Music Converter.
My current system:
- Windows 7 Ultimate 64 bit
- Visual Visual Studio Express Version 10.0.40219.1 SP1Rel with Visual Basic 2010
- Microsoft .NET Framework Version 4.5.50938 SP1Rel
- dBpoweramp 64bit: Registered Reference Release 15
dMC-Scripting VBScripting.vbs works fine as well as test.vbs with following content:
[COLOR=*808080]Dim intTemp, strCodec, dMC
Set dMC = WScript.CreateObject("dMCScripting.Converter")
Do
strCodec = dMC.GetCompressions(intTemp)
If Len(strCodec) > 0 Then
msgbox strCodec, vbOKOnly + vbInformation, "dMCScripting.Test"
intTemp = intTemp + 1
End If
Loop Until Len(strCodec) = 0[/COLOR]
From regsvr32 "c:\program files (x86)\illustrate\dBpoweramp\dMCScripting.dll" I get a successful registered message. Nevertheless dmcscripting.dll does not appear as a COM reference in VB 2010 Express and adding it manually as reference into the project properties dows not change the result.
I really have carefully researched into the Illustrate forum. There are some threads with similar problem definitions (e.g. http://forum.dbpoweramp.com/showthre...hlight=activex), but without a fitting answer or hint for a possible solution.
Exceuting the VisualBasic program following error message occurs:
ActiveX component can't create object: 'dmcScripting.Converter'
The error message is caused by this code :
[COLOR=*0000cd]Dim dMC
dMC = CreateObject("dMCScripting.Converter")[/COLOR]
I hope I will receive answer which I can understand and use. Many thanks in advance.
I want to develop a program to manage my audio library. Therefore I want to use Scripting dBpoweramp Music Converter.
My current system:
- Windows 7 Ultimate 64 bit
- Visual Visual Studio Express Version 10.0.40219.1 SP1Rel with Visual Basic 2010
- Microsoft .NET Framework Version 4.5.50938 SP1Rel
- dBpoweramp 64bit: Registered Reference Release 15
dMC-Scripting VBScripting.vbs works fine as well as test.vbs with following content:
[COLOR=*808080]Dim intTemp, strCodec, dMC
Set dMC = WScript.CreateObject("dMCScripting.Converter")
Do
strCodec = dMC.GetCompressions(intTemp)
If Len(strCodec) > 0 Then
msgbox strCodec, vbOKOnly + vbInformation, "dMCScripting.Test"
intTemp = intTemp + 1
End If
Loop Until Len(strCodec) = 0[/COLOR]
From regsvr32 "c:\program files (x86)\illustrate\dBpoweramp\dMCScripting.dll" I get a successful registered message. Nevertheless dmcscripting.dll does not appear as a COM reference in VB 2010 Express and adding it manually as reference into the project properties dows not change the result.
I really have carefully researched into the Illustrate forum. There are some threads with similar problem definitions (e.g. http://forum.dbpoweramp.com/showthre...hlight=activex), but without a fitting answer or hint for a possible solution.
Exceuting the VisualBasic program following error message occurs:
ActiveX component can't create object: 'dmcScripting.Converter'
The error message is caused by this code :
[COLOR=*0000cd]Dim dMC
dMC = CreateObject("dMCScripting.Converter")[/COLOR]
I hope I will receive answer which I can understand and use. Many thanks in advance.
Comment