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

Search:

Type: Posts; User: Nhoj

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    691

    Toss the global, it's going to cause more harm...

    Toss the global, it's going to cause more harm than good in this case. It complicates the logic and makes the program very difficult to read.

    Consider changing your functions to look like this......
  2. Replies
    5
    Views
    1,458

    Under Windows, a process is MUCH more expensive...

    Under Windows, a process is MUCH more expensive than a thread, it terms of both memory and CPU cycles. For the CPU to do a context switch from one thread to another is almost nothing compared to do...
  3. Replies
    6
    Views
    7,590

    It's true that you can get away without adding...

    It's true that you can get away without adding the DSW file to SourceSafe, but you are probably better off keeping it under source control. This is especially true for workspaces with many projects....
  4. Replies
    5
    Views
    1,458

    For Windows it's almost always going to be the...

    For Windows it's almost always going to be the case that a thread based solution is going to be less resource intensive than a process based solution.

    John
    nhojmc@hotmail.com
  5. Replies
    4
    Views
    1,258

    You are probably going to find that DCOM is not...

    You are probably going to find that DCOM is not the best technology for remote users over the internet. It's a bear to configure correctly and throwing a firewall into the mix will make things just...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured