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 SkipVought 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: *

  • Users: AGF
  • Order by date
  1. AGF

    CRecordset, MS Access, Paradox, ...nasty bug. ...please help.

    Pankajkumar may be right. Your connect string may be wrong now. After all, you're hitting a different database on a different system. Another possibility is that the customer doesn't have the right ODBC drivers set up. I assume you are also using a CDatabase object to make the connection...
  2. AGF

    does modeless dialog need a "delete"

    Typically when you do a modeless dialog, you put a Create() function in the dialog class constructor and a DestroyWindow() function in the destructor. If you then declare your dialog like this: CMyDialog *pDlg = new CMyDialog(this); Then you need to clean up later with a delete pDlg;
  3. AGF

    MFC tutorial

    Practical Visual C++ by Jon Bates and a second guy is a very good book for MFC beginners. I've recommended it to several people, and they've all liked it.
  4. AGF

    Modeless Dialog from DLL causes Assertion fails

    My suspicion is that you need to copy the header files for your .dll exported classes and function into your client application again and recompile the client. It sounds to me like you've changed something in the .dll and the client program needs to be recompiled with the new header files.

Part and Inventory Search

Back
Top