R
rejoise
Unregistered / Unconfirmed
GUEST, unregistred user!
var Bmp:TBitmap;
begin
Bmp.Width:=ShockwaveFlash1.width;
Bmp.Height:=ShockwaveFlash1.Height;
ShockwaveFlash1.PaintTo(Bmp.Canvas.Handle,0,0);
Bmp.SaveToFile('c:/tempfalsh.bmp');
end;
以上语句能程序里执行,但是我放在DLL里编译执行,会出现错误
Could not obtain OLE control window handle
我怀疑是paintTo出了问题,请教高手这是为什么,有什么解决方法?
谢谢!
begin
Bmp.Width:=ShockwaveFlash1.width;
Bmp.Height:=ShockwaveFlash1.Height;
ShockwaveFlash1.PaintTo(Bmp.Canvas.Handle,0,0);
Bmp.SaveToFile('c:/tempfalsh.bmp');
end;
以上语句能程序里执行,但是我放在DLL里编译执行,会出现错误
Could not obtain OLE control window handle
我怀疑是paintTo出了问题,请教高手这是为什么,有什么解决方法?
谢谢!