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

Search:

Type: Posts; User: Grear

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    1,038

    Re: High school prom of my sister....

    My sister tells me to choose a bigger size for my body (She blatently says that I am a fat body). I think she is darn right, as I sit all day doing my networks, eating only snacks and drinks liters...
  2. Replies
    7
    Views
    1,118

    Re: Today I had a thought

    You just turned my brother offline. :)

    Can we just be real friends without any intention to make use of each other ?


    Today I had a thought, I wanted to retire when I reach 40 and I wanted to...
  3. Replies
    8
    Views
    1,221

    Re: What code is done first in a worker thread?

    Thank you everyone, I am just so much dependent on the timing and order of execution that this problem actually has messed me up for years.
  4. Re: Singleton? Static member pointer? Design question...

    I am stupid and don't know anything about you problem, I hope to know but I can never, calling a function multiple times when needed is better than calling once to be used by all
  5. Replies
    8
    Views
    1,221

    Re: What code is done first in a worker thread?

    Why is it ? I think it should be done from top to bottom ?
  6. Replies
    2,690
    Views
    1,012,712

    Re: What Song Are You Listening To Now¿

    You! - Jane Krakowski http://www.youtube.com/watch?v=PDe59aIvh7U
  7. Replies
    8
    Views
    1,221

    What code is done first in a worker thread?

    unsigned int ThreadProc(void*param)
    {
    //processing
    }

    void buttonCLickEvent()
    {
    //dosomething
    _beginthread(ThreadProc....);
  8. Replies
    15
    Views
    1,799

    Re: friend used for primitive

    I only ask of its odd use, and did not state that I would use it yet. I will probably not use it after all of what you say, very helpful comments.
  9. Replies
    15
    Views
    1,799

    Re: friend used for primitive

    Thanks I always thought


    class a{};
    class b
    {
    friend class a;
    };
    was correct, and without "class" after friend the second case might not be compiled. Thanks alot.
  10. Replies
    15
    Views
    1,799

    Re: friend used for primitive

    Thank you,
    In the latter case, I wonder how the Type is deduced, because if it is a class the class specifier must precede the class name to make the friend declaration meaningful and compilable....
  11. Replies
    2
    Views
    718

    Re: [RESOLVED] Frustration with pointers...

    Pointer is actually an array.

    Index is "i" as in
    pMesh->pFace[i].MaterialID = MaterialID;

    ?
  12. Replies
    15
    Views
    1,799

    friend used for primitive

    Could someone tell me what does this friend actually mean


    class someclass
    {
    friend int;
    };

    and
  13. Replies
    5
    Views
    1,488

    How do you do that ?

    I find that successful people have very clear plans in mind. Many work many jobs at the same time, and all are well-done. I keep wondering a basic question as to how they manage their time for the...
  14. Replies
    27
    Views
    7,479

    Re: LoadImage return Windows Error #8

    Did you actually try loading it into resource ?
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured