Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
char buf[300];
DWORD bufSize = sizeof(buf);
bool success = ::GetUserName(buf, &bufSize);
if (success)
lines->Add("Network user name = " + String(buf));
else
lines->Add("Unable to get network user name.");
bufSize = sizeof(buf);
success = ::GetComputerName(buf, &bufSize);
if (success)
lines->Add("Network computer name = " + String(buf));
else
lines->Add("Unable to get network computer name.");