Environment : Win7 64bit / Access 2007 / Dbpoweramp R14.3
code :
================================================== ============================
Dim dMC
Set dMC = CreateObject("dMCScripting.Converter")
============== previous statement generates " automation error 800700C1" =========================
strt = "C:\mp3\A Certain Sadness.mp3"
' Read All IDTags
Dim i
For i = 0 To 10000
Dim Element As String, Value As String
Element = ""
Value = ""
Call dMC.ReadIDTag(StrT0, i, Element, Value)
If Element = "" Then Exit For
MessageBox.Show (Element + ": " + Value)
Next
================================================== ===========
What can I do to avoid this error code
code :
================================================== ============================
Dim dMC
Set dMC = CreateObject("dMCScripting.Converter")
============== previous statement generates " automation error 800700C1" =========================
strt = "C:\mp3\A Certain Sadness.mp3"
' Read All IDTags
Dim i
For i = 0 To 10000
Dim Element As String, Value As String
Element = ""
Value = ""
Call dMC.ReadIDTag(StrT0, i, Element, Value)
If Element = "" Then Exit For
MessageBox.Show (Element + ": " + Value)
Next
================================================== ===========
What can I do to avoid this error code
Comment