M
M. Said
First, let me start by saying I am new CF.
I have a class DB.cs that does Database function. this class has a
method called processRecords().
I also have 2 forms, F1.cs and F2.cs, both have a button and a progress bar.
When I press the button on either form, I would like to execute
DB.processRecords() (in a thread if possible - not sure about this yet)
and update the UI progressBar in the form that called DB.processRecords().
How is this done in CF without using Callbacks? any examples?
Thanks in advance.
M. Said
I have a class DB.cs that does Database function. this class has a
method called processRecords().
I also have 2 forms, F1.cs and F2.cs, both have a button and a progress bar.
When I press the button on either form, I would like to execute
DB.processRecords() (in a thread if possible - not sure about this yet)
and update the UI progressBar in the form that called DB.processRecords().
How is this done in CF without using Callbacks? any examples?
Thanks in advance.
M. Said