ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Upgrade to 2003, strange stuff in Immediate Window (https://www.excelbanter.com/excel-programming/422516-upgrade-2003-strange-stuff-immediate-window.html)

salgud

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.

Bob Phillips[_3_]

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.




Mike H

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.


dave glynn

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

salgud

Upgrade to 2003, strange stuff in Immediate Window
 
Thanks to both of you.

Susan

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



Gord Dibben

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




All times are GMT +1. The time now is 03:39 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com