在Delphi中是否可以弹出可以填值的对话框!比如弹出的对话框中有确定和取消两个按钮不过还有一个Exit编辑框,我可以在里面输入一些信息,例如:定时。然后可以在程序中将其取出! 谢谢各位![解决办法]var s:string; begin s:=InputBox( 'Input Box ', 'Prompt ', 'Default string '); showmessage( s ); end;