摘要: Delphi中有两个专门用于读取命令行参数的变量: Paramcount-->用于返回命令行参数的个数 Paramstr数组-->用于返回指定的命令行参数 示例代码: showmessage('命令行参数个数为:'+inttostr(paramcount)); showmessage('第1个命令行参数为:'+paramstr(1)); showmessage('应用程序名... 阅读全文
posted @ 2010-06-29 10:47 泡面 @ 幸福 阅读(291) 评论(0) 推荐(0) 编辑
摘要: unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm)  Button1: TButton;  procedure Button1Click(Sender: TObj... 阅读全文
posted @ 2010-06-29 09:38 泡面 @ 幸福 阅读(1155) 评论(0) 推荐(1) 编辑