Or better, pay me, I'll do your application and we'll be both happy. You'll have a job and your own company, I'll earn some money Romeo JUNCU
R
rjuncu
@rjuncu
Posts
-
I need your advise... -
Mouse coordinates are too bigAs far as I know, GetCursorPos() works very well, this gets your position in screen coordinates, you can use ScreenToClient() after that. Romeo JUNCU
-
CHtmlEditCtrl Control Creation FailedI don't know about your CHtmlEditCtrl (???) but I've tried this with CHtmlView and it works very nice. CHtmlView (like all CView's has the constructor protected) //in your OnInitDialog CHtmlView *pView ; CRuntimeClass *pRtClass = RUNTIME_CLASS(CHtmlView); pView = (CHtmlView *) pRtClass->CreateObject(); pView->Create(NULL, NULL, WS_VISIBLE | WS_CHILD, rct, this, IDC_STATIC_CTRL); pView->Navigate2(_T("www.microsoft.com")); Romeo JUNCU
-
how set Cursor spot Position?Usually in resource editor, you have a button "Set Hotspot". I see that you have a custom cursor, so I don't think you need to do this at runtime Romeo JUNCU