莱的不好意思了(20分)

  • 主题发起人 主题发起人 huait
  • 开始时间 开始时间
H

huait

Unregistered / Unconfirmed
GUEST, unregistred user!
var
str:string;
begin
application.messagebox(str,'information',MB_OK);
end;

出错,谢谢
 
var
str:pchar; //string;
 
application.messagebox(pchar(str),'information',MB_OK);
 
application.messagebox(pchar(str),'information',MB_OK);
 
改成下面这样就行了
var
str:string;
begin
application.messagebox(pchar(str),'information',MB_OK);
end;
 
var
str:string;
begin
application.messagebox('asd','information',MB_OK);//'asd'是你需要显示的信息
end;
 
application.messagebox(pchar(str),'information',MB_OK);
 
用API吧
messagebox(form1.handle,'内容','标题',MB_OK);
 
var
str:string;
begin
application.messagebox(pchar(str),pchar('information'),MB_OK);
end;
 
application.messagebox(pchar(str),'information',MB_OK);

 
application.messagebox(pchar(str),'information',MB_OK);


 
application.messagebox(pchar(str),'information',MB_OK);
 
[blue]简单:
var
str:string;
begin
application.messagebox(pchar(str),'information',MB_OK);
end;


不就OK啦![/blue][:)][:)][:)]
 
后退
顶部