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

Search:

Type: Posts; User: rzdybel

Search: Search took 0.04 seconds.

  1. Re: Need Listbox to not be cropped when displayed

    Thank you very much for the suggestions. I originally used a ComboBox but I couldn't dynamically set the text in the EditBox part of the control. I have a previous post about that. When the user...
  2. Re: Need Listbox to not be cropped when displayed

    Yes, the SetWindowsPos function didn't help the problem.

    But from debugging I see that after I display the ListBox, the other controls are getting WM_PAINT messages and so they are re=painting...
  3. Need Listbox to not be cropped when displayed

    Hi,
    I have a GUI with several controls. One of them is a ListBox that is displayed occasionally. When it is displayed, it is cropped by it's siblings windows, which is an EditBox and a window that...
  4. Replies
    11
    Views
    8,368

    Re: WS_TABSTOP not working with Combobox

    Dear PA,

    I have a simple Win32 app. I have a window with 3 controls that I want to be able to tab to with the Tab key. Very simple. I do not want to handle the Tab myself if Windows can do it for...
  5. Replies
    11
    Views
    19,882

    Re: Can't set text in Edit Box of ComboBox

    Dear PA,

    Yes, that is exactly what I want to do. My Edit/ComboBox is being used for an e-mail client for the "To" field in which the user can concatenate address with a comma or semi-colon used as...
  6. Replies
    11
    Views
    8,368

    Re: WS_TABSTOP not working with Combobox

    Dear PA,
    Thank you again for all your help.

    I'm not sure what kind of project this is. I inherited it. I think it's just a regular Windows app. I'm very new to Windows programming and I hope...
  7. Replies
    11
    Views
    19,882

    Re: Can't set text in Edit Box of ComboBox

    Dear PA,

    Thank you very much for the suggestion. It does indeed work. However, my ComboBox list is then compromised. It replaces the item selected with the current recipient list. I'm not sure...
  8. Replies
    11
    Views
    8,368

    Re: WS_TABSTOP not working with Combobox

    Dear PA,

    Thank you for responding. I don't care if I have to manage the TAB key manually or let it work as normal. But neither are working. In the onReceive method I get the WM_GETDLGCODE and...
  9. Replies
    11
    Views
    19,882

    Re: Can't set text in Edit Box of ComboBox

    Thank you very much PA and VictorN for responding. I apologize that I didn't use Code tags. I didn't know what they were but now I do.

    Using the PostMessage call rather than the SendMessage call...
  10. Replies
    11
    Views
    19,882

    Can't set text in Edit Box of ComboBox

    Hi,

    I have a Combo Box and when the user selects an item from the dropdown, I want to edit it before it shows up in the Edit Box. So I capture the CBN_SELCHANGE message and I read the user's...
  11. Replies
    11
    Views
    8,368

    Re: WS_TABSTOP not working with Combobox

    Thank you very much both ProgramArtist and Borko1980 for responding. I had to add the code Borko1980 wrote to my main loop for me to start receiving WM_GETDLGCODE messages in my "onReceiveMessage"...
  12. Replies
    11
    Views
    8,368

    WS_TABSTOP not working with Combobox

    I am writing an app in c++ using Windows APIs. I created a COMBOBOX edit control and another regular edit control. The COMBOBOX has the WS_TABSTOP style set but when I try to tab from it, I get a...
Results 1 to 12 of 12





Click Here to Expand Forum to Full Width

Featured