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

Search:

Type: Posts; User: AveryH

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    29,050

    Visual Studio Standard and Service Templates

    Can your Microsoft guru please explain the rationale behind not providing a Service Template in the Standard Editions of Visual Studio?

    I'm sure that I am not the only person who doesn't need all...
  2. Replies
    2
    Views
    813

    You could also go to http://www.codeproject.com...

    You could also go to http://www.codeproject.com and download Chris Maunder's excellent Grid Control class
  3. Replies
    29
    Views
    3,525

    Poll: I think jontom may have a point. I've been...

    I think jontom may have a point.

    I've been browsing through the messages and there are an awful lot with no answers submitted..

    As someone else has already suggested, maybe the moderator should...
  4. Replies
    3
    Views
    910

    Use the following code: TCHAR...

    Use the following code:

    TCHAR m_szComputerName[MAX_COMPUTERNAME_LENGTH + 1];
    DWORD dwNameSize = MAX_COMPUTERNAME_LENGTH + 1;
    ::GetComputerName (m_szComputerName, &dwNameSize);


    Works every...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured