API Support Forum
User Profile

Viewing User Profile for: AKlobucher7565


About

Mar 03, 2021 11:43 AM

May 03, 2021 02:23 PM

Jun 27, 2021 09:39 AM



Post Statistics
AKlobucher7565 has contributed to 6 posts out of 5573 total posts (0.11%) in 1120 days (0.00 posts per day).

20 most recent posts:

API Support » Excel "Class not registered" May 03, 2021 @ 02:23 PM (Total replies: 6)

Sorry for the multiple replies. First timer here

API Support » Excel "Class not registered" May 03, 2021 @ 02:21 PM (Total replies: 6)

I resolved the issue by re-installing the latest version of GF COM API 32bit.

API Support » Excel "Class not registered" May 03, 2021 @ 02:20 PM (Total replies: 6)

I resolved the issue by re-installing the latest version of GF COM API 32bit.

API Support » Excel "Class not registered" May 03, 2021 @ 02:20 PM (Total replies: 6)

I resolved the issue by re-installing the latest version of GF COM API 32bit.

API Support » Excel "Class not registered" May 03, 2021 @ 02:20 PM (Total replies: 6)

I resolved the issue by re-installing the latest version of GF COM API 32bit.

API Support » Excel "Class not registered" May 02, 2021 @ 10:30 PM (Total replies: 6)

Hello, I'm getting "Class not registered" popup message when logging into the Sample COM Book. I confirmed that I can access the api server just fine. My account is active. Any ideas what this means? I traced the error message to this section of code. Thanks



Public Sub Connect(Name As String, Pass As String, Reconnect As Boolean)
On Error GoTo Err

If client Is Nothing Then
Set client = New GFComClient
client.Threading.CreateRunnerFor(client).Start
Set connection = client.connection.Aggregate
Server = "api.gainfutures.com"
End If

Dim Builder As ConnectionContextBuilder
Set Builder = New ConnectionContextBuilder
Builder.WithUserName(Name) _
.WithPassword(Pass) _
.WithUUID("9e61a8bc-0a31-4542-ad85-33ebab0e4e86") _
.WithHost(Server) _
.WithPort (9210)

connection.Connect Builder.Build
Exit Sub
Err:
MsgBox Err.Description
End Sub