excel问题
时间:2011-12-01
来源:互联网
ExcelApp := CreateOleObject( 'Excel.Application' );
ExcelApp.WorkBooks.Open( excelfile_OpenDialog.FileName );
if Excelapp.Cells[1,1].Value<>'XX' then aa
if Excelapp.Cells[1,2].Value<>'XX' then bb
if Excelapp.Cells[1,3].Value<>'XX' then cc
问题:第三句开始没反应啊,直接就then aa 了根本没判断 ,value的值提取不出来,哪里错了还是什么了····
ExcelApp.WorkBooks.Open( excelfile_OpenDialog.FileName );
if Excelapp.Cells[1,1].Value<>'XX' then aa
if Excelapp.Cells[1,2].Value<>'XX' then bb
if Excelapp.Cells[1,3].Value<>'XX' then cc
问题:第三句开始没反应啊,直接就then aa 了根本没判断 ,value的值提取不出来,哪里错了还是什么了····
作者: totoro_1018 发布时间: 2011-12-01
还有就是excelApp.WorkBooks.Open ,Excelapp.Cells 我按excelapp.的时候也不会自动弹出显示,但是这样打又可以编译不报错
作者: totoro_1018 发布时间: 2011-12-01
procedure TForm1.Button1Click(Sender: TObject);
var
ExcelApp:Variant;
begin
ExcelApp := CreateOleObject( 'Excel.Application' );
try
ExcelApp.Visible:=False;
ExcelApp.WorkBooks.Open('D:\1.xls');
if Excelapp.Cells[1,1].Value<>'XX' then showmessage('aa');
if Excelapp.Cells[1,2].Value<>'XX' then showmessage('bb');
if Excelapp.Cells[1,3].Value<>'XX' then showmessage('cc');
finally
ExcelApp.quit;
end;
end;
沒有問題,很正常。。。
var
ExcelApp:Variant;
begin
ExcelApp := CreateOleObject( 'Excel.Application' );
try
ExcelApp.Visible:=False;
ExcelApp.WorkBooks.Open('D:\1.xls');
if Excelapp.Cells[1,1].Value<>'XX' then showmessage('aa');
if Excelapp.Cells[1,2].Value<>'XX' then showmessage('bb');
if Excelapp.Cells[1,3].Value<>'XX' then showmessage('cc');
finally
ExcelApp.quit;
end;
end;
沒有問題,很正常。。。
作者: kaikai_kk 发布时间: 2011-12-01
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28