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

Search:

Type: Posts; User: NoHero

Page 1 of 80 1 2 3 4

Search: Search took 0.66 seconds.

  1. Re: A network stream of XML and XmlSerializer

    After some thinking, testing and researching we found a fix: The XmlReader can read from any stream without droping any data. Which means that one can easily extract the root element from the XML...
  2. Replies
    19
    Views
    2,335

    Re: So how's everyone doing?

    *pokes* You still alive?
    *pokes himself* Me still alive? Guess so!


    /been busy
  3. [RESOLVED] A network stream of XML and XmlSerializer

    Good day,

    I have a problem which presents as follows: We have a network stream from a socket. This one undergoes several transformations (AES then Base64) and finally ends in plain text...
  4. Thread: percentile

    by NoHero
    Replies
    7
    Views
    1,432

    Re: percentile

    Open does not mean free of etiquette. Mind your written speech, for a friendly and polite together is the primary goal of this community.
  5. Thread: percentile

    by NoHero
    Replies
    7
    Views
    1,432

    Re: percentile

    You should be thankful: Hundreds of people on here use their freetime to provide people in need - just like you - with answers. If you cannot honor this then you should probably leave this place at...
  6. Replies
    7
    Views
    1,481

    Re: What will happen if I say delete this

    ... or you end up in an endless recursion leading to a stack overflow if you do this in the destructor itself.
  7. Replies
    1
    Views
    968

    Re: how to add .lib files to projects

    By using a pragma:


    #pragma comment(lib, "path to lib.lib")
  8. Replies
    14
    Views
    1,722

    Re: What goes for cin here?

    This is not really WinAPI, thus: moved.
  9. Thread: Bad Decisions

    by NoHero
    Replies
    3
    Views
    880

    Re: Bad Decisions

    As you wish... ;)
  10. Replies
    5,488
    Views
    944,094

    Re: The "last one to post on this thread wins" Thread

    You guys can never win... I will reclaim my throne in this thread... muahahahaha :wave:
  11. Replies
    938
    Views
    62,110

    Re: All Posts In This Thread Must Be Off Topic

    ...
  12. Replies
    9
    Views
    1,364

    Re: Problem while calling a method in an .so file

    Have you tried making your member methods virtual?

    Btw: I learned it upon this tutorial: http://www.linuxjournal.com/article/3687
  13. Replies
    938
    Views
    62,110

    Re: All Posts In This Thread Must Be Off Topic

    Neither did the Sea Priestess.
  14. Replies
    2
    Views
    887

    Re: Handle of process to process id

    An ID identifies the process and/or thread in your current windows session. To gain access to a thread/process (e.g. to check its status, kill it and so on) you need to "open" the Process. The open...
  15. Replies
    3
    Views
    6,200

    Re: mutex and pthread

    [ Moved ]
  16. Re: c-program on .html file transfering from client to server

    Try Cygwin. Cygwin is a Linux-alike environment for Windows. It provides a Linux compatible layer to Windows API calls. Your application should compile on this platform.
  17. Replies
    1
    Views
    670

    Re: A question about the sleep() function

    Yes. This technique is called multi threading.



    You can: Run either both in a thread or run one in a thread and the other one in the "main thread" (e.g. your application instance).
  18. Re: news headlines....50 years and above from now...

    And don't forget the Palme d'Or.

    In 20 years: I will prolly have my first kid. Yeah, Ausie-Spawn. Hehe... :D


    /or I will end up in the mental home, who knows for sure?
  19. Replies
    1,291
    Views
    498,026

    Re: Who is the Sexiest Actress¿¿

    Though slightly "old" still a charming person: Torri Higginson
  20. Replies
    8
    Views
    1,040

    Re: 'new' and a ctor that throws.

    Thank you very much, very helpful :wave:
    And thank you Graham for clearing this up for me :wave:
  21. Replies
    8
    Views
    1,040

    Re: 'new' and a ctor that throws.

    No my troubles comes from a design that has a LOT OF "has a" relationships. ;) :wave:

    /btw: Nice to read from you Hobson ;)
  22. Replies
    8
    Views
    1,040

    Re: 'new' and a ctor that throws.

    Thank you Graham. Indeed my nightmare came true.

    I have a container class storing an huge amount of related data. To avoid a clumsy program I use 'new' to allocate the data when only needed. But...
  23. Replies
    8
    Views
    1,040

    'new' and a ctor that throws.

    Is it true, that when I create an instance of an object with 'new' and the ctor throws, the default operator new will deallocate the memory? And if yes, does it call my dtor?

    I am just curious...
  24. Replies
    10
    Views
    1,461

    Re: Asynchronous Socket

    [ Moved Thread ]
  25. Replies
    9
    Views
    1,433

    Re: can not delete a file

    You are welcome ;)
    But I have to admit, my eyes are getting sloppy :D
Results 1 to 25 of 2000
Page 1 of 80 1 2 3 4





Click Here to Expand Forum to Full Width

Featured