Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
How can I obtain the local machine name thru code in vc5. What api can I use & where would I find a sample? Thanks.
Use the Win32 API GetComputerName: TCHAR pBuffer[61]; DWORD dwSize = 60; GetComputerName( pBuffer,&dwSize);