Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by base2

  1. base2

    sscanf problem/misconception

    Could someone please just confirm or refute my understanding of this library function, thanks.
  2. base2

    sscanf problem/misconception

    I am trying to use sscanf as follows: CString word1, word2, word3; CString word_string = "three word string"; sscanf(word_string, "%s%s%s", word1, word2, word3); AfxMessageBox(word1); I would expect this to display a dialog box containing "three", is that a...
  3. base2

    Multi-column Listbox problem

    I am using a CListbox control within a CPropertyPage. I have defined the listbox with 'multi-column' and 'use tab-stops' selected in the properties dialog. I do AddString calls using a string formatted with "%s\t%s\t%s\t%s" and that works fine. However, when I run the app. and click...
  4. base2

    Modeless Dialogs in Doc/View MFC application

    Thanks for the suggestion. I do not want to completely hide the modeless dialog when the primary view receives focus, I just want the primary view to sit 'on top' of the modeless dialog when this happens. As it works now, the primary view receives focus but the dialog still has a region that...
  5. base2

    Modeless Dialogs in Doc/View MFC application

    My Doc/View, MFC application creates several modeless dialogs (Text file browsers, PropertySheets, etc.). While they are on screen, I can click the title bar of the main view window and input focus will be transferred to the main view window of the application. However, the main view does not...
  6. base2

    Modeless CPropertySheet behavior

    I have created a Doc/View MFC application that Creates and displays a Modeless PropertySheet in response to a toolbar button from within the Document object. The sheet and pages are working correctly. However, when I click on the main view's title bar, the main view gets input focus but the...
  7. base2

    Modeless CPropertySheet behavior

    I have created a Doc/View MFC application that Creates and displays a Modeless PropertySheet in response to a toolbar button from within the Document object. The sheet and pages are working correctly. However, when I click on the main view's title bar, the main view gets input focus but the...

Part and Inventory Search

Back
Top