傻问题: DELPHI 调用EXCEL 并执行它的宏(100分)

  • 主题发起人 主题发起人 王寒松
  • 开始时间 开始时间
unit Unit1;

interface

uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
OleServer, Excel97, StdCtrls;

type
TForm1 = class(TForm)
ExcelApplication1: TExcelApplication;
Button1: TButton;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure FormDestroy(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;

var
Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.Button1Click(Sender: TObject);
begin
ShowMessage(ExcelApplication1.ExecuteExcel4Macro('GET.CELL(42)'));//执行宏
end;

procedure TForm1.FormCreate(Sender: TObject);
begin
ExcelApplication1.Connect;
end;

procedure TForm1.FormDestroy(Sender: TObject);
begin
ExcelApplication1.Disconnect;
end;

end.
 
如何将宏编入程序中呢,这样不是更专业化码!
 
用ole create 宏
 
不如直接控制不要用宏了
 
如果把宏命令放在EXCEL打开事件中就行了。
 
接受答案了.
 
后退
顶部