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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. barbacot

    Database connection through DAO

    Hi everybody, I want to establish a connection to an .mdb database through Microsoft Jet engine, using DAO. I have a dialog based application and in the OnInitDialog() function I inserted the line CDaoDatabase* pdb = new CDaoDatabase(); But the compiler doesn't seem to know what CDaoDatabase...
  2. barbacot

    How can I define and insert a control at runtime?

    I wrote the following code, but the ComboBox doesn't display. Is the same thing for any other control. CComboBox c; c.Create(WS_CHILD | WS_VISIBLE, CRect(10, 10, 50, 50), this, 1047); c.ShowWindow(SW_SHOW); // this should be the default, anyway The Create() function returns TRUE, I checked...
  3. barbacot

    Placing controls in a tab

    In a dialog box, I have a tab control with 2 tabs. How can I place another control, say a combobox, in one of those tabs? (so it will be visible just into that tab, not into the other as well.) Thanks!
  4. barbacot

    Removing the standard menu

    How can I remove the menu that comes with a standard MFC project? I mean the one that contains File, Edit and Help items.

Part and Inventory Search

Back
Top