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

Search:

Type: Posts; User: kanalbrummer

Search: Search took 0.01 seconds.

  1. Re: how to dynamically set sort/!sort on listbox

    Speaking in MFC Terms: Try using InsertString() for the non-sorted fill operation, use AddString() for the sorted fill operation.
    I guess InsertString is the message LB_INSERTSTRING. See...
  2. Re: Default font size for all controls in dialog

    You may also use a loop for iterating through all of the controls, rather than calling EnumChildWindows():

    In OnInitDialog() write:


    for(CWnd...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured