View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
BSc Chem Eng Rick BSc Chem Eng Rick is offline
external usenet poster
 
Posts: 118
Default Enable Multiple events in the same time

You need to figure out hoq to programmatically yield to the other system
operations in c sharp. I wish I could help but I have little training in c
sharp.

"rchiuhk" wrote:

Dear Rick,

My Buttons in excel is call dll function in c sharp.
In c sharp class library programming, no
system.windows.form.application.doevents.

How to do then??

Please help!!! Is there any method???



"BSc Chem Eng Rick" wrote in
message ...
Try using the DoEvents statement in your procedures. Make sure you read up
and understand how it works so you put it in the correct place.

If this helps please click "Yes"
<<<<<<<<<<

"rchiuhk" wrote:

Dear all,

I have three buttons on the excel.
When One button is clicked, it will process a lot running job.
Is it possible to click second button to run another process as the
cursor
is in running state that I cannot click on second button?

Please help