实习员工
- UID
- 88796
- 积分
- 83
- 金币
-
- 活跃
-
- 阅读权限
- 20
- 注册时间
- 2010-1-2
- 最后登录
- 1970-1-1
|
excelapp:= CreateOleObject('Excel.Application');
form1.ListBox1.items.loadfromfile('批量表.txt');
form1.OpenDialog1.Execute;
strt:= opendialog1.FileName;
excelapp.workbooks.open(strt);
excelapp.visible:=true;
nc:=listbox1.Items.Count;
for a:=0 to nc-1 do
begin
strc:=trim(listbox1.Items[a]);
instr1:=pos(strc,excelapp.ActiveSheet.cells(2,5).text); //找不到成员
if instr1<>0 then
begin
suml:=suml+1;
break;
end;
end;
请高手指教,程序运行到标注处,提示找不到成员。 |
|