Thread safety of Excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using Office 2000 on Windows XP and noticed some peculiar behaviour.
When I use CPU intensive VB-code with Excel, something (I think Windows XP; I
am not sure) will spawn an extra thread for Excel. In the taskmanager I can
see I get extra instances for my Excel stuff.

This however causes some kind of loop, so that Excel never finishes the code.

This is also not 100% predictable: the same code will sometimes execute
succesfully and sometimes will spawn an extra thread and loop indefinitly.
 
It appears your code has a never-ending loop which continues to re-cycle.
This is probably inside of and IF statement so that sometimes the conditions
of the IF statement are not met so the code doen't enter the loop in those
cases.

You can find such a loop by using F8 to step thru the code and by using
break points in the code to stop it at intervals.
 
Are you using Automation in your code? Are you starting another instance of
Excel?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top