User Lou Franco - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:49:51Z http://stackoverflow.com/feeds/user/3937 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1795817/is-there-an-existing-deepzoom-equivalent-for-winforms/1796747#1796747 0 Answer by Lou Franco for is there an existing deepzoom equivalent for winforms ? Lou Franco 2009-11-25T12:56:01Z 2009-11-25T12:56:01Z <p>Disclaimer: I work at Atalasoft</p> <p>Do you need DeepZoom or just zooming into an image?</p> <p>If you just need image zooming, our WPF image controls support that. <a href="http://atalasoft.com/download" rel="nofollow">Download DotImage</a>, start an evaluation and then give us a call and we'll help you implement it in your project today (request a 1-on-1 coding session with me -- Lou).</p> <p>If you need DeepZoom, you'll have to download the zoomed images on the zoom in event. It's not hard to write if you already have the image repository -- we'd be happy to help you implement that with DotImage.</p> http://stackoverflow.com/questions/1796587/how-to-use-stdwstring-with-stdistringstream/1796617#1796617 1 Answer by Lou Franco for How to use std::wstring with std::istringstream? Lou Franco 2009-11-25T12:30:39Z 2009-11-25T12:30:39Z <p>My compiler has wistringstream -- this is all it is:</p> <p><code>typedef basic_istringstream&lt;wchar_t&gt; wistringstream;</code></p> http://stackoverflow.com/questions/1755816/c-delegate-with-string-reference-to-c-callback/1767119#1767119 0 Answer by Lou Franco for C# delegate with string reference to c++ callback Lou Franco 2009-11-19T22:46:14Z 2009-11-19T22:46:14Z <p>I don't believe that the marshalling can deal with std::string. I think you need to make your own callback that passes char * and then write the glue code between the two.</p> <p>Also, once the delegate is marshalled into a callback, that callback does not count as a reference to the object that the delegate might have been made from. So if the delegate is not a static method, you need to stuff it somewhere for the lifetime of the unmanaged callback.</p> http://stackoverflow.com/questions/1763210/can-i-hide-or-make-my-iphone-application-unsearchable-on-the-app-store/1763256#1763256 1 Answer by Lou Franco for Can I hide or make my iphone Application unsearchable on the App Store? Lou Franco 2009-11-19T13:21:43Z 2009-11-19T13:21:43Z <p>Apple sells special developer licenses if you want to control the installation. They are meant for Enterprises to develop and deploy applications for only their use. Here's an article about it:</p> <p><a href="http://www.infoworld.com/t/platforms/new-iphone-enterprise-developer-program-299-musings-about-iphone-app-licensing-648" rel="nofollow">http://www.infoworld.com/t/platforms/new-iphone-enterprise-developer-program-299-musings-about-iphone-app-licensing-648</a></p> http://stackoverflow.com/questions/1758805/problems-with-updating-records-in-django-admin/1758834#1758834 1 Answer by Lou Franco for Problems with updating records in django-admin Lou Franco 2009-11-18T20:28:55Z 2009-11-18T20:28:55Z <ol> <li>On the field, put <code>null=True</code> in the field constructor if the field is not required. Edit: commenter says <code>blank=True</code> -- he's probably right -- I don't have the docs in front of me.</li> <li>It does an insert if the ID is empty and an update if the id has a value. Not sure where the save you are talking about is happening, but that info might help. (there's a deleted answer that points out that the exclude('id') is probably causing this problem -- I think that's right as well)</li> </ol> <p>Also, I agree about the docs. If you can read python, I highly suggest just trying to read the Django source code for the area you want to figure out. The source is some of the nicest, most readable source I've ever read. I've never had a problem just jumping in and reading it -- it's almost as good as a doc.</p> http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#1758782 0 Answer by Lou Franco for Best policy for "article's photo" in a magazine online? Lou Franco 2009-11-18T20:20:01Z 2009-11-18T20:20:01Z <p>Use ImageMagick on the server to create the other two images.</p> <ul> <li><a href="http://php.net/manual/en/book.imagick.php" rel="nofollow">http://php.net/manual/en/book.imagick.php</a></li> <li><a href="http://www.evolt.org/node/55650" rel="nofollow">http://www.evolt.org/node/55650</a></li> </ul> http://stackoverflow.com/questions/1701342/running-numbers-in-sql/1701348#1701348 0 Answer by Lou Franco for Running numbers in SQL Lou Franco 2009-11-09T14:34:29Z 2009-11-09T14:34:29Z <p>It depends on your DBMS -- in Oracle, you can use rownum in the select. There is no standard SQL way, but most DBMS's support some way to do it.</p> <p>Here's mysql:</p> <p><a href="http://jimlife.wordpress.com/2008/09/09/displaying-row-number-rownum-in-mysql/" rel="nofollow">http://jimlife.wordpress.com/2008/09/09/displaying-row-number-rownum-in-mysql/</a></p> <p>Here's SQL Server</p> <p><a href="http://samsudeenb.blogspot.com/2008/09/how-to-generate-rownum-in-sql-server.html" rel="nofollow">http://samsudeenb.blogspot.com/2008/09/how-to-generate-rownum-in-sql-server.html</a></p> http://stackoverflow.com/questions/1701298/how-to-restrict-access-to-my-dll/1701336#1701336 3 Answer by Lou Franco for How to restrict access to my DLL Lou Franco 2009-11-09T14:33:05Z 2009-11-09T14:33:05Z <p>It depends on how much you care. A simple way is to make everything internal and then use friend assemblies to allow your assembly to call it.</p> <p><a href="http://msdn.microsoft.com/en-us/library/0tke9fxk.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0tke9fxk.aspx</a></p> <p>Most things you would do can be defeated, but if someone wants to call, they will figure out a way to do it.</p> http://stackoverflow.com/questions/1683758/how-do-i-access-to-an-address-in-memory-with-c/1683766#1683766 1 Answer by Lou Franco for How do I access to an address in memory with c#? Lou Franco 2009-11-05T21:29:20Z 2009-11-05T21:29:20Z <p>Use unsafe</p> <p><a href="http://msdn.microsoft.com/en-us/library/28k1s2k6.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/28k1s2k6.aspx</a></p> http://stackoverflow.com/questions/1683706/when-are-two-enums-equal-in-c/1683732#1683732 1 Answer by Lou Franco for When are two enums equal in C#? Lou Franco 2009-11-05T21:24:17Z 2009-11-05T21:24:17Z <p>If you want them to match, cast them to int</p> <pre><code>Assert.AreEqual((int)enumA.one,(int)enumB.one); </code></pre> <p>would pass because they are both the first listed. If you wanted them to match because they both say "one" then you need to use reflection.</p> http://stackoverflow.com/questions/1651118/security-risks-of-using-eval-to-execute-user-input-in-javascript/1651130#1651130 2 Answer by Lou Franco for Security risks of using eval() to execute user input in JavaScript Lou Franco 2009-10-30T17:10:14Z 2009-10-30T17:10:14Z <p>It will be running on their own machine. Just don't let them save strings and send to other people -- also don't put the values in the URL via a GET (so that it can be emailed).</p> http://stackoverflow.com/questions/1637538/does-mac-os-x-have-a-better-installation-story-than-windows/1637578#1637578 3 Answer by Lou Franco for Does Mac OS X have a better installation story than Windows? Lou Franco 2009-10-28T14:24:37Z 2009-10-28T14:24:37Z <p>This is a really thoughtful blog on that topic from John Gruber (daringfireball.net)</p> <p><a href="http://daringfireball.net/2009/09/how%5Fshould%5Fmac%5Fapps%5Fbe%5Fdistributed" rel="nofollow">http://daringfireball.net/2009/09/how%5Fshould%5Fmac%5Fapps%5Fbe%5Fdistributed</a></p> <p>The story is weird -- many installers just give you a .app file that the user is expected to copy to their Applications directory. It's simple, but do novice users understand? And there are actual installers as well.</p> http://stackoverflow.com/questions/1628842/image-format-question/1632807#1632807 0 Answer by Lou Franco for Image format question Lou Franco 2009-10-27T18:36:37Z 2009-10-27T18:36:37Z <p>I don't know DevIL, but nearly any imaging library is going to provide you with an image object that has some concept of Pixel Format. The pixel format tells you how the image is laid out in memory. Looking quickly at the docs, I see that <code>IlTexImage</code> has a property called <code>Format</code> which can be one of <code>IL_COLOUR_INDEX</code>, <code>IL_RGB</code>, <code>IL_RGBA</code>, etc. The docs say </p> <blockquote> <p>The format of the image data. Formats accepted are listed here and are self-explanatory</p> </blockquote> http://stackoverflow.com/questions/1632484/c-initialization-question/1632550#1632550 0 Answer by Lou Franco for C++ initialization question Lou Franco 2009-10-27T17:50:47Z 2009-10-27T17:50:47Z <p>Just to be clear about what's happening (with regards to your 2nd question)</p> <p><code>std::map&lt; std::string, std::string &gt; m_someMap</code> creates a stack variable called m_someMap and the default constructor is called on it. The rule for C++ for all of your objects is if you go:</p> <pre><code>T varName; </code></pre> <p>where T is a type, varName is default constructed.</p> <pre><code>T* varName; </code></pre> <p>should be explicitly assigned to NULL (or 0) -- or nullptr in the new standard.</p> http://stackoverflow.com/questions/1625697/one-afternoon-to-do-networking-what-do-you-all-suggest/1625783#1625783 0 Answer by Lou Franco for One afternoon to do networking, what do you all suggest? Lou Franco 2009-10-26T16:31:34Z 2009-10-26T16:31:34Z <p>I'm not in NYC now, but I worked there for the first 10 years of my career. The NYC tech job market is driven by the financial industry, which isn't doing so hot right now. </p> <p>I would definitely call recruiters ASAP and they might be able to set something up for a Friday. Also go look on job boards like JoelOnSoftware and 37Signals and see if you see anything.</p> <p>You do not have zero academic qualification -- don't sell yourself short. Not everyone is looking for CS majors -- figure out how to sell the benefit of the degree you have.</p> http://stackoverflow.com/questions/1625712/waiting-for-iphone-memory-management/1625743#1625743 0 Answer by Lou Franco for Waiting for iPhone Memory Management Lou Franco 2009-10-26T16:23:49Z 2009-10-26T16:23:49Z <p>I wrote this blog about some techniques for tracking this down:</p> <p><a href="http://loufranco.com/blog/files/debugging-memory-iphone.html" rel="nofollow">http://loufranco.com/blog/files/debugging-memory-iphone.html</a></p> <p>The upshot is that you can run the application in a mode that will detect a lot of common memory problems.</p> http://stackoverflow.com/questions/1615605/how-do-i-update-my-svn-working-copy-to-the-changes-from-one-specific-revision-an/1615661#1615661 1 Answer by Lou Franco for How do I update my SVN working copy to the changes from one specific revision, and not include previous revisions? Lou Franco 2009-10-23T20:15:58Z 2009-10-23T20:15:58Z <p>The trunk and your working copy are two different things -- I take it from this, that the trunk contains the revisions you want and some that you don't want, and that you don't have branches.</p> <p>One thing to do is to branch from the trunk at the point that your current working copy is from. Then merge the one revision you want into that branch and work off the branch. When you are ready, merge back into the trunk.</p> http://stackoverflow.com/questions/1614533/strange-problem-comparing-floats-in-objective-c/1614552#1614552 1 Answer by Lou Franco for Strange problem comparing floats in objective-C Lou Franco 2009-10-23T16:29:15Z 2009-10-23T16:29:15Z <p>Generally, in any language, you can't really count on equality of float-like types. In your case since it looks like you have more control, it does appear that 0.1 is not float by default. You could probably find that out with sizeof(0.1) (vs. sizeof(self.scroller.currentValue).</p> http://stackoverflow.com/questions/1609440/camel-case-method-names/1609469#1609469 1 Answer by Lou Franco for camel case method names Lou Franco 2009-10-22T19:33:30Z 2009-10-22T19:33:30Z <p>Usually you tend to follow the one that your framework uses. So Java developers tend to use lowercase to start, and .NET developers tend to use uppercase to start.</p> http://stackoverflow.com/questions/1607479/whichddatabase-would-prove-efficient/1607533#1607533 3 Answer by Lou Franco for WhichdDatabase would prove efficient? Lou Franco 2009-10-22T14:15:32Z 2009-10-22T14:15:32Z <p>Everything works with Java, and you can get support for anything if you pay for it. </p> <p>My personal experience:</p> <ol> <li><p>Are your servers Windows machines? If not, MSSQL is out. Otherwise MSSQL has pretty decent GUIs. I haven't tried working with it and Java -- the Visual Studio support for developing with it is very good.</p></li> <li><p>I haven't found Oracle to be worth the cost. I worked at a place that paid for support and still it took them forever to acknowledge data-munging bugs in the JDBC driver (still not fixed, last I checked).</p></li> <li><p>My MySql usage is simple -- if you need complex functionality, check to make sure that it's supported</p></li> </ol> <p>My 2 cents: stick with MySql or Postgres, simple SQL and try not to make any stored procedures or use proprietary SQL. If you find that you outgrow it, it will be a trivial port.</p> <p>The more you try to take advantage of the proprietary features, the more you will be locked in. </p> http://stackoverflow.com/questions/1598207/odd-circular-dependency-issue/1598219#1598219 2 Answer by Lou Franco for Odd Circular Dependency Issue Lou Franco 2009-10-21T01:05:56Z 2009-10-21T01:05:56Z <p>replace:</p> <pre><code>Bullet(*this) fired_bullet; </code></pre> <p>with:</p> <pre><code>Bullet fired_bullet(*this); </code></pre> http://stackoverflow.com/questions/1593905/how-to-manipulate-an-image-at-pixel-level-in-c/1598028#1598028 1 Answer by Lou Franco for How to manipulate an image at pixel level in C? Lou Franco 2009-10-21T00:07:17Z 2009-10-21T00:07:17Z <p><a href="http://www.imagemagick.org/script/magick-wand.php" rel="nofollow">MagickWand</a> from ImageMagick is another good option</p> http://stackoverflow.com/questions/1594779/msvcr90d-dll-not-found-when-building-in-release/1594887#1594887 1 Answer by Lou Franco for Msvcr90d.dll not found when building in RELEASE Lou Franco 2009-10-20T14:10:39Z 2009-10-20T14:10:39Z <p>If you are getting the warning LNK 4098 during build, please see this</p> <p><a href="http://msdn.microsoft.com/en-us/library/6wtdswk0%28VS.71%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/6wtdswk0%28VS.71%29.aspx</a></p> <p>And follow the recommendations.</p> <p>Also, make sure that you chose the correct C/C++ runtime under the Code Generation tab (Multi-threaded DLL -- not Multithreaded Debug DLL)</p> http://stackoverflow.com/questions/1594395/are-there-any-programs-that-will-shrink-the-size-of-a-sql-script-file/1594406#1594406 1 Answer by Lou Franco for Are there any programs that will shrink the size of a sql script file? Lou Franco 2009-10-20T12:54:33Z 2009-10-20T12:54:33Z <p>SQL is much harder to shrink, the field, table names and commands need to be what they are. Plus, you wouldn't just want to rewrite the commands as something shorter because it could have implications on performance.</p> <p>Depending on the DBMS that you use, it may allow short names for commands, and then there might be a converter.</p> http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block/1590672#1590672 8 Answer by Lou Franco for Try-Catch and how throw work in catch block Lou Franco 2009-10-19T19:40:06Z 2009-10-19T19:40:06Z <p>No, it rethrows. Somewhere up the call stack needs to catch it.</p> <p>The <code>return false</code> is never reached.</p> http://stackoverflow.com/questions/1588441/c-composite-pattern-and-database-access/1588482#1588482 1 Answer by Lou Franco for C# Composite pattern and Database Access Lou Franco 2009-10-19T12:42:28Z 2009-10-19T12:42:28Z <p>Take a look at the <code>Proxy</code> pattern. Using it, you would put <code>PharmaProductProxy</code> objects in the tree that have the same interface as <code>PharmaProduct</code>, but lazy load themselves when they are accessed.</p> http://stackoverflow.com/questions/1574367/lnk4075-ignoring-editandcontinue-due-to-opticf-specification/1574433#1574433 1 Answer by Lou Franco for LNK4075: ignoring '/EDITANDCONTINUE' due to '/OPT:ICF' specification Lou Franco 2009-10-15T19:13:24Z 2009-10-15T19:13:24Z <p>You can either have "Edit and continue" support or optimizations. Usually, you put "Edit and continue" on debug builds, and optimizations on release builds.</p> <p>Edit and continue allows you to change code while you are debugging and just keep the program running. It's not supported if the code also has to be optimized.</p> http://stackoverflow.com/questions/1572804/do-i-need-to-call-graphics-dispose/1572823#1572823 1 Answer by Lou Franco for Do I need to call Graphics.Dispose()? Lou Franco 2009-10-15T14:40:31Z 2009-10-15T14:40:31Z <p>The rule with <code>Dispose()</code> is that if you created an object that is <code>IDisposable</code>, then you are supposed to call it. The best way is within a <code>using</code> block or a <code>finally</code>.</p> <p>It might be that you didn't need to do it, but Dispose() will decide that.</p> <p>If you got an object, but didn't call the constructor, then you need to check the documentation for the method that returned it to see if it expects you to call Dispose() or it will.</p> http://stackoverflow.com/questions/1572740/are-there-any-gui-toolkits-built-on-top-of-html-canvas-like-swing-swt-gtk-or-qt/1572807#1572807 0 Answer by Lou Franco for Are there any GUI toolkits built on top of HTML Canvas like swing,swt,gtk or qt? Lou Franco 2009-10-15T14:38:37Z 2009-10-15T14:38:37Z <p><a href="http://processingjs.org/" rel="nofollow">Processing.js</a> is built on top of canvas. It's not the same kind of abstraction as the ones you listed -- it's meant to be a port of <a href="http://processing.org/" rel="nofollow">Processing</a>.</p> http://stackoverflow.com/questions/1572586/c-how-to-deal-with-const-object-that-needs-to-be-modified/1572609#1572609 1 Answer by Lou Franco for C++: how to deal with const object that needs to be modified? Lou Franco 2009-10-15T14:07:18Z 2009-10-15T14:12:51Z <pre><code>const_cast&lt;type without const&gt;() </code></pre> <p>But, does <code>someMethod()</code> really return <code>const myType</code>? If so, you are making a reference to a temporary -- it will be destroyed and your reference will be bad. Change <code>myVar</code> to non-ref (so it copies) -- no need to declare it const in that case. Or, if <code>someMethod()</code> returns a reference, use the <code>const_cast</code> if you must (but you are changing something that <code>someMethod</code> thought wouldn't change).</p> http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#1758782 Comment by Lou Franco on Best policy for "article's photo" in a magazine online? Lou Franco 2009-11-19T17:32:14Z 2009-11-19T17:32:14Z It's up to you and how you code it. You could check to see if the result file exists and skip it. Probably the best thing to do is to create the 2 other images right after the original is uploaded -- then they are already there when the request comes in. http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#1758782 Comment by Lou Franco on Best policy for "article's photo" in a magazine online? Lou Franco 2009-11-19T12:57:42Z 2009-11-19T12:57:42Z When you call convert on the server, the output jpeg will be on the server, but you could copy it to a folder in your webroot and then put an img tag in the page that uses it. http://stackoverflow.com/questions/1758536/best-policy-for-articles-photo-in-a-magazine-online/1758782#1758782 Comment by Lou Franco on Best policy for "article's photo" in a magazine online? Lou Franco 2009-11-18T21:46:37Z 2009-11-18T21:46:37Z With imagemagick, you just need to call <code>convert in.jpg -resize 400x400 out.jpg</code> and it's done. You can control the type of resizing if you want. I have never used firework, but imagemagick is very simple. More info: <a href="http://www.imagemagick.org/Usage/resize/" rel="nofollow">imagemagick.org/Usage/resize</a> http://stackoverflow.com/questions/1103522/what-is-an-efficient-algorithm-to-find-whether-a-singly-linked-list-is-circular-c/1103544#1103544 Comment by Lou Franco on What is an efficient algorithm to find whether a singly linked list is circular/cyclic or not? Lou Franco 2009-11-16T12:47:27Z 2009-11-16T12:47:27Z if i!=j at the start of the loop, then i cannot equal j after the first increment of j because i is incremented first. http://stackoverflow.com/questions/1701342/running-numbers-in-sql Comment by Lou Franco on Running numbers in SQL Lou Franco 2009-11-09T14:35:17Z 2009-11-09T14:35:17Z It's DBMS dependent -- what do you use? http://stackoverflow.com/questions/1681232/how-is-the-structure-of-a-image Comment by Lou Franco on How Is The Structure Of a Image Lou Franco 2009-11-05T18:37:52Z 2009-11-05T18:37:52Z Only because you used the word &quot;mount&quot; -- I need to ask. Are you talking about disk images -- like .iso files that represent an entire filesystem -- or are you talking about photographic images? Mounting is something that is associated with disk images, but all of the answers seem to think you are talking about photos. http://stackoverflow.com/questions/278045/iphone-image-upload-in-background/278059#278059 Comment by Lou Franco on iPhone image upload in background. Lou Franco 2009-10-31T17:00:43Z 2009-10-31T17:00:43Z I'm not sure that's true. Email and Safari seem to do things in the background (email definitely continues to download my messages). There are probably non-public API's to do it. However, if you call them, you will be rejected. http://stackoverflow.com/questions/1601648/interfacing-with-the-end-users-scanner-from-a-webapp-web-scanner-integration/1620301#1620301 Comment by Lou Franco on Interfacing with the end-user's scanner from a webapp (web/scanner integration) Lou Franco 2009-10-28T20:35:33Z 2009-10-28T20:35:33Z The applet would have to be trusted. There is no way to do this in a browser without the user accepting some kind of trust elevation. http://stackoverflow.com/questions/1601648/interfacing-with-the-end-users-scanner-from-a-webapp-web-scanner-integration/1622596#1622596 Comment by Lou Franco on Interfacing with the end-user's scanner from a webapp (web/scanner integration) Lou Franco 2009-10-28T18:50:49Z 2009-10-28T18:50:49Z I am from Atalasoft. We are publishing a CodeProject next week on this exact issue -- would happily send you the doc if you email me: lou -dot- franco -at- atalasoft.com (replace -dot- and -at-). http://stackoverflow.com/questions/1606802/auto-increment-the-primary-key-without-setting-the-identity/1606812#1606812 Comment by Lou Franco on Auto-increment the primary key without setting the identity Lou Franco 2009-10-22T12:23:47Z 2009-10-22T12:23:47Z is that true. Does a begin transaction block other begin transactions? Couldn't they both calculate max(key) as the same? http://stackoverflow.com/questions/1601393/solution-to-an-error-happening-in-ie6-when-trying-to-download-and-open-a-pdf Comment by Lou Franco on Solution to an error happening in IE6 when trying to download and open a PDF Lou Franco 2009-10-21T14:58:30Z 2009-10-21T14:58:30Z Probably you should put the answer part in an answer below. http://stackoverflow.com/questions/1594395/are-there-any-programs-that-will-shrink-the-size-of-a-sql-script-file/1594403#1594403 Comment by Lou Franco on Are there any programs that will shrink the size of a sql script file? Lou Franco 2009-10-20T12:56:29Z 2009-10-20T12:56:29Z He wants it to still be a script (at least that's how I interpret the question) http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block/1590672#1590672 Comment by Lou Franco on Try-Catch and how throw work in catch block Lou Franco 2009-10-19T20:36:14Z 2009-10-19T20:36:14Z I guess the question is what would it mean for you to return false and also throw an exception -- if you want the caller to know that something happened, just return false and then the caller can throw if it has to. Or the caller could catch the exception. Or maybe you need a more complex return that has more information in it. http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block Comment by Lou Franco on Try-Catch and how throw work in catch block Lou Franco 2009-10-19T19:42:59Z 2009-10-19T19:42:59Z The best thing to do is write some code and run it in the debugger. http://stackoverflow.com/questions/1590668/try-catch-and-how-throw-work-in-catch-block/1590672#1590672 Comment by Lou Franco on Try-Catch and how throw work in catch block Lou Franco 2009-10-19T19:42:05Z 2009-10-19T19:42:05Z No, it doesn't return, it exits the function via an exception -- the control goes inside of a catch block up the call stack.