Scalabium Software

SMExport advertising

Knowledge for your independence.
Home Delphi and C++Builder tips



#88:How do I find a MAC address?

The code below gets your MAC address. Should you have more than one NIC in your machine you will get the MAC off the first one.

function CoCreateGuid(var guid: TGUID): HResult; stdcall; far external 'ole32.dll';

function Get_MACAddress: string;
var
  g: TGUID;
  i: Byte;
begin
  Result := '';
  CoCreateGUID(g);
  for i := 2 to 7 do
    Result := Result + IntToHex(g.D4[i], 2);
end;
See also
 
SMExport suite
SMImport suite
SMReport
SMDBGrid
MAPIMail
Paradox Viewer
Paradox ActiveX
ExcelFile Viewer
Metafile Convert
DBLoad
DBExport tools
 
 
Contact to webmaster

 

Technology is always changing and evolving and what better way to keep up than with the internet. Learn more about online learning at the learning haven, a resourceful website with lots of articles on just about anything. Stuff like activities for children and arts and crafts movement can be informative to just about anyone willing to learn about them.


Borland Software Code Gear Scalabium Delphi tips

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

July 5, 2000

SMExport advertising