I think we may have found something. This is the code I use to create the core object. I copied it from the example program (LoginAndTrade) supplied with the API download and then modifed it for
VB.NET.
Private core as Object
.
.
.
Private Function CreateCore() As Boolean
Try
core = CreateObject("Order2Go.core")
CreateCore = True
Catch ex As Exception
Throw ex
End Try
End Function
I also tried your C# test console program in Visual Studio and successfully executed a trade in my real account while I watched it from TS. Now I will adjust my program to look like yours and I think we will have this one solved. Thanks so much for your help !!!!!!! Now all we have to do is get the API to work with Micro Accounts.
DrMark