摘要: //Delphi中打开Excel文件var ExcelApp: Variant; //Excel变量 ExcelFiles: string; //打开的Excel文件名begin inherited; //打开指定的文件 OpenDialog1.InitialDir := ExtractFilePath(ParamStr(0)) + '.\data\'; OpenDialog1.Filter :=... 阅读全文
posted @ 2009-12-14 10:06 bingege 阅读(3402) 评论(0) 推荐(0) 编辑
摘要: //判断文件是否存在 if not FileExists(trim(RzButtonEdit1.Text)) then begin Application.MessageBox('指定的数据源文件不存在!', '请您注意', 48); exit; end; 阅读全文
posted @ 2009-12-14 10:03 bingege 阅读(216) 评论(0) 推荐(0) 编辑