码迷,mamicode.com
首页 > 其他好文 > 详细

fpc : 调用桌面应用程序

时间:2015-04-18 08:42:25      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:free   pascal   wps   ket   application   

这个例子是讲 how to 调用桌面应用程序,比如:WPS电子表格

testCom.pas

program testCom;
{$mode objfpc}{$H+}

uses
  SysUtils,Variants,ComObj,ActiveX,Windows;
  
const
  Com = 'KET.Application';
var
  App :Variant;
  wbook :Variant;
  Filename :WideString;
  
begin
  if Assigned(InitProc) then
	TProcedure(InitProc);
  try
    App:= CreateOleObject(Com);
    App.Visible:= True;
    Filename:= App.GetOpenFilename('Excel Files (*.xls), *.xls');
	if FileExists(Filename) then
	  wbook:= App.Workbooks.Open(Filename);
  except
    writeln(' Open Error ');
  end;

end.



fpc : 调用桌面应用程序

标签:free   pascal   wps   ket   application   

原文地址:http://blog.csdn.net/belldeep/article/details/45110349

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!