CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: user125

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    5,326

    Re: deselect text in combo box

    That seems to work. Thanks.
  2. Replies
    3
    Views
    5,326

    deselect text in combo box

    I have created a combo box like this :


    combo_hwnd = CreateWindowEx(WS_EX_WINDOWEDGE, "COMBOBOX" , NULL, WS_CHILD | WS_VISIBLE | WS_TABSTOP | CBS_DROPDOWN , left, top, width , height ,...
  3. Replies
    12
    Views
    7,775

    Re: edit box changes color

    Sorry, but I 've always had CallWindowProc() within myWindowProc. I have several completely functional controls handled by this procedure. Only this newest one, the edit box, have this unexpected...
  4. Replies
    12
    Views
    7,775

    Re: edit box changes color

    You 're right; It doesn't handle anything for edit box, yet. I've just set the procedure as it's window proc, and it changed color. I would like to know what I should do in WM_PAINT to restore my...
  5. Replies
    12
    Views
    7,775

    Re: edit box changes color

    myWindowProc mostly responds to mouse clicks on child controls. And it works fine.
  6. Replies
    12
    Views
    7,775

    Re: edit box changes color

    Great question. Actually, I want to write the WM_LBUTTONDOWN code for this edit box. But before I do that, I want to know why is my edit box black when I just use SetWindowLong.
  7. Replies
    12
    Views
    7,775

    Re: edit box changes color

    It is custom window proc for my main window's child windows. Newest of them is this edit box. This procedure existed before this edit box. Edit box is the last created control on my main window.
  8. Replies
    12
    Views
    7,775

    edit box changes color

    I have created edit box, and placed it onto my main window, and everything works like it should; edit box appears on specified location, with white background, and black text. But when I include...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured