Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 216
Default Why is my digital signature is being discarded?

I have some simple VBA code in an excel file and when another user
does basic data entry in that file, he gets a information message: You have
modified a signed project. You do not have the correct key to sign this
project the signature will be discarded. But he isn't doing any code work,
just data entry. Why is this happening?
  #2   Report Post  
Posted to microsoft.public.excel.programming
ben ben is offline
external usenet poster
 
Posts: 232
Default Why is my digital signature is being discarded?

Two questions.
Does your code modify any code? and also try locking your project for viewing.

--
When you lose your mind, you free your life.


"Nadine" wrote:

I have some simple VBA code in an excel file and when another user
does basic data entry in that file, he gets a information message: You have
modified a signed project. You do not have the correct key to sign this
project the signature will be discarded. But he isn't doing any code work,
just data entry. Why is this happening?

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 216
Default Why is my digital signature is being discarded?

Hmm. good question. does my code modify any code. not sure what you mean by
that. In some cases I've done: Application.ScreenUpdating = False.
Do you think that would do it?
I did lock the project for viewing, but the problem still happened.

"ben" wrote:

Two questions.
Does your code modify any code? and also try locking your project for viewing.

--
When you lose your mind, you free your life.


"Nadine" wrote:

I have some simple VBA code in an excel file and when another user
does basic data entry in that file, he gets a information message: You have
modified a signed project. You do not have the correct key to sign this
project the signature will be discarded. But he isn't doing any code work,
just data entry. Why is this happening?

  #4   Report Post  
Posted to microsoft.public.excel.programming
ben ben is offline
external usenet poster
 
Posts: 232
Default Why is my digital signature is being discarded?

If you don't know for sure then it's a good guess that it does not do so.
It's not a simple process to do. Have you tried installing the security
certificate on the users machine? They won't be able to write anything with
it, their machine will just recognize it as trusted.

--
When you lose your mind, you free your life.


"Nadine" wrote:

Hmm. good question. does my code modify any code. not sure what you mean by
that. In some cases I've done: Application.ScreenUpdating = False.
Do you think that would do it?
I did lock the project for viewing, but the problem still happened.

"ben" wrote:

Two questions.
Does your code modify any code? and also try locking your project for viewing.

--
When you lose your mind, you free your life.


"Nadine" wrote:

I have some simple VBA code in an excel file and when another user
does basic data entry in that file, he gets a information message: You have
modified a signed project. You do not have the correct key to sign this
project the signature will be discarded. But he isn't doing any code work,
just data entry. Why is this happening?

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 216
Default Why is my digital signature is being discarded?

That's right. I wouldn't have made code to modify code, I'm too novice for
that....
I guess installing the certificate on the users machine would do the trick,
but i'll have
40 users world-wide starting next week , I wonder if that is going to be
doable. Won't they, if they are clever, be able to write their own code
under my certificate?
I hope for this sake there is another answer...

"ben" wrote:

If you don't know for sure then it's a good guess that it does not do so.
It's not a simple process to do. Have you tried installing the security
certificate on the users machine? They won't be able to write anything with
it, their machine will just recognize it as trusted.

--
When you lose your mind, you free your life.


"Nadine" wrote:

Hmm. good question. does my code modify any code. not sure what you mean by
that. In some cases I've done: Application.ScreenUpdating = False.
Do you think that would do it?
I did lock the project for viewing, but the problem still happened.

"ben" wrote:

Two questions.
Does your code modify any code? and also try locking your project for viewing.

--
When you lose your mind, you free your life.


"Nadine" wrote:

I have some simple VBA code in an excel file and when another user
does basic data entry in that file, he gets a information message: You have
modified a signed project. You do not have the correct key to sign this
project the signature will be discarded. But he isn't doing any code work,
just data entry. Why is this happening?



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 692
Default Why is my digital signature is being discarded?

Have you considered writing your code in a .xla (add-in) and sending that to
your people?
Or put the code in a standard workbook and have your people save it to their
xlStartUp folder.

Not sure if this will get past the certificate issue....

--
steveB

Remove "AYN" from email to respond
"Nadine" wrote in message
...
That's right. I wouldn't have made code to modify code, I'm too novice
for
that....
I guess installing the certificate on the users machine would do the
trick,
but i'll have
40 users world-wide starting next week , I wonder if that is going to be
doable. Won't they, if they are clever, be able to write their own code
under my certificate?
I hope for this sake there is another answer...

"ben" wrote:

If you don't know for sure then it's a good guess that it does not do so.
It's not a simple process to do. Have you tried installing the security
certificate on the users machine? They won't be able to write anything
with
it, their machine will just recognize it as trusted.

--
When you lose your mind, you free your life.


"Nadine" wrote:

Hmm. good question. does my code modify any code. not sure what you
mean by
that. In some cases I've done: Application.ScreenUpdating = False.
Do you think that would do it?
I did lock the project for viewing, but the problem still happened.

"ben" wrote:

Two questions.
Does your code modify any code? and also try locking your project for
viewing.

--
When you lose your mind, you free your life.


"Nadine" wrote:

I have some simple VBA code in an excel file and when another user
does basic data entry in that file, he gets a information message:
You have
modified a signed project. You do not have the correct key to sign
this
project the signature will be discarded. But he isn't doing any
code work,
just data entry. Why is this happening?



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 158
Default Why is my digital signature is being discarded?

If you've protected it then, it can't be modified programmatically either. Strange. I've seen Excel 97 (a known bug I believe) insert lines into a locked project's modules just by opening and closing
the workbook.

What version of Excel and SP are you and he using?

ben wrote:
If you don't know for sure then it's a good guess that it does not do so.
It's not a simple process to do. Have you tried installing the security
certificate on the users machine? They won't be able to write anything with
it, their machine will just recognize it as trusted.

  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 216
Default Why is my digital signature is being discarded?

MS 2002, SP1

"Gareth" wrote:

If you've protected it then, it can't be modified programmatically either. Strange. I've seen Excel 97 (a known bug I believe) insert lines into a locked project's modules just by opening and closing
the workbook.

What version of Excel and SP are you and he using?

ben wrote:
If you don't know for sure then it's a good guess that it does not do so.
It's not a simple process to do. Have you tried installing the security
certificate on the users machine? They won't be able to write anything with
it, their machine will just recognize it as trusted.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Digital Signature padjo Excel Discussion (Misc queries) 4 June 13th 11 07:29 AM
digital certificate being discarded from a shared workbook TLS Excel Programming 0 June 4th 05 06:49 AM
Signature Will Be Discarded MT DOJ Help Desk[_3_] Excel Programming 3 August 31st 04 08:31 PM
Digital Signature Soniya Excel Programming 1 October 6th 03 01:22 PM
Digital Signature Robert[_12_] Excel Programming 0 August 28th 03 05:58 PM


All times are GMT +1. The time now is 05:35 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"