如果使用INPUTBOX
系统报错
[Error] test1.pas(219): Undeclared identifier: 'InputBox'
在USES  中加入DIALOGS后
[Warning] test1.pas(6): Unit 'Borland.Vcl.Dialogs' is specific to a platform
//////
尤其是MESSAGEBOX无法使用,查帮助文档
public function MessageBox(const Text: string, const Caption: string, Flags: Integer): Integer;
写入MessageBox('显示文本','messageBox标题',MB_OK);
报错
[Error] test1.pas(222): ')' expected but ',' found
我刚开始学DELPHI,手中的书都是关于DELPHI7的
谁知道为什么