Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 121
Default security warning

Is there a way to prevent the security warning box from showing up and
stopping the flow of the program without having to give up the security?
I want it to apply only to my little app, not to Excel in general.
Thank you
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 130
Default security warning

In that case, about the only way would be to have a digital signiture
applied to your application. I have attempted to use the self signing
method that comes with MS Office, but it has served me no purpose as I still
ran into the same issue, due to the fact that the self signing method is
still considered as "NOT" trusted. Therefore, if one is needed, you about
would need to get a digital signiture from a vendor (Certificate
Authorization) that issues such digital signitures, which is not cheap by
any means, as it can cost you something like $100 per project or might be
able to get by as small as $400 per year.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"Joanne" wrote in message
...
Is there a way to prevent the security warning box from showing up and
stopping the flow of the program without having to give up the security?
I want it to apply only to my little app, not to Excel in general.
Thank you



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default security warning

I think what you want is to put this in your macro before any command that
brings up an alert.

Application.DisplayAlerts = False


"Joanne" wrote:

Is there a way to prevent the security warning box from showing up and
stopping the flow of the program without having to give up the security?
I want it to apply only to my little app, not to Excel in general.
Thank you

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 130
Default security warning

I would hardly think this would work as this is a security matter and Excel
will catch any VBA stuff before it would even attempt to execute the codes,
thus the warning box would still come up prior to this code within her app
being executed.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"barnabel" wrote in message
...
I think what you want is to put this in your macro before any command that
brings up an alert.

Application.DisplayAlerts = False


"Joanne" wrote:

Is there a way to prevent the security warning box from showing up and
stopping the flow of the program without having to give up the security?
I want it to apply only to my little app, not to Excel in general.
Thank you



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default security warning

Well since she said "security warnings" and "stopping the flow" I am assuming
that she is talking about the messages that you are deleting a sheet or
overwriting a file not macros are not enabled

"Ronald Dodge" wrote:

I would hardly think this would work as this is a security matter and Excel
will catch any VBA stuff before it would even attempt to execute the codes,
thus the warning box would still come up prior to this code within her app
being executed.

--

Sincerely,

Ronald R. Dodge, Jr.
Master MOUS 2000

"barnabel" wrote in message
...
I think what you want is to put this in your macro before any command that
brings up an alert.

Application.DisplayAlerts = False


"Joanne" wrote:

Is there a way to prevent the security warning box from showing up and
stopping the flow of the program without having to give up the security?
I want it to apply only to my little app, not to Excel in general.
Thank you






  #6   Report Post  
Posted to microsoft.public.excel.programming
XP XP is offline
external usenet poster
 
Posts: 389
Default security warning

Hi Joanne,

Yes, you can. But, you would need a second loading file for distribution. If
you use automation to open an Excel file, security (and the shift key by
pass) is bypassed and all macros run like normal, even if the user has
security set to Very High.

The trick is to have a VBScript loading file that the user opens first, this
file then uses automation to open the real XL file which can be stored in a
shared area on the network. Distribute the VBScript file to the users (all
users need permission to access the shared network area) and you're done.

HTH

"Joanne" wrote:

Is there a way to prevent the security warning box from showing up and
stopping the flow of the program without having to give up the security?
I want it to apply only to my little app, not to Excel in general.
Thank you

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
Security Warning... In-Thought Links and Linking in Excel 0 August 21st 09 05:56 PM
Get rid of security warning EllenM Excel Programming 5 March 2nd 07 06:06 PM
xla security warning Arnaud Excel Programming 1 January 31st 07 05:51 PM
security warning [email protected] Excel Programming 9 September 12th 06 05:17 PM
ADO Security Warning Martin Eckart Excel Programming 1 January 29th 04 04:35 AM


All times are GMT +1. The time now is 06:12 PM.

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

About Us

"It's about Microsoft Excel"