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

Search:

Type: Posts; User: NittiLin

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    616

    Detect Remote Access or Connection

    Hi guys,

    Could anyone please give me a hint on how to write a program that will detect if there's any remote access software that connects to my machine?

    For example, if someone uses PCAnywhere...
  2. Replies
    24
    Views
    6,727

    Good ideas. Thanks a lot. I'll check it out. ...

    Good ideas. Thanks a lot. I'll check it out.

    Thanks,

    Nitti
  3. Replies
    24
    Views
    6,727

    I use CArray to do the similar thing. Since...

    I use CArray to do the similar thing. Since souldog suggested me not to use CArray, I'm gonne check out the way he suggested.

    Thanks,

    Nitti
  4. Replies
    24
    Views
    6,727

    Re: Re: How to make sure if a pointer is still good

    I want dialog A to be top most only. If dialog A is the parent of all the dialog B, when I bring dialog A to topmost, all the dialog B will be on topmost as well. This is the reason that I can't use...
  5. Replies
    24
    Views
    6,727

    So far, program still doesn't have any problems...

    So far, program still doesn't have any problems although the testing is still going on. Dialog A does exist for the life time of all the modeless dialogs.



    Thanks for the advise. I've never...
  6. Replies
    24
    Views
    6,727

    Yeah, that's what I'm worring about. System might...

    Yeah, that's what I'm worring about. System might reallocate memory and some pointers might point to an address that is using by other application.

    Thanks,

    Nitti
  7. Replies
    24
    Views
    6,727

    Yes, I'm testing the program with and without...

    Yes, I'm testing the program with and without catch exception. In the same time, I am doing research on "smart pointers, reference counted objects, notifications" like TheCPUWizard suggested.



    ...
  8. Replies
    24
    Views
    6,727

    I'll add TRY CATCH code block to make sure if any...

    I'll add TRY CATCH code block to make sure if any pointers are no longer available.

    Thanks,

    Nitti
  9. Replies
    24
    Views
    6,727

    I can't do it that way because I don't know how...

    I can't do it that way because I don't know how many B dialogs user will create. That's why I save the pointers to a CArray.


    Thanks,

    Nitti
  10. Replies
    24
    Views
    6,727

    Thank you very much for your reply. I'll do some...

    Thank you very much for your reply. I'll do some research on those subjects you listed.

    If I use TRY CATCH to wrap around the code when 'A' dialog loop through those pointers and simply just...
  11. Replies
    24
    Views
    6,727

    How to make sure if a pointer is still good

    Guys,

    I have 'A' dialog, which creates multiple modeless 'B' dialogs. I use GetDesktopWindow() as 'B' dialogs' parent for some reason.

    'A' dialog saves pointers of 'B' dialogs to a CArray in...
  12. Replies
    3,704
    Views
    621,945

    Poll: From Phoenix, AZ

    Anyone from Phoenix, AZ?

    Nitti
  13. Replies
    5
    Views
    1,184

    Re: Scroll bar not moving

    Try SetWindowOrg, SetWindowExt, SetViewportOrg, SetViewportExt

    Nitti
  14. Replies
    3
    Views
    665

    OK, I got it fixed... Instead of using ...

    OK,

    I got it fixed...

    Instead of using

    ModifyStyleEx(WS_EX_APPWINDOW, 0);

    I use
  15. Replies
    3
    Views
    665

    Thanks, it works. One more question, now,...

    Thanks, it works.

    One more question, now, these modeless dialogs are showing on the task bar, I use ModifyStyleEx(WS_EX_APPWINDOW, 0) on those modeless dialogs, but didn't work. Do you have any...
  16. Replies
    3
    Views
    665

    Parent and child dialog Z Order

    Guys,

    My problem probably has no solution...

    I have a Dialog based application where a main dialog with a button that will create multiple modaless dialogs. The problem is if I bring the main...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured