怎樣才能取得本機的機器名(50分)

  • 主题发起人 主题发起人 zhl123
  • 开始时间 开始时间
Z

zhl123

Unregistered / Unconfirmed
GUEST, unregistred user!
我用了api函數gethostname,但是不知道怎麼調用它,老出錯,請各位幫一下忙,是不是<br>需加入什麼單元,還有裡面的參數怎樣調用
 
var<br>&nbsp; scname:array[1..MAX_COMPUTERNAME_LENGTH] of char;<br>&nbsp; nSize: DWORD;<br>begin<br>&nbsp; result:='';<br>&nbsp; nSize:=MAX_COMPUTERNAME_LENGTH+1;<br>&nbsp; if GetComputerName(@scname,nSize) then<br>&nbsp; begin<br>&nbsp; &nbsp; result:=lowercase(trim(scname));<br>&nbsp; end;<br>end;<br>
 
uses shellapi;<br><br>procedure TForm1.Button1Click(Sender: TObject);<br>var<br>&nbsp; p:pchar;<br>&nbsp; size:dword;<br>begin<br>size:=255;<br>&nbsp; getmem(p,size);<br>&nbsp; GetComputerName(p,size);<br>&nbsp; edit1.Text:=string(p);<br>&nbsp; freemem(p);<br>end;
 
GetComputerName(p,size);
 
接受答案了.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
816
import
I
I
回复
0
查看
671
import
I
后退
顶部