Re: [fpc-pascal]Read mac address

2004-09-16 Thread Darek Mazur
Uz.ytkownik Paul Aviles napisa?: Is it possible to detect and read the mac addresses of the nic cards installed on a motherboard? Thanks Paul I found this: Netbios unit for Delphi (follows IBM's Netbios 3.0 specification). Example of use shows how to get ethernet MAC address. http://www.delphi3

Re: [fpc-pascal]PDF

2004-06-26 Thread Darek Mazur
See http://www.est.hi-ho.ne.jp/takeshi_kanno/powerpdf/ or Nishita's PDF Creation VCL (TNPDF) http://swiss.torry.net/unitsconversion.htm Darek - Original Message - From: "David G Jenkins" <[EMAIL PROTECTED]> To: "Pascal discussion" <[EMAIL PROTECTED]> Sent: Saturday, June 26, 2004 4

Re: [fpc-pascal]Better Alternative to delay()

2003-10-14 Thread Darek Mazur
The better way is write your own function to input data from keybord Then You may wait so long as you want, trap special keys etc for exaple function inputkstring(wait : longint):string; var s : string; ch : char; theend : boolean; begin s:=''; theend:=false; repeat delay(100);