Mega Code Archive

 
Categories / Delphi / Forms
 

Another solution for mainboard bios information

Title: Another solution for mainboard bios information Question: How to get the BIOS information from Delphi? Answer: Add a TButton and a TMemo components to the form and write the following code to the OnClick event of button. with Memo1.Lines do begin Add('MainBoardBiosName:'+^I+string(Pchar(Ptr($FE061)))); Add('MainBoardBiosCopyRight:'+^I+string(Pchar(Ptr($FE091)))); Add('MainBoardBiosDate:'+^I+string(Pchar(Ptr($FFFF5)))); Add('MainBoardBiosSerialNo:'+^I+string(Pchar(Ptr($FEC71)))); end; Note:I tested this code on w9x.