carthorse
11 Oct 2007, 11:34
Has anyone expierenced the following?
Protected Overrides Sub DefWndProc(ByRef m As Message)
If m.Msg = WM_USER_SIMCONNECT Then
If Not BackgroundWorker1.IsBusy Then
BackgroundWorker1.RunWorkerAsync("Commnications Started")
End If
Else
MyBase.DefWndProc(m)
End If
End Sub
The above method is no longer being called...so i am unable to recieve messages from SimConnect.RecieveMessage(). I have simconnect running on another thread using the background worker. This has happened several times to me. I'm coding along and then at some point i noticed that i was no longer able to handle the OnRecvOpen event (and others). Unfortunately i don't seem to be sharp enough to figure out what is causing this to break.
thanks
Protected Overrides Sub DefWndProc(ByRef m As Message)
If m.Msg = WM_USER_SIMCONNECT Then
If Not BackgroundWorker1.IsBusy Then
BackgroundWorker1.RunWorkerAsync("Commnications Started")
End If
Else
MyBase.DefWndProc(m)
End If
End Sub
The above method is no longer being called...so i am unable to recieve messages from SimConnect.RecieveMessage(). I have simconnect running on another thread using the background worker. This has happened several times to me. I'm coding along and then at some point i noticed that i was no longer able to handle the OnRecvOpen event (and others). Unfortunately i don't seem to be sharp enough to figure out what is causing this to break.
thanks