Версия для печати темы
Нажмите сюда для просмотра этой темы в оригинальном формате
Форум программистов > Delphi: ActiveX/СОМ/CORBA > Как снять пароль с Excel файла?


Автор: Alex 21.3.2005, 18:31
Код

{ 
Today I want to show how you may load some xls-file that is  
password-protected, and how to save xls into another file  
but without protection. 
Just replace there file names and password... 
} 

var 
xls, xlw: Variant; 
begin 
{load MS Excel} 
xls := CreateOLEObject('Excel.Application'); 

{open your xls-file} 
xlw := xls.WorkBooks.Open(FileName := 'd:\book1.xls', Password := 'qq', ReadOnly := True); 
{save with other file name} 
xlw.SaveAs(FileName := 'd:\book2.xls', Password := ''); 

{unload MS Excel} 
xlw := UnAssigned; 
xls := UnAssigned; 
end;

Powered by Invision Power Board (http://www.invisionboard.com)
© Invision Power Services (http://www.invisionpower.com)