Scalabium Software

 

SMReport Autogenerated

Knowledge for your independence.
 

 
Home Delphi and C++Builder tips


#27:The current computer and user names

To get a computer and user name you can so:

var ComputerName: array[1..20] of Char;
     UserName: array[1..512] of Char;
    arrSize: DWord;
begin
  arrSize := SizeOf(ComputerName);
  GetComputerName(@ComputerName, arrSize);

  arrSize := SizeOf(UserName);
  GetUserName(@UserName, arrSize);

  ShowMessage('Computer name is: ' + ComputerName + #13#10 +
                        'User name is: ' + UserName)
end;
See also
 
Viewer for MS Outlook Messages
SMMsg suite
SMExport suite
ExcelFile Viewer
Word Web-stream
ABA Document Convert
Excel Web-stream
Fast Document Viewer
SMImport suite
Paradox Viewer
 
 
Contact to webmaster

 

Borland Software CodeGear Embarcadero Technologies Scalabium Delphi tips

Copyrightc 1998-2012, Scalabium Software. All rights reserved.
webmaster@scalabium.com

October 1, 1999

SMExport advertising