0
votes
1answer
72 views
Windows Mobile 6.1 problems with async web service call and updating the UI
I'm calling and getting results back from an async web service call that provides an array of objects to display in a grid on a hand-held windows mobile.
At one point I had the UI …
0
votes
2answers
25 views
Ajax async option throwing me for a loop
I'm using ajax to do some validation on some dates passed (basically making sure that the first date/time occurs before the 2nd date/time, and neither are blank).
If I have async …
0
votes
3answers
24 views
Asynchronus File Upload with StateServer Mode
Hi Friends,
I want to implement Asynchronus File Upload.
I've tried ajax:AsyncFileUpload control. It's working fine only with InProc Mode.
But I'm using StateServer Mode.
Any h …
2
votes
1answer
83 views
XCode & Interface Builder not in sync anymore
Hello,
it seems to me that ever since a recent upgrade to the latest XCode, some behavior changed.
What Used to Be:
Whenever I did a "Build and Run", XCode would ask me to save …
1
vote
4answers
213 views
Is there any way to make an asynchronous function call from Python [Django]?
Srry for my English.
I am creating some Django application, that does various long computations with uploaded files. I don't want make user wait for the file to be handled - i jus …
0
votes
3answers
39 views
Should I provide Sync or Async methods for developers in my IMDB API library?
I'm going to make a DLL Library that'll alow developers to search and access IMDB movie pages.
How should I handle the freezing in the GUI, should I use async methods, or should I …
2
votes
2answers
220 views
Silverlight WCF Proxy async only?
Why do the Silerlight-generated WCF proxy class(es) offer only async calls?
There are cases where I don't really need the async pattern (for example in a BackgroundWorker)
EDIT : …
1
vote
2answers
38 views
Could you give me an example of a WebClient downloading a website source code and filtering something asynchronously as to not freeze the GUI?
I've read some of the articles on MSDN but they're not quite what I need right now.
Could you show me a simple application that downloads a website asyncchronously (WebClient.Down …
1
vote
1answer
24 views
What is the purpose of Dispatcher CheckAccess?
On Async webservice on complete event, there is a code like belows.
Debug.Assert(Dispatcher.CheckAccess()); // don't do marshaling here- it's already runinng on UI thread!
Does a …
0
votes
2answers
38 views
Would this Asynchronous download work? WebClient.DownloadDataAsyn() problem.
I have this class called SiteAsyncDownload.cs
Here's the code:
public class SiteAsyncDownloader
{
WebClient Client = new WebClient();
string SiteSource = null;
/// & …
1
vote
4answers
193 views
Looking for OO gurus, need some help in the design of my programming logic. Nothing fancy, just new to it.
I'll post my entire class and maybe someone with MUCH more experience can help me design something better. I'm really new to doing things Asynchronously, so I'm really lost here. H …
1
vote
1answer
35 views
Trouble with WebClient.DownloadDataAsync(). Not downloading the data?
Hello, here's my code:
public string[] SearchForMovie(string SearchParameter)
{
WebClientX.DownloadDataCompleted += new
DownloadDataCompletedEventHandler(We …
1
vote
2answers
113 views
How to use the WebClient.DownloadDataAsync() method in this context?
My plan is to have a user write down a movie title in my program and my program will pull the appropiate information asynchronously so the UI doesn't freeze up.
Here's the code:
…
0
votes
1answer
11 views
Invoke after async call changes two controls
I cannot find the solution for this problem, here is the simplified example:
On a windows form I have 2 text boxes (invokeText1, invokeText2) and two buttons (invokeButton1, invoke …
0
votes
2answers
171 views
How to check internet access on Android? InetAddress never timeouts…
Hi,
I got a AsyncTask that is supposed to check the network access to a host name. But the doInBackground is never timed out. Anyone have a clue?
public class HostAvailabilityTa …
