文件名称:Tsc的delphi的代码BarTender_TLB.pas
文件大小:327KB
文件格式:PAS
更新时间:2013-01-11 05:06:45
Tsc Delphi BarTender
var AppPath: string; LebelPath: string; O: TApplication_Bar; begin AppPath := ExtractFilePath(ParamStr(0)); LebelPath := AppPath + '\aa.btw'; O := TApplication_Bar.Create(nil); try with O.Formats.Open(LebelPath, True, '') do begin PrintOut(False, False); //这里设置成True的话,预览不出来. Close(btDoNotSaveChanges); end; finally O.Quit(btDoNotSaveChanges); O.Free; end; end;