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

  1. ManojPadhi

    Instantiate a simple ActiveX object

    Thru Visual studio menu add an activex control by Add - components and controls - 3rd party (..I don't remember exactly) say Microsoft communications comtrol 6.0) to the program Drag and Drop the control on the FormView Now With ClassWizard define c control CMSComm m_commCtrl; Now, inside...
  2. ManojPadhi

    How do i retrieve MsAccess Data into a COMBOBOX

    You have to create a Recordset class: I am giveing u some other example class CWdasDataSet : public CRecordset { public: long GetLastBagCount(int m_packerID,int m_spoutID); long CreateNewRecordID(); CWdasDataSet(CDatabase* pDatabase = NULL); DECLARE_DYNAMIC(CWdasDataSet) // Field/Param...
  3. ManojPadhi

    Best Visual C++ Book?

    Beginning Visual C++ by Ivor Horton Wrox Press Ltd. The best of all books
  4. ManojPadhi

    Launching notepad from VC++

    #include <windows.h> #include <shellapi.h> CReportView::OnReports() // Report Button Pressed { ::ShellExecute( HWND_DESKTOP, &quot;open&quot;, &quot;C:\\windows\\notepad.exe&quot;, NULL, NULL, SW_SHOWNORMAL ) } can u Pls tell me Why this is not working FROM MFC ??
  5. ManojPadhi

    debug-version works, release-version does not - why?

    This problem already happened with me.In MSDN Documentation there is a special reference to it as in release build all the &quot;ASSERT&quot; statements will be skipped automatically. Also some memory locking bits are present in the DEBUG version, which will not comes in to picture in release...
  6. ManojPadhi

    Data Report Design using MFC ??

    Can Any one tell me how to use design reports from an MS Access Tables using MFC in Visual C++ 6.0 In the MENU of Visual C++ compiler, neither Crystal reports nor Microsoft Data report designer is there (unlike Visual Basic 6.0 where Microsoft Data report designer is present in the Menu). In...

Part and Inventory Search

Back
Top