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

Search:

Type: Posts; User: kirants

Page 1 of 80 1 2 3 4

Search: Search took 1.02 seconds.

  1. Re: service: WTS_SESSION_LOGOFF event in SESSION CHANGED

    Hm.. perhaps on logoff, the tokeis invalid and domain name and user name doesn't make sense anymore.
  2. Replies
    2
    Views
    634

    Re: Need help detecting a process

    Give this a shot:
    Sysinternals Handle utility
  3. Re: Loading Binary Data from a file into a Structure

    Yes.
  4. Re: Loading Binary Data from a file into a Structure

    If padding of the C++ structure and the file content layout match, you just need to do something like this:



    TopLevelStruct oStruct;
    in_file.read(&oStruct,sizeof(TopLevelStruct));

    You won't...
  5. Re: Marshalling an interface pointer to multiple worker threads

    I have been quite a bit away from COM for long and my memory has faded, especially, the apartments always makes me read things a 100 times ;) However, whenever I have had to marshal interface...
  6. Replies
    4
    Views
    3,110

    Re: on regions (HRGN)

    Check API documentation on MSDN. It is clearly mentioned there.
  7. Re: GetMessage not responding when I am in another window

    Windows optimizes paint operations. Please post all code. Otherwise, it will end up in a needless exchange of questions back and forth :)
  8. Replies
    1
    Views
    686

    Re: When uninstall the folder need to delete

    Wrong forum. You should be checking out in some installer related forums instead. What software do you use for installation , anyways?
  9. Replies
    12
    Views
    6,830

    Re: Do my C++ homework for me.

    When I see these kind of threads, I know for sure I can see this "click" reply! it always brings a smile on my face :thumb:
  10. Re: How to send user defined structure using PostMessage?

    If you still want to rely on messages, you can explore WM_COPYDATA message.
  11. Re: Application looses communication after 1 or 2 days

    it seems to me too that the fundamental problem is with the device / driver itself and not your application. However, some of the problems associated with your application not behaving right could be...
  12. Re: GetMessage not responding when I am in another window

    What in your view is the way your program reacts when you say this? ? What kind of reaction does the program produce ? It is not clear since all you have shown is the message pump and am sure your...
  13. Replies
    11
    Views
    1,671

    Re: Exiting programs

    Explored RegisterHotkey ?
  14. Replies
    6
    Views
    7,580

    Re: Issues with Command Line Parsing in MFC

    Cool! I should update the FAQ. Thanks for bringing it up.
    Also, curious as to what the new issues are. If related to the FAQ, I would like to fix them.
  15. Replies
    14
    Views
    1,690

    Re: sizeof(myclass) acting strangely.

    Is the third party library a DLL?
    Are you passing C++ objects from your code to the third party code?

    Sounds like a case of memory corruption to me.
  16. Replies
    2,690
    Views
    1,011,208

    Re: What Song Are You Listening To Now¿

    cool !

    Currently on: Dust n' bones - Guns N' roses
  17. Replies
    14
    Views
    1,876

    Re: A thank you note.

    scuzzo, I haven't done much to really help you, but that you mention me shows your nice spirit. It's very thoughtful of you to send a note of thanks to the folks that helped you.

    Congrats on your...
  18. Replies
    2,690
    Views
    1,011,208

    Re: What Song Are You Listening To Now¿

    Think it is good? I have sampled only 1 song.

    Currently on: Get in the ring - GNR
  19. Replies
    2,690
    Views
    1,011,208

    Re: What Song Are You Listening To Now¿

    Wizards of winter - Trans-Siberian orchestra
  20. Replies
    2,690
    Views
    1,011,208

    Re: What Song Are You Listening To Now¿

    Who are you - The Who
  21. Replies
    2,690
    Views
    1,011,208

    Re: What Song Are You Listening To Now¿

    Encrypted - Shadow Gallery
  22. Replies
    2,690
    Views
    1,011,208

    Re: What Song Are You Listening To Now¿

    The corner - Staind
  23. Replies
    2,690
    Views
    1,011,208

    Re: What Song Are You Listening To Now¿

    Space-Dye Vest - Dream Theater
  24. Thread: Drawing a cube

    by kirants
    Replies
    3
    Views
    3,204

    Re: Drawing a cube

    You can use Polygon function. Your first step is to draw what you think a cube would look like on paper. Then assign coordinates to the corners and then use Polygon function to connect them.
    ...
  25. Replies
    4
    Views
    1,195

    Re: Need Clarification about CWinThread

    Please post your code.
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured