Matt Dillard

4,143
reputation
214 views

Registered User

name Matt Dillard
member for 1 year
seen 7 hours ago
website
location Plano, TX
age 30

I'm a software developer for Corepoint Health, where I regularly write code in C++, VB6 and Flex to serve the health care IT industry.

I also spent several years working for Garmin, where I did Windows programming in C++ and Mac development in Cocoa.

Nowadays I spend my time away from work laughing with my wife and kids and getting to know my Creator a bit more each day.

16h
asked Recommendation for a 2D screen ruler
Dec
2
accepted FlashVars in Flex, getting error?
Dec
2
answered FlashVars in Flex, getting error?
Nov
26
awarded  Guru
Nov
21
awarded  Good Answer
Nov
9
revised Understanding reference counting with Cocoa / Objective C
Fixed formatting typo
Nov
9
answered What does the retain message mean?
Nov
6
answered Flex: List displaying wrong until scrolled.
Oct
28
accepted Add / Remove from XMLList while in a loop.
Oct
28
comment Add / Remove from XMLList while in a loop.
You're right. If you look at the Flex docs for XMLList, you'll notice there is no appendChild() method. The XML datatype DOES have an appendChild() method, however. What's happening here is that Flex is trying to help you out - the compiler will let you make calls against an XMLList as though you were talking to just a single XML element, but that only works at runtime if there is indeed just one element in the list. Instead, just use an XMLListCollection, which provides better support anyway.
Oct
28
revised Add / Remove from XMLList while in a loop.
Modified to use XMLListCollection
Oct
28
answered Add / Remove from XMLList while in a loop.
Oct
28
revised Add / Remove from XMLList while in a loop.
formatting
Oct
23
awarded  Nice Answer
Oct
14
comment How to find an ArrayCollection item with a specific property value?
Wow, neat use of that function factory. I've always felt there must be a way to customize the callback routine; this is really elegant.
Oct
14
answered How to find an ArrayCollection item with a specific property value?
Oct
13
answered How to find the length of an LPCSTR
Oct
7
comment Using Subversion with VB6
Unfortunately, the svn:needs-lock property must be set on each .frx file individually. With a little script work, I'm sure a pre-commit hook could be written that automatically sets that property on all .frx files, but I haven't gone that far.
Aug
21
awarded  Nice Answer
Aug
13
comment Does dispatching an event interrupt a function?
For what it's worth, after some experimentation, a button press event will not interrupt another running function. All of the button clicks are queued up and handled after the running function finishes running.
Aug
13
comment Does dispatching an event interrupt a function?
Your example is correct - my comment did not fully communicate my assertion. If some external event is fired (as described by the original question), then I do not believe that event will be processed until the current routine completes. If foo() itself fires an event, then flow proceeds exactly as you describe it - the event is handled immediately on the single (main) thread. I'll admit that this is worth verifying. It would be pretty simple to create a sample app to try it out; if I have time later today, I'll do that.
Aug
13
comment Does dispatching an event interrupt a function?
Be that as it may, the answer to the user's particular question is still "No, it will not be interrupted". The user's event handler for the brand new event will still not be executed until foo() completes.
Aug
12
answered Does dispatching an event interrupt a function?
Aug
10
awarded  Yearling
Aug
7
revised How do I determine the HResult for a System.IO.IOException?
Added a short code sample
Aug
1
accepted Subversion - How do I commit? I updated one of my project directories to a previous revision
Jul
26
answered Subversion - How do I commit? I updated one of my project directories to a previous revision
Jul
21
awarded  
Jun
30
awarded  Popular Question
Jun
14
awarded  Popular Question