关于messagebox()?(20分)

  • 主题发起人 主题发起人 ecoming
  • 开始时间 开始时间
E

ecoming

Unregistered / Unconfirmed
GUEST, unregistred user!
怎么在messagebox()中实现“确定要删除&lt;*****&gt;吗?”<br>其中****为记录信息。谢谢
 
'确定要删除&lt;'+*****+'&gt;吗?'
 
if application.MessageBox(pchar('确定要删除&lt;*****&gt;吗?'),pchar('提示'),MB_YESNO)=mryes then
 
*****为fieldname.该怎么弄
 
application.MessageBox(pchar('确定要删除&lt;'+fieldname+'&gt;吗?'),pchar('提示'),MB_YESNO)
 
谢谢楼上大哥。
 
Application.MessageBox('确定要删除文件:'+filename+'吗!',<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;'提示',<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MB_ICONInformation+MB_OK);
 
后退
顶部