关于WINDOWS API(10分)

  • 主题发起人 主题发起人 锤子
  • 开始时间 开始时间

锤子

Unregistered / Unconfirmed
GUEST, unregistred user!
我想学WINDOWS API函数<br>但我不知道函数名后的形参怎么加,<br>所以无法使用,各位大虾帮忙,<br>小女子这相有礼了!<br>还有,我咋就看不懂如何使用类和类型呢??<br>那位相公能说明白,谢谢!
 
瓦!女人!!!!!!!我来告诉你!哈哈!<br><br>看看api方面的书,<br>http://www.delphibbs.com/delphibbs/download.asp这里有下载的!<br>还可以到www.microsoft.com/msdn去看看!
 
谢谢了<br>我第一次来,我不知道积分规则<br>见笑了
 
procedure TForm1.Button1Click(Sender: TObject);<br>var<br>&nbsp; &nbsp;pcUser &nbsp; : PChar;<br>&nbsp; &nbsp;dwUSize : DWORD;<br>begin<br>&nbsp; &nbsp;dwUSize := 21; // user name can be up to 20 characters<br>&nbsp; &nbsp;GetMem( pcUser, dwUSize ); // allocate memory for the string<br>&nbsp; &nbsp;try<br>&nbsp; &nbsp; &nbsp; if Windows.GetUserName( pcUser, dwUSize ) then<br>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;edit1.Text := pcUser<br>&nbsp; &nbsp;finally<br>&nbsp; &nbsp; &nbsp; FreeMem( pcUser ); // now free the memory allocated for the string<br>&nbsp; &nbsp;end;<br>end;<br>
 
有本书叫做&lt;&lt;Windows程序设计&gt;&gt;,英文名叫做&lt;&lt;programming windows&gt;&gt;,API的经典<br>指南,很不错,就是贵了点。
 

Similar threads

回复
0
查看
978
不得闲
回复
0
查看
863
不得闲
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
后退
顶部