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. dizzyh

    ADO Question

    Hi all I have a program that accesses a access db. I have gotten the program to insert records into the db, but I cant get the records to display in the dialog? Are record sets limited to the amount of fields they can read from the db, or is there perhaps something in my code that is causing...
  2. dizzyh

    NEWBIE, Please help with using variables

    Would it be like so: class CBSSApp : public CWinApp { public: CRecordset* m_pRS; CDatabase* m_pDB; CBSSApp(); Forgive me if I sound a bit dumb! Like I said, Im not to clued up on VC++.
  3. dizzyh

    NEWBIE, Please help with using variables

    Would the main app object be in the CBSSApp::InitInstance ? Currently this is how I am connecting to the db: void CBSSDlg::OnLogonBtn() { // TODO: Add your control notification handler code here CDatabase* m_pDB = new CDatabase(); CRecordset* m_pRS = new CRecordset(m_pDB); CString...
  4. dizzyh

    NEWBIE, Please help with using variables

    Hi all I am a reasonable newbie to VC++ 6.0. I am busy with a program that accesses a db, how do I access the db in different dialogs eg: User login Dialog has db access, and the create account has db access. How do I access the same db for two different dialogs, but in 1 program. Any help...

Part and Inventory Search

Back
Top