vb.net - How to ignore password protected excel sheets programmatically -
We are scanning Excel files and preparing reports with our tool. My problem is that some Excel sheets are protecting the password and they get the pelft when scanning and it stops the device to move forward.
Does anyone have the solution to deal with this problem, leaving me the letter and continuing with scanning without any user intervention.
Thanks,
Easy
A haspad in the workbook Property is (C #):
workbook book = GetYourWorkbook (); If (book.HasPassword) {// Ignore! } And {// display your operation here}
Comments
Post a Comment