vote up 1 vote down star

Hello,

I need to export DataSet result to Excel file (using dataset, XSLT transformation and XML generation => XML spreadsheet). That's work, but I'd like to protect this sheet. The reader can only make change in some dropdown, in some cell but other change are not allowed. The only changes allowed are some specific cells (value or dropdown).

How can I do this ?

Thanks,

flag

68% accept rate

1 Answer

vote up 0 vote down

You could always lock the cells and protect the sheet with the Excel Interop. Somthing similar to:

sheet.get_Range("A1, N1").Locked = true;
sheet.Protect(....);
link|flag
it's an XML spreadsheet and not an sheet created by Excel Interop – Kris-I Oct 6 at 13:48
I'm assuming your talking about an Excel 2003 XML spreadsheet? You should still be able to connect to it via interop after its created and then do the locking as a final step. – jwarzech Oct 6 at 13:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.