protection

Protecting and Hiding Columns same as “Very Hidden” Sheets

谁说胖子不能爱 提交于 2021-02-10 05:00:52
问题 I am trying to hide some columns and prevent the user to have any access to them; while they can edit other parts of the sheet. What I am seeking is something like: ActiveWorkbook.Sheets("Name").Visible = xlSheetVeryHidden So user cannot see them. I am aware that one option is adding another sheet and move those columns to there and hide that one sheet; but as I am working on a relatively large data-set and it has a standard format within the company, I prefer not to do so. I already tried

Protecting and Hiding Columns same as “Very Hidden” Sheets

淺唱寂寞╮ 提交于 2021-02-10 04:59:46
问题 I am trying to hide some columns and prevent the user to have any access to them; while they can edit other parts of the sheet. What I am seeking is something like: ActiveWorkbook.Sheets("Name").Visible = xlSheetVeryHidden So user cannot see them. I am aware that one option is adding another sheet and move those columns to there and hide that one sheet; but as I am working on a relatively large data-set and it has a standard format within the company, I prefer not to do so. I already tried

Protecting and Hiding Columns same as “Very Hidden” Sheets

梦想与她 提交于 2021-02-10 04:59:27
问题 I am trying to hide some columns and prevent the user to have any access to them; while they can edit other parts of the sheet. What I am seeking is something like: ActiveWorkbook.Sheets("Name").Visible = xlSheetVeryHidden So user cannot see them. I am aware that one option is adding another sheet and move those columns to there and hide that one sheet; but as I am working on a relatively large data-set and it has a standard format within the company, I prefer not to do so. I already tried

Password protect Open XML Wordprocessing Document

与世无争的帅哥 提交于 2021-02-07 19:56:27
问题 I need to add basic password protection to an Open XML Wordprocessing document. I can either use the COM interface, which is very slow when I have a large number of documents to process; or I can put the data directly in the docx file under <w:settings> <w:documentProtection> which is very fast. However, looking at the requirements to encrypt the password looks like it will take hours of programming. Does anyone have this algorithm already coded? I'm coding in C#. 回答1: here's a full code

Password protect Open XML Wordprocessing Document

余生颓废 提交于 2021-02-07 19:56:11
问题 I need to add basic password protection to an Open XML Wordprocessing document. I can either use the COM interface, which is very slow when I have a large number of documents to process; or I can put the data directly in the docx file under <w:settings> <w:documentProtection> which is very fast. However, looking at the requirements to encrypt the password looks like it will take hours of programming. Does anyone have this algorithm already coded? I'm coding in C#. 回答1: here's a full code

How to protect my file from sending to skype or upload to cPanel

二次信任 提交于 2021-01-29 06:06:23
问题 I'm programming an application in my company, and there is a file watcher: fsw.NotifyFilter = (NotifyFilters.Security Or NotifyFilters.LastAccess Or NotifyFilters.LastWrite) AddHandler fsw.Changed, New FileSystemEventHandler(AddressOf OnChanged) AddHandler fsw.Created, AddressOf OnChanged AddHandler fsw.Renamed, AddressOf OnRenamed AddHandler fsw.Deleted, AddressOf OnChanged But I want to protect some files from users by send it in skype, messanger oruploading it to any cloud. Ex. I have an

Protect a word document programmatically using java

血红的双手。 提交于 2021-01-29 03:33:53
问题 I am creating a word 2003 document from a template XML document using a java code. I need to protect (make read-only) the document after it has been created. The document has some fields as editable (i.e. text form fields of the developer mode) in it, which can be editable after the document is created. Can this be achieved using java? 回答1: If you only need to make the Word Document a Read-Only, you can do it like this: import java.io.File; public class FileReadOnly { public static void main

google apps script: remove and restore protection

不想你离开。 提交于 2021-01-28 18:33:12
问题 I have a spreadsheet that is editable by everyone with a protected sheet with some ranges unprotected. I want cells that can be altered by a script run by any user (from a menu), but not manually. When I run the script not as the owner it gives an error message when I try to temporarily remove the protection. 回答1: There seems to be no easy way to do this, because functions run from the menu is always executed as "user at the keyboard". One workaround is to publish a Web App to always "Execute

How to protect webfonts?

家住魔仙堡 提交于 2021-01-19 06:42:47
问题 my client has bought a font which I would like to use on his website, but the company which made the font(Adobe) told me, that there is no webfont service for this current font and I can use it on a website only if I rasterize it or make it impossible to download/steal the font in any other way. Therefore, the question is: Is there any reliable way to protect webfonts? (second, optional part) Is there any way that is generally considered to be enough so its legally safe to use the font? What