CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Y$EA

Search: Search took 0.03 seconds.

  1. Thread: use pointer

    by Y$EA
    Replies
    4
    Views
    3,830

    use pointer

    I like to know if some one can show me a way to use pointer in main to argument in function ft?. If it is not possible, I like to know.

    void f(int &v)
    {
    v = 10;
    }
    main()
    {
    //is it...
  2. Replies
    5
    Views
    6,103

    Re: calling program crash

    looking for a way to handle the "case DLL_PROCESS_DETACH:" in DLL1 so that mainProg exits gracefully. MainProg upon exit does not crash and its process stops running.
  3. Replies
    5
    Views
    6,103

    Re: calling program crash

    please see the "DLL1 DLlMain:" above:

    Have a mainProg.exe that calls DLL1 (C++ DLL, no user/worker thread created) and DLL1 calls DLL2 (MFC DLL). Have no access to DLL2 code.

    DLL_PROCESS_ATTACH...
  4. Replies
    5
    Views
    6,103

    calling program crash

    Have a mainProg.exe that calls DLL1 (C++ DLL, no user/worker thread created) and DLL1 calls DLL2 (MFC DLL). Have no access to DLL2 code.

    Without FreeLibraryAndExitThread(h,0); the mainProg.exe...
  5. Thread: open a path

    by Y$EA
    Replies
    7
    Views
    10,078

    Re: open a path

    Unfortunately not. Due to some tractability reason, not.
  6. Thread: open a path

    by Y$EA
    Replies
    7
    Views
    10,078

    Re: open a path

    Windows 7. I like to open using VBA 6.
  7. Thread: open a path

    by Y$EA
    Replies
    7
    Views
    10,078

    Re: open a path

    got a path \\remoteSrv\myfolder1\myfolder2\01/01/2000_010230AM\myfolder3
    what is the workaround to be able to open this path in visual basic 6?. It is created by mistake by others who were not...
  8. Thread: open a path

    by Y$EA
    Replies
    7
    Views
    10,078

    open a path

    I got a vba code that uses : shell(explorer.exe, path). path contains date string as mm/dd/yyyy. it does not open the path. what should done?. It does not seem to handle the date string in the path.
  9. Replies
    1
    Views
    3,691

    MFC Property Page Index

    In a MFC property sheet application, how to obtain a property page Index using its captions or something similar?. Tried some online examples and read Microsoft MFC related sites, none worked for me.
  10. Thread: on events

    by Y$EA
    Replies
    5
    Views
    3,180

    Re: on events

    thanks for the link, however, I needed more information on AfxGetApp()->PumpMessage(). I got more understanding about it by looking at some example codes and the code comments. MSDN does not seem to...
  11. Thread: on events

    by Y$EA
    Replies
    5
    Views
    3,180

    on events

    what is the difference between (i) and (ii):

    (i)
    void DoEvents()
    {
    MSG msg;
    while(::PeekMessage(&msg, NULL, NULL, NULL, PM_NOREMOVE))
    {
    if (!AfxGetApp()->PumpMessage())
    ...
Results 1 to 11 of 11





Click Here to Expand Forum to Full Width

Featured