关于OLE的问题!(200分)

  • 主题发起人 主题发起人 lieben
  • 开始时间 开始时间
L

lieben

Unregistered / Unconfirmed
GUEST, unregistred user!
那位大虾能告诉我怎么样把foxmail软件嵌套在自己的软件里???
谢谢!
 
插入OLE容器控件,后按右键出现:INSERT OBJECT,添加FOXMAIL就可以了:
相当于:
procedure tolecontainerform.placeoleclick(sender:Tobject);
begin
if olecontainer1.insertobjectDialog then
begin
olecontainer1.doverb(olecontainer1.primaryVerb);
end;
end;
 
如果不使用OLE控件,我该怎么调用呢?
 
winexec(pchar('FoxMail.exe.exe'),SW_SHOW);//第二个参数记得加上FoxMail.exe文件路径。
 
后退
顶部