backgroundworker
c# application working on development machine, fails on non-development machine
this problem has me baffled. I\'m writing an application which is supposed to take information from a form, pass it to a background worker which then a) writes the information to a local xml file and[详细]
2023-03-10 21:53 分类:问答C# Background Worker Question
I have a background worker that does basically the following: Find next available file and mark it as in process[详细]
2023-03-10 19:52 分类:问答Working with Backgroundworker - Results
Im trying to get the results from a background worker. I am returning a List of process names back to the main thread to display the processes in a listbox. This开发者_如何学C is all well and good , i[详细]
2023-03-10 19:29 分类:问答How do I queue database access?
I have a GUI where different parts of the information shown is extracted from a database. In order for the GUI not to freeze up I\'ve tried putting the database queries in BackgroundWorkers. Because t[详细]
2023-03-10 11:23 分类:问答How to cancel BackgroundWorker in WPF without DoEvents
I have a search box that works great in WinForms, but is giving me trouble in WPF. It works by starting a search each time a letter is pushed, similar to Google.[详细]
2023-03-09 20:19 分类:问答WebClient.DownloadFile in BackgroundWorker performance unacceptable
I have a WinForms application that needs to download many (tens of thousands) fairly large (multi-MB) files per day. I wrote a simple test using the following code:[详细]
2023-03-09 19:44 分类:问答The right way to implement a progressbar in C#
I\'m learning winforms and I have set myself a simple goal of making a progressbar that goes from empty to full. Here\'s my misshapen attempt:[详细]
2023-03-09 16:12 分类:问答How to update control in a thread safe way
I have a windows.form.userControl class and at run time i want to add some linklabels dynamically. When I apply this code snippet inside Load method it work perfectly.[详细]
2023-03-09 00:38 分类:问答Should verification emails be processed in the background?
Should verification emails be processed / sent in the background using some kind of background job (Resque, Delayed_Job, etc)?[详细]
2023-03-08 20:45 分类:问答Implementing BackgroundWorker's RunWorkerCompleted using Tasks
I have a WPF MVVM application.In one of the ViewModels, I have the following: this.GoCommand = new RelayCommand(() =>[详细]
2023-03-08 13:01 分类:问答