procedure TForm1.Button1Click(Sender: TObject);
 VAR
  test:integer;begin
 test:=1111; IF application.messagebox('测试数据'+inttostr(test1)+ ','test',MB_YESNO)=IDYES THEN
  EDIT1.Text:='1'
 ELSE
  EDIT1.Text:='2';
end;我想得到弹出对话框"测试数据1111"怎么写,谢谢!