Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
H

Harshapaulp

@Harshapaulp
About
Posts
5
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Access Violation in Unicode Debug.
    H Harshapaulp

    It Still doesnt work.

    C / C++ / MFC help debugging

  • Access Violation in Unicode Debug.
    H Harshapaulp

    The following problem occurs in unicode debug config: A socket connection handler class CMclSocket has a derived class CHttpProtoFile. A function Send() of the base class is called in the derived class in the OnConnect handler. Untill this function is called in the derived class the member variables of the base class r acessible. Once this function is called, accessing the member variables inside this function in the base class throws '0xC0000005: Access Violation.' error while running the application. This application works fine in debug config. Harshapaul Pinto

    C / C++ / MFC help debugging

  • Web Browser Control
    H Harshapaulp

    The tab key doesnt work in Web Browser Control. The following code is supposed to resolve it. However the keydown message is not fired at all. There is another code below this one which is supposed to resolve even this problem but I dont know where to place it. Code 1: LRESULT CMyClass::OnKeydown(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { // m_spWebBrowser is a data member of type IWebBrowser2. // Using CComQIPtr in this way queries m_spWebBrowser // for the IOleInPlaceActiveObject interface which is // then stored in the pIOIPAO variable. // CComQIPtr pIOIPAO(m_spWebBrowser); HRESULT hr = S_FALSE; if (pIOIPAO) { MSG msg; msg.message = uMsg; msg.wParam = wParam; msg.lParam = lParam; hr = pIOIPAO->TranslateAccelerator(&msg); } return hr; Code 2: while (GetMessage(&msg, NULL, 0, 0)) { TranslateMessage(&msg); // Send all keyboard messages to the window of your // application. hwndApp is the window handle of // your application. // if (msg.message >= WM_KEYFIRST && msg.message <= WM_KEYLAST) ::SendMessage(hwndApp, msg.message, msg.wParam, msg.lParam); DispatchMessage(&msg); } Harshapaul

    ATL / WTL / STL help

  • Windows Media Player ocx
    H Harshapaulp

    Is there any way by which I can paint the background of the windows media player ocx 6.0. I get the paint and the erase background events but they dont seem to be working? any help would be grateful!!!! harshapaul

    C / C++ / MFC help question

  • How do I move a Static control?
    H Harshapaulp

    I want to move a static control when the left mouse button is down(over the static control) and I move the mouse in some direction using MFC? the Static control should move as many pixels as much as the mouse has moved. Harshapaul

    C / C++ / MFC question c++
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups