I couldnt log in, got the error:
The ActiveX Component cant create the object
and I solved the problem like this:
You have to edit one thing in the source code (OrderEntry.frm).
Replace this:
Code:
Private Function InitCore() As Boolean
On Error Resume Next
InitCore = False
' Create main object
Me.lblStatus.Caption = "Initiating CORE..."
Set oCor = CreateObject("FXCM.CORE")
If Err.Number Then
MsgBox Err.Description
Me.lblStatus.Caption = "CORE not initiated"
Exit Function
End If
Me.lblStatus.Caption = "CORE Initiated"
Me.cmbConnection.Text = "Demo"
' Rates = False
To this:
Code:
Private Function InitCore() As Boolean
On Error Resume Next
InitCore = False
' Create main object
Me.lblStatus.Caption = "Initiating CORE..."
Set oCor = CreateObject("Order2Go.CORE")
If Err.Number Then
MsgBox Err.Description
Me.lblStatus.Caption = "CORE not initiated"
Exit Function
End If
Me.lblStatus.Caption = "CORE Initiated"
Me.cmbConnection.Text = "Demo"
' Rates = False
Save and Run

It will run with the latest Order2Go update as January/26/2008
Regards.