Describe a method of adding security to your macro projects.

What will be an ideal response?


To add security to your projects, you can add a digital signature to the project. A digital signature guarantees the project hasn't been altered since it was signed. Sign macros only after you have tested them and are ready to distribute them If the code in a digitally signed macro project is changed in any way, its digital signature is removed. To add a digital signature to a Visual Basic project, select the project that you want to sign in the Visual Basic Project Explorer window, click the Tools menu in the Visual Basic Editor, click Digital Signature, click Choose, select the certificate, then click OK twice.

Computer Science & Information Technology

You might also like to view...

Double is a subclass of ____, which is a subclass of Object.

A. Math B. Number C. StrictMath D. System

Computer Science & Information Technology

Which of the following terms means in a location separate from the computer site?

A. off-scope B. off-shore C. off-line D. off-site

Computer Science & Information Technology

If the ____ feature is enabled, as you drag an object toward a guide, the object will be pulled toward the guide.

A. Lock-on B. Targeting C. Nudging D. Snap

Computer Science & Information Technology

What value is returned by function result?

``` int result(const int a[], int n) { int i, r; r = 0; for (i = 1; i < n; ++i) if (a[i] > a[r]) r = i; return (r); } ``` a. The subscript of the largest of the first n elements of array a. b. The value of the largest of the first n elements of array a. c. The subscript of the smallest of the first n elements of array a. d. The value of the smallest of the first n elements of array a. e. The subscript of the last element greater than its predecessor within the first n elements of array a.

Computer Science & Information Technology