Search results for query: *

  1. S

    Asynchronous Message displayed on dataset.fill

    I downloaded the source code from the above mentioned web site and added it to my project. So I assume its just a class that I have added to my project, but it works great. Are there any plans in the future from microsoft to include more information about the data being downloaded to the...
  2. S

    Asynchronous Message displayed on dataset.fill

    I am actually still using .NET 1.1, I just added the background worker class to my project and I'm able to use that. Speaking of progress bars, is there anyway to determine how much of a dataset has been downloaded to the system, and the total size of the dataset? I would like to display a...
  3. S

    Asynchronous Message displayed on dataset.fill

    I found some code that says it is the background worker class for .NET 2005. I implemented this code, and it worked perfectly. I could not get my above code to function properly however, as it never came back to the original thread. The background code works only if I set my datagrid.datasource...
  4. S

    Asynchronous Message displayed on dataset.fill

    I agree with you, my question is how. I am using the above code, and it seems to fill the dataset on a seperate thread, which is what I want. Once that thread is done running, it comes back to my remind result method(asyncCallBack), which runs. Once that is done running, the system freezes. It...
  5. S

    Asynchronous Message displayed on dataset.fill

    I have a client that connects to a remote SQL Server database. When I call dataset.fill(ds), it can take a couple of minutes to retrieve all of the data. I would like to open a form or message with an animated .gif that says "Downloading Data", or something of that nature. Similar to a file copy...
Back
Top