Is it possible to reset/rewrite password in excel workbook using c#?
I tried to do a couple things, but it did't solve my question:
1) workbook.Password = ""; doesn't help
2) workbook.Protect ("",true,true);
workbook.Unprotect(""); doestn't help
3) I also tried to resave workbook.SaveAs(workbook.FullName,XlNormal,"","",false,null,Excel.XlSaveAsAccessMode.xlNoChange,null,false,null,null,false);
If you have any idea, please help.