Hey experts
I am trying to open an excel file using the Win32::Module, unfortunetaly I was unable to do it.
I have been able to create new excel files, write on it and open it..It works ok.
The main problem happens when I want to open an existing excel file.
I have been using this module for opening XML files using the IE, it worked fine...I have attached the example:
sub open_ie {
$ie = CreateObject OLE "InternetExplorer.Application.1" ||
die "CreateObject: $!";
$ie->{Visible} = 1;
$ie->Navigate($filename_created);
}
I want to do the same opening an excel file in Microsoft Excel. I have the excel file in a variable called $excel_filename.
Many thanks for your prompt answer.
Regards
I am trying to open an excel file using the Win32::Module, unfortunetaly I was unable to do it.
I have been able to create new excel files, write on it and open it..It works ok.
The main problem happens when I want to open an existing excel file.
I have been using this module for opening XML files using the IE, it worked fine...I have attached the example:
sub open_ie {
$ie = CreateObject OLE "InternetExplorer.Application.1" ||
die "CreateObject: $!";
$ie->{Visible} = 1;
$ie->Navigate($filename_created);
}
I want to do the same opening an excel file in Microsoft Excel. I have the excel file in a variable called $excel_filename.
Many thanks for your prompt answer.
Regards