Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
U

User 451096

@User 451096
About
Posts
5
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to call exe file in vc++
    U User 451096

    yes. ... ex: shellInfo.lpFile = _T("e_airyun.exe");

    C / C++ / MFC c++ tutorial question

  • how to call exe file in vc++
    U User 451096

    HANDLE hProcess = NULL; SHELLEXECUTEINFO shellInfo; ::ZeroMemory(&shellInfo, sizeof(shellInfo)); shellInfo.cbSize = sizeof(shellInfo); shellInfo.fMask = SEE_MASK_FLAG_NO_UI | SEE_MASK_NOCLOSEPROCESS; shellInfo.lpFile = your app file; shellInfo.lpParameters = NULL; if(::ShellExecuteEx(&shellInfo)) { /* success */ hProcess = shellInfo.hProcess; if(hProcess != NULL){ ::WaitForSingleObject(hProcess, INFINITE); ::CloseHandle(hProcess); } }

    C / C++ / MFC c++ tutorial question

  • CPropertySheet
    U User 451096

    IDD_PAGE1 is only a simple Dialog without any control. Thanks

    Mobile help question

  • CPropertySheet
    U User 451096

    Page1 is: class CPage1 : public CPropertyPage { DECLARE_DYNCREATE(CPage1) // Construction public: CPage1(); ~CPage1(); // Dialog Data //{{AFX_DATA(CPage1) enum { IDD = IDD_PAGE1 }; // NOTE - ClassWizard will add data members here. // DO NOT EDIT what you see in these blocks of generated code ! //}}AFX_DATA // Overrides // ClassWizard generate virtual function overrides //{{AFX_VIRTUAL(CPage1) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(CPage1) // NOTE: the ClassWizard will add member functions here //}}AFX_MSG DECLARE_MESSAGE_MAP() }; Thanks

    Mobile help question

  • CPropertySheet
    U User 451096

    I built a simple project using evc4.0 under STANDARDSDK_420(WINCE emulator) with codes: BOOL CEx1App::InitInstance() { CPropertySheet allcontrolssheet(_T("Ex1")); CPage1 p1,p2,p3; allcontrolssheet.AddPage(&p1); allcontrolssheet.AddPage(&p2); allcontrolssheet.AddPage(&p3); allcontrolssheet.DoModal(); return FALSE; } ex1.exe - 0 error(s), 0 warning(s. But it can't run in CPropertySheet::DoModal() Anybody help me?? Thanks.

    Mobile help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups