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

Search:

Type: Posts; User: myron

Page 1 of 9 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    3
    Views
    910

    Re: Tooltip in TreeCtrl

    Thanks guys. You both offer very pratical solution to me.
    (Y)
  2. Replies
    3
    Views
    910

    Tooltip in TreeCtrl

    Say there is a TreeCtrl that has many nodes, and would like to display different tooltip for each node in the same control. Is that possible?

    Check the Tooltip in MSDN, it seems only one tip for...
  3. Thread: Dll linking

    by myron
    Replies
    0
    Views
    690

    Dll linking

    From MSDN:
    Visual C++
    Determining Which Linking Method to Use


    There is a sentence in the "two hazards of explicit linking to be aware of" saying:



    I think this hazard also happens in...
  4. Replies
    3
    Views
    1,289

    Re: Load different DLL with the same name

    m... from the "theory" of DLL lifetime, DLL B should be removed from the memory and then DLL A won't get any effected.

    But from the experiment, it seems not exactly like this way. No idea whether...
  5. Replies
    3
    Views
    1,289

    Re: Load different DLL with the same name

    Bump it for any possible help and say happy 2008 yr to everyone.
  6. Replies
    3
    Views
    1,289

    Load different DLL with the same name

    Well, it's very funny, but I would like to make things clear by the gurus' help here.

    We are running a test program with two different versions. One (says A) is supposed to be quicker than another...
  7. Thread: FILE vs CFile

    by myron
    Replies
    3
    Views
    1,577

    Re: FILE vs CFile

    Yes. and any way to convert an CFile object to FILE stream?
    (Or let a FILE stream pointer point to CFile object and get the correct result?)
  8. Thread: FILE vs CFile

    by myron
    Replies
    3
    Views
    1,577

    FILE vs CFile

    Anyway to do conversion between FILE and CFile object?
  9. Thread: $Super$$main()

    by myron
    Replies
    5
    Views
    747

    $Super$$main()

    Just see a function in xxx.c file as:



    void $Sub$$main(void)
    {
    // blahblah.. // does some extra setup work

    $Super$$main(); //calls the original function
    }
  10. Replies
    1
    Views
    3,987

    Re: CFileDialog and GetOpenFileName() in WinCE

    A similiar issue here (at 2003 yr?)
    ...
  11. Replies
    1
    Views
    3,987

    CFileDialog and GetOpenFileName() in WinCE

    OK, from MSDN,

    OPENFILENAME structure:

    lCustData Not supported.
    lpfnHook Not supported.
    lpTemplateName Not supported.


    So CFileDialog won't get any notification, which means...
  12. Replies
    0
    Views
    852

    Microsoft Bug of CFileDialog

    Well, it's a very basic-123 coding style, however, even in MS, it happens.
    The code review seems not doing well.

    Environment: VC6

    File:
    ...\MFC\SRC\DLGFILE.CPP

    Code: Line 113
  13. Thread: GDI+ in evc 4

    by myron
    Replies
    1
    Views
    1,179

    Re: GDI+ in evc 4

    It should be like the same way as when you write GDI+ app in Desktop Win32.
  14. Re: SDK not compatible to Standard SDK for Windows CE.NET

    Hopefully the answer won't come too late.

    You should try to use: Win32 (WCE Emulator) Device under your STANDARDSDK.
    Don't use Win32 (WCE ArmV4) or Win32 (WCE ArmV4I) or you cannot make your app...
  15. Re: [Quiz] What will happen if SendMessage to self?

    Well, there is a trcik here.
    Sendmessage is synchronous function, so "theoretically" this will cause system hang out... since the sendmessage won't return back... (in single thread condition of...
  16. Re: [Quiz] What will happen if SendMessage to self?

    m. but actually (usiang VC6)

    it just runs!
    (After a certain number of stack-record repetition...)
    A very interesting things...

    Says, what if we repalce WM_MYTEST with WM_CREATE?

    The...
  17. [Quiz] What will happen if SendMessage to self?

    This is an interesting thing (what i never thought of yet...) and I wonder how you people think it will happen.

    We normally won't sendmessage to ourself, but what if we do that?

    Here are the...
  18. Replies
    2
    Views
    2,587

    Re: OK and CANCEL MFC CDialog's button

    Another approach is you can paint the button by your own.
  19. Re: difference between debug-build and release build

    Actually, it's just a main difference with defition: _DEBUG and DEBUG.

    Some code won't show up in the relase mode, if there are under
    #ifdef _DEBUG
    //blahblah code
    #endf

    Another difference...
  20. Replies
    3
    Views
    1,204

    Re: How do Windows know the clip region?

    It's said that in Windows CE 6.0, there is no hidden code of Windows kernel?

    If this is true, then the way Windows handle clipping region can be clarify. Any guru happens to know how?
  21. Thread: CVS Web

    by myron
    Replies
    1
    Views
    688

    Re: CVS Web

    Sorry to bump this, but is there any solution for getting code from CVS web?
  22. Thread: CVS Web

    by myron
    Replies
    1
    Views
    688

    CVS Web

    How could I get the source code from the CVS web?
    like at: http://cvs.winehq.org/cvsweb/ ??

    I try to use TortoiseCVS to connect to :server:cvs.winehq.org
    but it seems there is no response after...
  23. Replies
    3
    Views
    1,204

    Re: How do Windows know the clip region?

    Thanks, but the above API are the "result" after each Window already get it's clipping region.

    My question should be something like undocumented, and maybe we need some gurus who happen to have...
  24. Replies
    3
    Views
    1,204

    How do Windows know the clip region?

    Well, for each window, they can easily get the clipping region of their own, and then they can redraw the region.

    However, i'm wondering how Windows know the clipping region of each one (process)?...
  25. Replies
    1
    Views
    2,005

    Re: Delay encountered while using ReadFile

    This is interesting. Pump it and hope some guru can help explain.
Results 1 to 25 of 224
Page 1 of 9 1 2 3 4





Click Here to Expand Forum to Full Width

Featured