User Antonio Louro - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:28:05Z http://stackoverflow.com/feeds/user/15528 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1708389/ajax-call-inside-a-each-loop-not-being-asynchronous 0 Ajax Call inside a each() Loop not being asynchronous Antonio Louro 2009-11-10T14:31:54Z 2009-11-10T18:10:53Z <p>Hi</p> <p>What I'm trying to do involves going through a series of checkboxes.</p> <p>For each one of them that it is checked, I have to perform some calculations (using an ajax call). If there is an error, I have to break the loop and return a message.</p> <p>Every ajax call takes about 0,4 seconds to perform but that shall never be a problem because I can only have a maximum of 4 of them checked at any given time.</p> <p>But the problem I'm facing is that, the final alert box pops-up before the one inside the error function(). The error function does work but it appears always after the final one.</p> <p>I was under the impression that by defining the call as asynchronous=false, code execution would wait until the call returned a response. Is that a wrong assumption? </p> <p>Is there a way to accomplish this?</p> <p>Thanks in advance</p> <pre><code>$("input[id*='chk_aut']").each(function() { if(this.value=="on") { $.ajax({ type: "GET", url: "testpage.asp", cache:"false", async:"false", data: "which=checkvalues&amp;value=" + i_value + "&amp;ref="+$("#cb_ref").val() + "&amp;nif="+$("#txt_nif").val() + "&amp;day="+i_day + "&amp;month="+i_month + "&amp;hours="+i_hours + "&amp;year="+i_year + "&amp;ms=" + new Date().getTime(), success: function(msg) { //do something but continue the loop }, error: function() { i_result =false; alert("An error has occurred"); return false;//break the loop } }); } }); alert(i_result); </code></pre> http://stackoverflow.com/questions/971052/autocomplete-server-side-implementation/971358#971358 -1 Answer by Antonio Louro for Autocomplete server-side implementation Antonio Louro 2009-06-09T17:12:54Z 2009-06-09T17:12:54Z <p>Maybe I misunderstood your question but couldn't you use a JQuery plugin to Ajax the info to your app?</p> <p>I have used this one before: </p> <p><a href="http://www.brandspankingnew.net/archive/2007/02/ajax%5Fauto%5Fsuggest%5Fv2.html" rel="nofollow">Ajax Auto Suggest v2</a></p> http://stackoverflow.com/questions/926076/how-did-you-estimate-the-time-you-will-spent-before-starting-a-web-development-pr/926165#926165 1 Answer by Antonio Louro for How did you estimate the time you will spent before starting a web development project? Antonio Louro 2009-05-29T14:08:31Z 2009-05-29T14:08:31Z <p>One of my favorite programming teachers used to repeat this sentence every time he got the change: "Take the time you think you will take you to do it and multiply it by 3. Even then it will be a close call".</p> <p>At first, lacking a better way of doing things, I actually did this. I still do! Mainly in those projects that you can feel the presence of a though client:)</p> <p>It works for me. It is not scientific but it does work.</p> http://stackoverflow.com/questions/920527/i-need-a-screenshot-from-a-mac-for-an-air-app/920550#920550 2 Answer by Antonio Louro for I need a screenshot from a mac for an AIR app Antonio Louro 2009-05-28T12:13:21Z 2009-05-28T12:13:21Z <p>I am not sure if this is a programming question but here it goes:</p> <p>I believe you can use this site to get the screen shots you need.</p> <p><a href="http://browsershots.org/" rel="nofollow">http://browsershots.org/</a></p> http://stackoverflow.com/questions/920078/database-to-distribute-on-cd/920101#920101 2 Answer by Antonio Louro for Database to distribute on CD Antonio Louro 2009-05-28T10:00:19Z 2009-05-28T10:00:19Z <p>Honestly... If you can do it I would use encrypted XML files. No install,runs anywhere (text files have no dependencies), fast and since updates are not necessary, that would make it even easier.</p> http://stackoverflow.com/questions/892187/net-code-to-listen-to-an-office-application-get-the-events-raised-by-the-user 0 NET code to "listen" to an office application (get the events raised by the user) Antonio Louro 2009-05-21T10:01:43Z 2009-05-28T05:36:46Z <p>I am on the verge of remaking an application for e-learning. But now I want to take this new version to a new level.</p> <p>So this the scenario: a user opens up my app. He/she then chooses to be trained in one of the most common MS Office applications (Word,Excel,Outlook, etc).</p> <p>My app will give the user instructions on what to do: create a new document, type some text, turn it bold, insert a picture, etc. If done correctly the user will be awarded points. If not, demerits.</p> <p>But (there is always a but )for me to accomplish this I have to be able to "see" what the user is doing. I am using NET (2.0 - C# or VB, doesn't matter which). Can anyone tell how to do this? I need to get a handle to the open Office app or start a new one and then I have to listen and evaluate everything the user does.If the user does it wrong I also need to send instructions to the Office app and do it for him/her.</p> <p>Is this possible? Does anyone has some samples of code on how to do this or anything similar?</p> <p>Thanks in advance</p> <p>PS:I really wouldn't want to have a Office add on to accomplish this!</p> <p>Edited: The reason I don't want to get into VBA is that I wanted to make sure that this was reusable to assist users in using other applications further down the road. So I wanted some way to create a listener to an application and decode the user interaction with it.</p> http://stackoverflow.com/questions/915355/js-seems-not-to-be-able-to-find-my-form/915485#915485 1 Answer by Antonio Louro for js seems not to be able to find my form Antonio Louro 2009-05-27T12:35:14Z 2009-05-27T12:35:14Z <p>Try adding an ID tag to the form. It should be the same as the name tag.</p> http://stackoverflow.com/questions/914730/must-write-programs-for-self-taught-enthusiasts-game-programming/914758#914758 3 Answer by Antonio Louro for Must-Write programs for self-taught enthusiasts (game programming) Antonio Louro 2009-05-27T09:10:23Z 2009-05-27T10:29:10Z <p>Reading is of the uttermost importance. But, it is nothing without coding. Always try to code it. Start small and simple. Yes, the "hello world" approach is irritating (at least for me) but it does serve a purpose.</p> <p>It is almost impossible to fail at that and it boosts your confidence levels.</p> <p>As for ideas...Well why not something simple: the hangman game? Or some kind of variation of it. Better to chose something you know.</p> <p>Start-up companies differ a lot... So no advise there.. Just work hard, listen to everyone else and don't ever stop learning.</p> http://stackoverflow.com/questions/914695/php-mysql-query-not-working/914735#914735 0 Answer by Antonio Louro for PHP - MySQL Query not working Antonio Louro 2009-05-27T09:04:50Z 2009-05-27T09:04:50Z <p>If your getting "no" that is because this code fails to return true:</p> <pre><code>if (isset($_POST['username']) &amp;&amp; isset($_POST['password'])) </code></pre> <p>So...Did you give the input fields those exact names? Is the form really being posted?</p> http://stackoverflow.com/questions/914693/learning-kernel-programming/914713#914713 3 Answer by Antonio Louro for Learning Kernel Programming Antonio Louro 2009-05-27T08:59:19Z 2009-05-27T08:59:19Z <p>I would have to say:"learn C". :)</p> <p>Try this free online book.</p> <p><strong>Linux Kernel Module Programming Guide</strong> <a href="http://www.linuxhq.com/guides/LKMPG/mpg.html" rel="nofollow">http://www.linuxhq.com/guides/LKMPG/mpg.html</a></p> http://stackoverflow.com/questions/893261/image-above-flash-element/893310#893310 -2 Answer by Antonio Louro for image above flash element Antonio Louro 2009-05-21T14:47:33Z 2009-05-21T15:20:59Z <p>You should be able to correct that by using the z-index css property of your image.</p> <p>Try setting it to a huge number like: z-index:100000;</p> <p>This happens because the flash player tries to be above all other elements on the page it is in.</p> <p>Edited: this works if you use the "wmode" in the flash player as indicated above.</p> http://stackoverflow.com/questions/596202/save-as-you-go-web-forms-pattern-request/596267#596267 0 Answer by Antonio Louro for Save as you go web forms --- pattern request Antonio Louro 2009-02-27T19:31:44Z 2009-02-27T19:31:44Z <p>You can try the UX Partterns Explorer by Infragistics.</p> <p><a href="http://quince.infragistics.com/#/Main" rel="nofollow">http://quince.infragistics.com/#/Main</a></p> http://stackoverflow.com/questions/271743/whats-the-difference-between-b-and-strong-i-and-em/271763#271763 0 Answer by Antonio Louro for What's the difference between <b> and <strong>, <i> and <em>? Antonio Louro 2008-11-07T11:01:27Z 2009-02-25T20:29:50Z <p>"They have the same effect. However, XHTML, a cleaner, newer version of HTML, recommends the use of the <code>&lt;strong&gt;</code> tag. Strong is better because it is easier to read - its meaning is clearer. Additionally, <code>&lt;strong&gt;</code> conveys a meaning - showing the text strongly - while <code>&lt;b&gt;</code> (for bold) conveys a method - bolding the text. With strong, your code still makes sense if you use CSS stylesheets to change what the methods of making the text strong is.</p> <p>The same goes for the difference between <code>&lt;i&gt;</code> and <code>&lt;em&gt;</code> ".</p> <p>Google dixit:</p> <p><a href="http://wiki.answers.com/Q/What_is_the_difference_between_HTML_tags_b_and_strong" rel="nofollow">http://wiki.answers.com/Q/What_is_the_difference_between_HTML_tags_b_and_strong</a></p> http://stackoverflow.com/questions/536870/is-there-a-tool-to-automate-stress-post-calls-to-my-site-for-testing/536917#536917 1 Answer by Antonio Louro for Is there a tool to automate/stress POST calls to my site for testing? Antonio Louro 2009-02-11T14:04:49Z 2009-02-11T14:04:49Z <p>WebInspect from Spidynamics (HP bought them).</p> <p>I've used this one in my previous job (I recommended it to my employer at the time) and I was overwhelmed with the amount of info and testing I could do with it.</p> <p>https://download.spidynamics.com/webinspect/default.htm</p> http://stackoverflow.com/questions/365676/which-ide-is-for-me/503203#503203 4 Answer by Antonio Louro for Which IDE is for me? Antonio Louro 2009-02-02T13:26:21Z 2009-02-02T13:26:21Z <p>I use PHP Designer. It has everything needed, at least for my needs. Auto-completion, code explorer, project explorer, ftp integration ,SVN integration, the works!</p> <p><a href="http://www.mpsoftware.dk/phpdesigner.php" rel="nofollow">http://www.mpsoftware.dk/phpdesigner.php</a></p> http://stackoverflow.com/questions/262426/vb-net-listing-drives-and-vmware 1 VB NET Listing drives and VMWARE Antonio Louro 2008-11-04T16:46:47Z 2009-01-14T01:58:21Z <p>This is a strange one... In a windows forms app (VB.NET/VS 2005) I have the need to occasionally check if the application DVD is inserted. <br>In my production machine (and in the majority of our clients) this code takes less than an second to execute. But in some machines, it takes about 8 to 10 seconds. I couldn't find any common ground on those few pcs in which it was slower (different OS, different RAM,different processors, more drives, less drives, etc). <br>It happens on about 4% of our test machines (and a few of our friends machines, by now:) ) <br>Since this funcion it is only called once, I can live with it. But the strange thing, and we stumbled upon this on pure luck, is that if a VMWare Virtual Machine is running, the code (running in the host OS ) will take the expected less than a second!!! <br> Has anyone ever encountered anything similar to this? Can anyone at least offer some explanation for this? </p> <pre><code>i_DrivesArray = GetLogicalDrives() i_DrivesCount = i_DrivesArray.Length For i_DriveNumber = 0 To i_DrivesCount - 1 i_DriveInformation = New DriveInfo(i_DrivesArray(i_DriveNumber)) If (i_DriveInformation.DriveType = i_DriveTargetType And i_DriveInformation.IsReady = True) Then If File.Exists(i_DriveInformation.Name.ToString &amp; ci_CDIdentifiers(i_Counter).ToString) = True Then ci_IsCDInserted = True ci_PathCD = i_DriveInformation.Name.ToString Exit For End If End If Next </code></pre> http://stackoverflow.com/questions/271716/what-should-i-do-while-im-waiting-for-the-build-the-tests-the-database-migra/271749#271749 -1 Answer by Antonio Louro for What should I do while I'm waiting for the build / the tests / the database migrations to run? Antonio Louro 2008-11-07T10:58:17Z 2008-11-07T10:58:17Z <p>I usually read blogs, articles, mostly work related.<br> I have dedicated time to read everything not work related (30 minutes time-frame after lunch). <br> I also find myself going through our websites to see if I find a bug or something that can be improved. <br><br> And on a Friday (like today:) ) I read Freak Angels:) Warren Ellis on-line free comic. The man is on a rampage on that one:) <br>Check it out:<a href="http://www.freakangels.com/?p=23" rel="nofollow">http://www.freakangels.com/?p=23</a></p> http://stackoverflow.com/questions/229257/what-do-project-managers-do-all-day/229279#229279 1 Answer by Antonio Louro for What do project managers do all day? Antonio Louro 2008-10-23T10:42:00Z 2008-11-07T04:20:02Z <p>It seems that is the same everywhere: nobody likes their bosses or at least always has something similar to say about them:"He doesn't do a thing!" or "He doesn't understand about the work"... <br> In some cases it is true... I had more than 10 bosses already (my own boss now) and I can guarantee you that at least 50% of them were bad at their work. <br> But we don't really know their work, do we? Sure, we see somethings he/she does but we don't see it all. <br> And until you are in their shoes for sometime you will never know... </p> http://stackoverflow.com/questions/258240/ribbon-ui-for-visual-studio-2010-or-beyond/258256#258256 2 Answer by Antonio Louro for Ribbon UI for Visual Studio 2010 or beyond? Antonio Louro 2008-11-03T10:04:12Z 2008-11-03T10:04:12Z <p>It all depends on how it would be implemented.<br>It could be a good thing, but just in case I would like it to be optional:)</p> http://stackoverflow.com/questions/191592/how-do-i-get-rid-of-the-mouse-cursor-in-full-screen-exclusive-mode/191634#191634 0 Answer by Antonio Louro for How do I get rid of the mouse cursor in full-screen exclusive mode? Antonio Louro 2008-10-10T14:37:04Z 2008-10-10T14:37:04Z <p>I don't know if this knowledge applies but in a old VB6 app I had the same problem and I got rid of it moving the cursor out of the screen giving it some very large values.<br> Hope it helps.</p> http://stackoverflow.com/questions/190976/what-frustrates-you-the-most-at-your-current-workplace/191161#191161 2 Answer by Antonio Louro for What frustrates you the most at your current workplace? Antonio Louro 2008-10-10T13:05:09Z 2008-10-10T13:05:09Z <p>In my previous job (mildly large organization - about 500 employees) the worst thing was the sinking sensation that nobody was running the boat.<br> Things worked out because of the good will and professionalism of some people and despite "management" interference. <br>People that were in charge for no obvious reasons and complete lack of respect for one's worth and work. <br>Total chaos! And believe me that that isn't unusual! It is pretty common place!</p> http://stackoverflow.com/questions/184195/seating-plan-software-recommendations-does-such-a-beast-even-exist/184225#184225 4 Answer by Antonio Louro for Seating plan software recommendations (does such a beast even exist?) Antonio Louro 2008-10-08T18:41:15Z 2008-10-10T09:56:41Z <p><a href="http://www.perfecttableplan.com/" rel="nofollow">http://www.perfecttableplan.com/</a></p> <p>I believe this is from a guy that usually posts at Joel On Software.</p> <p>Never tried it though. Hope it helps.</p> http://stackoverflow.com/questions/184180/how-to-get-the-most-out-of-being-a-manual-tester/184239#184239 4 Answer by Antonio Louro for How to get the most out of being a manual tester Antonio Louro 2008-10-08T18:45:32Z 2008-10-08T18:45:32Z <p>Try to break it as a coder:)</p> <p>Sql Injection, Script injection, etc,etc:) It should make it funnier:)</p> http://stackoverflow.com/questions/157055/net-3-5-published-in-11-07-net-3-0-in-11-06-why-are-most-people-still-using-n/157168#157168 3 Answer by Antonio Louro for .NET 3.5 published in 11/07 .NET 3.0 in 11/06. Why are most people still using .NET 2.0? Antonio Louro 2008-10-01T11:18:22Z 2008-10-01T11:18:22Z <p>I can speak for myself and my company. We still don't use it. Why? Well <br><br> <strong>1</strong>- Most of our users already have NET 2.0 framework installed. No need to install another framework.<br> <strong>2</strong>- We won't change just because it is the new thing. It has to add some value. <br> <strong>3</strong>- To really pay off the change would mean a huge amount of work.Again, it has to pay off. <br> <strong>4</strong>- It is still to early to tell if its worth it (one year is not nearly enough) in terms of bugs and new problems. It seems worth it, though.</p> http://stackoverflow.com/questions/140270/humor-in-code/140682#140682 0 Answer by Antonio Louro for Humor in code Antonio Louro 2008-09-26T17:00:41Z 2008-09-26T17:00:41Z <p>Well, when just testing stuff out I used to name my command objects Arnold:) That and a lot of swearing in test strings:P</p> http://stackoverflow.com/questions/132798/what-should-every-programmer-know/138879#138879 1 Answer by Antonio Louro for What should every programmer know? Antonio Louro 2008-09-26T11:29:40Z 2008-09-26T11:29:40Z <p>When I get to work, my ego stays in the car. Nothing matters more than the work and its quality. Never take criticism personally and listen to everyone, no matter how stupid they may sound. But don't ever compromise the quality just because it's faster or easier.</p> <p>And of course, learn,learn, learn. :)</p> http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82682#82682 63 Answer by Antonio Louro for What's Your Motto As A Developer/Programmer? Antonio Louro 2008-09-17T12:40:33Z 2008-09-17T12:40:33Z <p>A good programmer always looks both ways before crossing a one-way street.</p> http://stackoverflow.com/questions/81686/is-there-a-folder-in-both-winxp-and-winvista-to-which-all-users-have-writing-perm 1 Is there a folder in both WinXP and WinVista to which all users have writing permissions? Antonio Louro 2008-09-17T10:10:41Z 2008-09-17T10:22:15Z <p>We have a NET app that gets installed to the Program Files folder. The app itself writes some files and creates some directories to its app folder. But when a normal windows user tries to use our application it crashes because that user does not have permission to write to app folder. Is there any folder in both WinXP and WinVista to which all users have writing permissions by default? All User folder or something like that? Thanks in advance</p> http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764681#1764681 Comment by Antonio Louro on What are the biggest potential time wasters in development? Antonio Louro 2009-11-19T17:59:29Z 2009-11-19T17:59:29Z +1 for the time it took to write all this:) http://stackoverflow.com/questions/1708389/ajax-call-inside-a-each-loop-not-being-asynchronous/1708506#1708506 Comment by Antonio Louro on Ajax Call inside a each() Loop not being asynchronous Antonio Louro 2009-11-11T14:25:34Z 2009-11-11T14:25:34Z Applied your suggestion to the cache parameter and everything works as expected. Thank you for the time you took to answer this. http://stackoverflow.com/questions/1708389/ajax-call-inside-a-each-loop-not-being-asynchronous/1708506#1708506 Comment by Antonio Louro on Ajax Call inside a each() Loop not being asynchronous Antonio Louro 2009-11-11T10:34:28Z 2009-11-11T10:34:28Z Already tried to use the boolean but to no avail. Still the same results. http://stackoverflow.com/questions/1708389/ajax-call-inside-a-each-loop-not-being-asynchronous/1708456#1708456 Comment by Antonio Louro on Ajax Call inside a each() Loop not being asynchronous Antonio Louro 2009-11-10T15:26:39Z 2009-11-10T15:26:39Z Thanks for the tip. Seems worth looking deeper into. http://stackoverflow.com/questions/1708389/ajax-call-inside-a-each-loop-not-being-asynchronous/1708463#1708463 Comment by Antonio Louro on Ajax Call inside a each() Loop not being asynchronous Antonio Louro 2009-11-10T15:11:49Z 2009-11-10T15:11:49Z I know the error function isn't supposed to be called in that situation. In an attempt to clarify the code I pasted some in the wrong place. Edited now and thanks for the heads up. Voted your comment up. http://stackoverflow.com/questions/1708389/ajax-call-inside-a-each-loop-not-being-asynchronous/1708506#1708506 Comment by Antonio Louro on Ajax Call inside a each() Loop not being asynchronous Antonio Louro 2009-11-10T15:09:01Z 2009-11-10T15:09:01Z I will try to use the async parameter the way you described it. I do have a replacement code for this situation (not using async:false) but I was curious as to why it wasn't working the intended way. http://stackoverflow.com/questions/1124235/how-to-fetch-content-from-a-webpage/1124262#1124262 Comment by Antonio Louro on How to fetch content from a webpage? Antonio Louro 2009-07-14T10:53:59Z 2009-07-14T10:53:59Z That Simple HTML DOM will make me change my last project:) For the better:) Thanks:) http://stackoverflow.com/questions/920587/mailto-links-and-webmail/920604#920604 Comment by Antonio Louro on mailto: links and webmail Antonio Louro 2009-05-28T12:34:45Z 2009-05-28T12:34:45Z You answered the exact same thing as I was going to:) Prize to the fastest typer:) http://stackoverflow.com/questions/892187/net-code-to-listen-to-an-office-application-get-the-events-raised-by-the-user/894973#894973 Comment by Antonio Louro on NET code to "listen" to an office application (get the events raised by the user) Antonio Louro 2009-05-28T12:29:27Z 2009-05-28T12:29:27Z Seems I was wrong:) Thank you for the input, though. http://stackoverflow.com/questions/892187/net-code-to-listen-to-an-office-application-get-the-events-raised-by-the-user/919326#919326 Comment by Antonio Louro on NET code to "listen" to an office application (get the events raised by the user) Antonio Louro 2009-05-28T08:53:06Z 2009-05-28T08:53:06Z I never expected it to be easy:) Thank you for your answer. This seems to be the way to go! http://stackoverflow.com/questions/916794/what-is-the-sleakest-way-to-proccess-multiple-files Comment by Antonio Louro on what is the sleakest way to proccess multiple files Antonio Louro 2009-05-27T17:30:23Z 2009-05-27T17:30:23Z Are all these multiple files in the same folder? Are theses files always the same (same name, same location,etc)? http://stackoverflow.com/questions/914730/must-write-programs-for-self-taught-enthusiasts-game-programming/914758#914758 Comment by Antonio Louro on Must-Write programs for self-taught enthusiasts (game programming) Antonio Louro 2009-05-27T10:28:46Z 2009-05-27T10:28:46Z Upps:) Thanks for the heads up:) Corrected:) http://stackoverflow.com/questions/892187/net-code-to-listen-to-an-office-application-get-the-events-raised-by-the-user/894973#894973 Comment by Antonio Louro on NET code to "listen" to an office application (get the events raised by the user) Antonio Louro 2009-05-27T08:56:16Z 2009-05-27T08:56:16Z Guess you will getting the bounty points:) No one seems to know how to solve this one... http://stackoverflow.com/questions/892187/net-code-to-listen-to-an-office-application-get-the-events-raised-by-the-user/894973#894973 Comment by Antonio Louro on NET code to "listen" to an office application (get the events raised by the user) Antonio Louro 2009-05-22T14:54:41Z 2009-05-22T14:54:41Z Nothing to be sorry about:) Not your fault. Thanks for the input but I still have hope that there may be another way around this:) If I find it I shall post it. http://stackoverflow.com/questions/893278/what-video-format-is-the-smallest-without-losing-quality/893303#893303 Comment by Antonio Louro on What video format is the smallest without losing quality? Antonio Louro 2009-05-21T14:49:34Z 2009-05-21T14:49:34Z Flash video can be of any quality you wish to encode it with. But in this case I think it does not apply to one of the requirements in the original question: to be playable in most media players.