4
votes
2answers
214 views
If MessageBox()/related are synchronous, why doesn’t my message loop freeze?
Why is it that if I call a seemingly synchronous Windows function like MessageBox() inside of my message loop, the loop itself doesn't freeze as if I called Sleep() (or a similar function) instead? To …
3
votes
3answers
100 views
How to cleanly get user input from the middle of model’s method in Model-View-Viewmodel architecture?
Hi everyone, I am writing an app that listens on a network connection, and when some data arrive, it replies back, and depending on incoming data, it may need to ask user (show dialog) before replying …
3
votes
2answers
1k views
How to call web service using vbscript (synchronous) ?
Actually there many examples and I have used one of them. But it works asynchronous, I mean it is not waiting the function that I called to finish.
function ProcessSend()
Set oXMLHTTP = …
3
votes
5answers
1k views
Synchronous dialogs in Flex?
How can I open a synchronous dialog in Flex? I need to call a function from an External Interface (JavaScript) that will open a simple dialog in the Flex application and returns an value according to …
2
votes
4answers
109 views
How to force Sequential Javascript Execution?
Ive searched a lot of places for the answer to this seemingly simple problem, but Ive only found rather complicated answers involving classes, event handlers and callbacks (which seem to me to be a …
1
vote
5answers
106 views
How do I make an eventhandler run asynchronously?
I am writing a Visual C# program that executes a continuous loop of operations on a secondary thread. Occasionally when that thread finishes a task I want it to trigger an eventhandler. My program …
1
vote
1answer
32 views
How do I run event triggers and their bound methods synchronously using jQuery?
The function below is called upon page ready, and is designed to mimic clicks through various anchor links, and to trigger those anchors' bound methods so as to reproduce the same DOM that would be …
1
vote
3answers
54 views
Waiting until a file is available for reading with Win32
I'm watching a directory by calling ReadDirectoryChangesW synchronously. When a new file is available, I try to access it immediately with CreateFile with GENERIC_READ and FILE_SHARE_READ, but this …
1
vote
1answer
403 views
How do I ensure a Flex dataProvider processes the data synchronously?
I am using an component, and currently have a dataProvider working that is an ArrayCollection (have a separate question about how to make this an XML file... but I digress).
Variable declaration …
1
vote
1answer
693 views
synchronous jquery json request
I need to make a synchronous request to the last.fm API, but when I use GET and json together, the request becomes asynchronous.
my code:
$.ajax({
async: false,
dataType: "json",
url: …
1
vote
2answers
242 views
Javascript - synchronizing after asynchronous calls
Hello,
I have a Javascript object that requires 2 calls out to an external server to build its contents and do anything meaningful. The object is built such that instantiating an instance of it will …
1
vote
2answers
467 views
TSQL make EXECUTE statement synchronous
I have two TSQL EXEC statements
EXECUTE (N'MyDynamicallyGeneratedStoredProcedure') -- return 0 on success
SELECT @errCode = @@ERROR ;
IF (@errCode = 0)
BEGIN
EXEC 'A Sql Statement using …
1
vote
7answers
256 views
How to guarantee a function will not be entered again if it does not return within a thread?
I don't want the function to be entered simultaneously by multiple threads, neither do I want it to be entered again when it has not returned yet. Is there any approach to achieve my goal? Thank you …
1
vote
2answers
2k views
How I can implement sync calls to WCF services in SIlverlight?
Hi!
Sometimes I need to call WCF service in Silverlight and block UI until it returns. Sure I can do it in three steps:
Setup handlers and block UI
Call service
Unblock UI when everything is done.
…
0
votes
3answers
69 views
Synchronous vs Asynchronous languages
Hi All,
In last 1 year I was working on Java and flex. While coding flex, most of my code parts went for a toss since its asynchronous. It made me to think about the real advantages and disadvantages …
