I posted
this message in Oleg's Ready Room a few months ago. But they didn't reply, and they
just moved it to the General Discussion forum. So, I just took that for.. they don't care...
I'm sure they either have much more important things to do, or they cannot do it for some reason? Just guessing of cource.
Zorlac, have you actually tried to execute a ReleaseCapture command on IL2 to release it?
When I'm dragging a button in the Toolkit, I do this to start the dragging:
Code:
SetCapture Me.hWnd
GetCursorPos Pt
mWnd = WindowFromPoint(Pt.x, Pt.y)
If Button = 1 Then
'BEGIN DRAG:
Call ReleaseCapture
lngReturnValue = SendMessage(mWnd, WM_NCLBUTTONDOWN, HTCAPTION, 0&)
ReleaseCapture
SetCapture Me.hWnd
...
I was thinking of trying to get the handle to IL2 and play with these commands to try and release the cursor. Just been too busy to try lately...