I
inadsad
Greetings Group,
I have a form in VS2005 with serveral controls bounded to a
dataset and two buttons. On Add button click event
I set the window title name as follow
Me.text = Me.text + sNewRecord
the above line would set the CPU usage to 90% on multiple add button
clicks. The only way to reduce the CUP usage is to add doevents:
Me.text = Me.text + sNewRecord
Application.DoEvents <----------- not sure ???
Not sure why setting the me.text would cause so much CUP Usage. I
would appreciate feedback.
Ian
I have a form in VS2005 with serveral controls bounded to a
dataset and two buttons. On Add button click event
I set the window title name as follow
Me.text = Me.text + sNewRecord
the above line would set the CPU usage to 90% on multiple add button
clicks. The only way to reduce the CUP usage is to add doevents:
Me.text = Me.text + sNewRecord
Application.DoEvents <----------- not sure ???
Not sure why setting the me.text would cause so much CUP Usage. I
would appreciate feedback.
Ian