delphi中如何操作excel(50分)

  • 主题发起人 主题发起人 wtfy2003
  • 开始时间 开始时间
W

wtfy2003

Unregistered / Unconfirmed
GUEST, unregistred user!
请问:在delphi中如何打开excel2000
是这样的,我打算在一个空白的窗体上放置一个BUTTON1然后单击它能打开D:/77.xls,
我确保d:/下确实有77.XLS
 
建议搜索一下,答案太多了。
 
用winexec,他能按照默认的打开方式打开文件。
 
如果仅仅是为了打开该文件,方法很多,最简单的就是用
shellexecute api函数,直接打开该文件即可。
 
shellexecute(handle, "open", 'D:/77.xls', NULL, NULL, SW_SHOWNORMAL)
 
uses 中加入 ShellAPI, Word2000
button事件中加入
ShellExecute(handle,nil,pchar('Excel.exe'),nil,nil,SW_shownormal);
 
shellexecute(handle,nil,pchar('D:/sss.xls'), nil,nil, SW_SHOWNORMAL);
 
后退
顶部