Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 219
Default Upgrade to 2003, strange stuff in Immediate Window

Just upgraded to 2003 (I know, I work for the state), and now I'm seeing
the following "stuff" in the Immediate Window when I first open the VBE

[SetupFunctionIDs]
[PickPlatform] <
[PickPlatform]
[VerifyOpen] <
[VerifyOpen]

Is this useful somehow? If so, what does it mean?
Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,420
Default Upgrade to 2003, strange stuff in Immediate Window

It is some debugging code that the MS developers left in the VBA Analysis
Toolpak addin.

--
__________________________________
HTH

Bob

"salgud" wrote in message
. ..
Just upgraded to 2003 (I know, I work for the state), and now I'm seeing
the following "stuff" in the Immediate Window when I first open the VBE

[SetupFunctionIDs]
[PickPlatform] <
[PickPlatform]
[VerifyOpen] <
[VerifyOpen]

Is this useful somehow? If so, what does it mean?
Thanks in advance.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default Upgrade to 2003, strange stuff in Immediate Window

Hi,

It's all debug code form the analysis toolpak VBA addin. AFAIK it's debug
messages that should have been removed.

The < means process started
the means process finished

Mike

"salgud" wrote:

Just upgraded to 2003 (I know, I work for the state), and now I'm seeing
the following "stuff" in the Immediate Window when I first open the VBE

[SetupFunctionIDs]
[PickPlatform] <
[PickPlatform]
[VerifyOpen] <
[VerifyOpen]

Is this useful somehow? If so, what does it mean?
Thanks in advance.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default automatic confirmation of delete etc

I have a vba procedure that deletes "n" number of sheets; every time it
deletes one it forces me to respond manually to confirm if i want to go ahead
with the deletion.

Once the procedure is completed with nw information i want to save the file;
again I'm forced to intervene to confirm.

How can i avoid these interventions/

With thanks

Dave
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 219
Default Upgrade to 2003, strange stuff in Immediate Window

Thanks to both of you.


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,117
Default automatic confirmation of delete etc

near the beginning of your procedure enter:
Application.DisplayAlerts = False

and near the end:
Application.DisplayAlerts = True

hope that helps
:)
susan



On Jan 15, 1:27*pm, dave glynn wrote:
I have a vba procedure that deletes "n" number of sheets; every time it
deletes one it forces me to respond manually to confirm if i want to go ahead
with the deletion.

Once the procedure is completed with nw information i want to save the file;
again I'm forced to intervene to confirm.

How can i avoid these interventions/

With thanks

Dave


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default automatic confirmation of delete etc

Application.DisplayAlerts = False
Delete the sheets
Save the file
Application.DisplayAlerts = True


Gord Dibben MS Excel MVP

On Thu, 15 Jan 2009 10:27:03 -0800, dave glynn wrote:

I have a vba procedure that deletes "n" number of sheets; every time it
deletes one it forces me to respond manually to confirm if i want to go ahead
with the deletion.

Once the procedure is completed with nw information i want to save the file;
again I'm forced to intervene to confirm.

How can i avoid these interventions/

With thanks

Dave


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
How do I upgrade to 2003 shapiro Excel Discussion (Misc queries) 4 December 18th 06 07:59 PM
Strange window behavior Dave Peterson[_5_] Excel Programming 0 December 14th 04 01:02 AM
Strange window behavior Jim Cone Excel Programming 1 December 13th 04 03:19 PM
Strange window behavior Frank Kabel Excel Programming 1 December 13th 04 02:02 PM
Strange code showing up in Immediate Window tod Excel Programming 3 March 5th 04 09:37 PM


All times are GMT +1. The time now is 11:26 PM.

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"