User Ryan Smith - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:10:48Zhttp://stackoverflow.com/feeds/user/10420http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1774124/php-fatal-error-no-idea-why/1774131#17741311Answer by Ryan Smith for php fatal error- no idea whyRyan Smith2009-11-21T00:58:44Z2009-11-21T00:58:44Z<p>Is this in an includes file? Is the includes file getting included more than once?</p>
<p>It's complaining because the get_db_conn is defined more than once, and most likely it's getting included multiple times unless you have that function in two different places.</p>
http://stackoverflow.com/questions/1724000/mydiv-htmlvalue-not-replacing-in-ie70$("#my_div").html('value'); not replacing in IE7.Ryan Smith2009-11-12T17:33:56Z2009-11-12T17:35:17Z
<p>I'm using a simple JQuery call to replace some HTML in a DIV tag after an AJAX call.</p>
<pre><code>$("#my_div").html('value');
</code></pre>
<p>This works great in the other browsers, but in IE it is just adding to the DIV instead of replacing the HTML.</p>
<p>Any ideas why that would happen?</p>
http://stackoverflow.com/questions/382464/httppostedfile-filename-different-from-ie3HttpPostedFile.FileName - Different from IERyan Smith2008-12-19T22:48:06Z2009-11-11T06:06:10Z
<p>When I upload a file to a site using the ASP:File control the FileName property is different in IE and Firefox. In Firefox, it just provides the name of the file, but IE provides the full path to the file.</p>
<p>I have worked around this by adding the code:</p>
<pre><code>Dim FileName As String = file.FileName
If FileName.LastIndexOf("\") > 0 Then
FileName = FileName.Substring(FileName.LastIndexOf("\") + 1)
End If
</code></pre>
<p>But I'm not sure why that would be different between the different browsers. Does anyone know the reason for this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1709961/flash-as3-full-screen-not-working-on-a-tablet-pc1Flash AS3 Full Screen not working on a tablet PC.Ryan Smith2009-11-10T18:03:22Z2009-11-10T21:21:54Z
<p>I have a Flash (AS3, CS3) piece that has a button that will make the piece go full screen.</p>
<pre><code>stage.displayState=StageDisplayState.FULL_SCREEN;
</code></pre>
<p>This works great in all of the computers that I have tested it in except a tablet PC (HP 2710p is the only tablet I have to test on, but I hear the same behavior happens on all tablets).</p>
<p>Does anyone know the reason for this issue or a work around?</p>
<p>Thanks</p>
<p><hr></p>
<p>Additional:</p>
<p>The scale mode is set to exact fit, but I have tried the other options as well:</p>
<pre><code>stage.scaleMode = StageScaleMode.EXACT_FIT;
</code></pre>
http://stackoverflow.com/questions/1709961/flash-as3-full-screen-not-working-on-a-tablet-pc/1711289#17112890Answer by Ryan Smith for Flash AS3 Full Screen not working on a tablet PC.Ryan Smith2009-11-10T21:21:54Z2009-11-10T21:21:54Z<p>I found the answer to the issue on a forum. It turns out that on tablet PCs, you have to turn off hardware acceleration for Flash to go full screen.</p>
<p>You can turn off hardware acceleration by right clicking on the Flash piece, selecting settings, then in the first tab, uncheck "Enable hardware acceleration".</p>
http://stackoverflow.com/questions/1045986/flash-ajax-call0Flash - AJAX callRyan Smith2009-06-25T20:14:21Z2009-11-09T14:29:28Z
<p>I want to call a web page from Flash and use the data returned from it (either in plain text or XML). I see with the NetConnection you can connect to a web service, but I just want to call a plain old web page.</p>
<p>It seems like I managed to do this a while back, but for the life of me, I can't find the answer on the web. Does anyone know what the function / code is to call a web page in Flash and get the data back?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/231690/sharepoint-web-part-vs-asp-net-user-control7Sharepoint: Web Part vs. ASP.NET User ControlRyan Smith2008-10-23T21:53:42Z2009-10-26T09:50:18Z
<p>When creating web parts for Sharepoint, is it better to create an actual web part, or is using and ASP.NET User Control (.ascx) just as good?</p>
<p>I already know how to create the user controls that I need, so it seems like the extra effort of creating a web part is just unnecessary leg work.</p>
<p>What are the advantages of using a web part over just creating and ASP.NET user control?</p>
http://stackoverflow.com/questions/792036/actionscript-3-0-dynamic-scroll-bars0ActionScript 3.0, dynamic scroll barsRyan Smith2009-04-27T01:57:31Z2009-10-23T14:35:57Z
<p>I'm trying to create some dynamic scrollbars for a project I'm working on in Flash (ActionScript 3).</p>
<p>I had written scrollbars a while ago in AS2, but I can't seem to sort out everything in my mind for AS3.</p>
<p>Basically, I'm looking for a tutorial exactly like the one at <a href="http://tutorials.parseidon.com/code-script/actionscript/flash-scrollbar/" rel="nofollow">http://tutorials.parseidon.com/code-script/actionscript/flash-scrollbar/</a> except for in AS3.</p>
<p>Does anyone know where I could find one?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/267160/what-is-the-operation-aborted-error-in-internet-explorer2What is the "Operation Aborted" error in Internet Explorer?Ryan Smith2008-11-05T23:38:14Z2009-10-22T11:26:56Z
<p>I recently added JQuery's date-picker control to a project. In Internet Exploder, I get the following error message:</p>
<blockquote>
<p>Internet Explorer cannot open the
Internet site</p>
<p><a href="http://localhost/" rel="nofollow">http://localhost/</a></p>
<p>Operation aborted</p>
</blockquote>
<p>What is causing this problem?</p>
http://stackoverflow.com/questions/1597416/call-javascript-funcion-while-playing-an-flv/1598786#15987863Answer by Ryan Smith for Call JavaScript funcion while playing an FLVRyan Smith2009-10-21T04:55:19Z2009-10-21T04:55:19Z<pre><code>if (ExternalInterface.available) {
ExternalInterface.call("javascriptFunction", parameters);
}
</code></pre>
http://stackoverflow.com/questions/1552408/svn-serve-missing-a-directory0SVN Serve, Missing a DirectoryRyan Smith2009-10-12T02:21:18Z2009-10-12T03:16:40Z
<p>I'm sure this is an asinine question, and I blame myself for not fully understanding how the SVNSERVE process works.</p>
<p>I have an SVN repo, but it needs to be moved to a server within a clients cloud. I did this a while back and ran into the issue of the SVNSERVE.exe process not getting set to the right directory.</p>
<p>I have the SVNSERVE.exe process running as a windows service and pointing to the right directory. There are two other repos there that are serving out fine in the same directory. I copied out the new directory just like I did with the others, but I'm getting the error "No repository found". I thought that SVNSERVE just looked at that directory and served out the repositories that were there, but I have had a hard time finding more information about that.</p>
<p>I thought it was a Windows permission problem, but I set the whole folder to be full control to EVERYONE, so that's not it.</p>
<p>I feel horrible I didn't fully understand this problem the first time I fought it, but it's late on a Sunday night and clients are yelling. Anyone know what I'm missing?</p>
<p>Thanks.</p>
<p><hr /></p>
<p>EDIT:</p>
<p>It's specific to the repository. I tested the same process with some of the other repos we have on our server and when I copied them up, they worked just as expected.</p>
<p>This bug is breaking me and I wish I could provide more details, but that's all I know. I'm going to try to do an SVN Dump instead of an XCopy and see how that goes. I'll let you know.</p>
http://stackoverflow.com/questions/1498987/ie-html-radio-change-event2IE HTML radio change eventRyan Smith2009-09-30T15:48:06Z2009-09-30T16:11:39Z
<p>I have a project that requires some values to get updated with JavaScript from an HTML radio change event.</p>
<p>For some reason in IE, it seems that the onchange event isn't called until the radio has lost focus. Unfortunately due to the way the code is setup, I can't use the click event and have to use the change event.</p>
<p>Does anyone know of a way to force IE to raise the change event as soon as the check is changed rather than when it looses focus?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1473388/asp-net-canceling-the-default-submit-button1ASP.NET Canceling the Default Submit ButtonRyan Smith2009-09-24T18:31:36Z2009-09-24T18:52:39Z
<p>I have an ASP.NET application where there's a few ASP.NET buttons and several plain HTML buttons.</p>
<p>Anytime there's a textbox where a user hits enter, the ASP.NET button trys to submit the form.</p>
<p>I know I can change the defaultButton, but I don't want there to be any default button. I just want it so when the user presses enter it doesn't do anything.</p>
<p>I've tried setting defaultButton to blank, but that doesn't seem to work and I can't seem to find the answer anywhere on the web.</p>
<p>What's the code to make this happen?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1468108/textarea-cols-property-when-using-css0textarea cols property when using CSSRyan Smith2009-09-23T19:29:21Z2009-09-23T19:38:57Z
<p>It seems that to be XHTML compliant an HTML textarea needs to have the cols property set. I want to use CSS instead so I can just expand the textarea to 100% <code>style="width: 100%;"</code></p>
<p>How should I be doing this in a standards compliant way?</p>
http://stackoverflow.com/questions/361503/fck-editor-alternatives9FCK Editor AlternativesRyan Smith2008-12-12T00:12:33Z2009-09-15T12:42:47Z
<p>I've been using the FCK Editor for several of my client sites in the past. Recently due to some new browser security updates(I'm assuming) some of the functionality is now breaking.</p>
<p>I was planning on updating those sites to the most recent version, but sometimes I think the FCK is overly complex and tends to confuse my clients more than it helps them out.</p>
<p>What other HTML WYSIWYG (if there is such a thing) are good out there. A few of the items I really like about the FCK that I would want to keep:</p>
<ul>
<li>Drop Down Styles based on CSS</li>
<li>Auto Inserted HTML templates</li>
<li>Auto Inserted HTML snippets</li>
<li>File uploader / browser</li>
</ul>
<p>Thanks</p>
http://stackoverflow.com/questions/419027/integer-tryparse-a-better-way2Integer.TryParse - a better way?Ryan Smith2009-01-07T02:47:55Z2009-09-08T15:11:23Z
<p>I find myself often needing to use Integer.TryParse to test if a value is an integer. However, when you use TryParse, you have to pass a reference variable to the function, so I find myself always needing to create a blank integer to pass in. Usually it looks something like:</p>
<pre><code>Dim tempInt as Integer
If Integer.TryParse(myInt, tempInt) Then
</code></pre>
<p>I find this to be quite cumbersome considering that all I want is a simple True / False response. Is there a better way to approach this? Why isn't there an overloaded function where I can just pass the value I want to test and get a true / false response?</p>
http://stackoverflow.com/questions/1309816/ie-dynamically-added-button-not-calling-on-click1IE Dynamically Added Button Not Calling On ClickRyan Smith2009-08-21T02:27:04Z2009-08-21T10:19:17Z
<p>I have some code that dynamically creates a new button through JavaScript that when clicked calls a JavaScript function. The code works just as expected in Firefox, Chrome, Opera but low and behold, it doesn't work in IE(7 - I'm not even going to bother with IE6).</p>
<p>The button gets created and appears, but it's not calling the onclick event.</p>
<pre><code>var newButton = document.createElement('input');
newButton.setAttribute('id','btnChat_');
newButton.setAttribute('type','button');
newButton.setAttribute('onclick','askQuestion()');
newButton.setAttribute('value', 'Respond');
document.getElementById('frmChat').appendChild(newButton);
</code></pre>
<p>Does anyone know why this won't work in IE, or have a suggestion as to how I could write this code so it will work?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/678702/reverse-engineering-flash1Reverse Engineering FlashRyan Smith2009-03-24T18:50:56Z2009-08-12T12:28:07Z
<p>I have some Flash SWF files that I need some insight into how they are working. Are they any good tools out there to reverse engineer a SWF file?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1246634/php-doesnt-show-error/1246642#12466420Answer by Ryan Smith for php doesnt show errorRyan Smith2009-08-07T19:45:11Z2009-08-07T19:45:11Z<p>Make sure in you php.ini file that display_errors is on and set error_reporting to E_ALL.</p>
http://stackoverflow.com/questions/249103/ie7-and-the-css-table-cell-property1IE7 and the CSS table-cell propertyRyan Smith2008-10-30T02:14:21Z2009-08-05T21:26:04Z
<p>So I just love it when my application is working great in Firefox, but then I open it in IE and... Nope, please try again.</p>
<p>The issue I'm having is that I'm setting a CSS display property to either "none" or "table-cell" with JavaScript.</p>
<p>I was initially using "display: block;", but Firefox was rending it weird without the table-cell property.</p>
<p>I would love to do this without adding an hack in the JavaScript to test for IE. Any suggestions?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/332478/exiting-functions-using-return-exit-sub-statements1Exiting functions using return / exit sub statements [closed]Ryan Smith2008-12-01T22:35:12Z2009-08-05T18:40:21Z
<p>Back in the day when I was learning programming theory at the university, I was always told that it was bad practice, taboo if you will, to have more than one exit point for a function.</p>
<p>As I have programmed more an more in the real world, I have come to the conclusion that not only is this not always the case, but in many instances it has made my code much more legible by placing exit conditions at the top. This reducing the amount of "arrow" code I write.</p>
<p>I have heard that a lot of this argument comes from C where you would run into memory leak bugs because you would forget to clean up at those exit points.</p>
<p>The other explanation I have heard for this commonly taught practice is that if I have to have more than one exit point, my functions are too long. I completely disagree with this argument.</p>
<p>Do you support the argument that all functions should only have one exit point, or do you think it's OK and in some cases good to have multiple return points?</p>
<p><strong>Duplicate of</strong> <a href="http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement" rel="nofollow" title="Should a function have only one return statement ?">Should a function have only one return statement ?</a> which has already some other duplicates like <a href="http://stackoverflow.com/questions/124122/single-return-or-multiple-return-statements-closed" rel="nofollow" title="Single return or multiple return statements? [closed]">Single return or multiple return statements? [closed]</a>, <a href="http://stackoverflow.com/questions/137115/are-multiple-return-points-from-a-method-good-or-bad" rel="nofollow" title=" Are multiple return points from a method good or bad? "> Are multiple return points from a method good or bad? </a> (mmm, not closed), and so on. Already a number of answers to study -- <em>PhiLho</em></p>
http://stackoverflow.com/questions/682477/pdf-permissions-management-with-asp-net-timeout-issue0PDF permissions management with ASP.NET - Timeout IssueRyan Smith2009-03-25T16:55:17Z2009-07-29T21:07:37Z
<p>I have a website that has several PDF files. I need to have quite a few of them locked down with the standard ASP.NET authentication (in a folder with web.config that denies anonymous users).</p>
<p>I set PDF files to get handled by the ASP.NET worker process and added:</p>
<pre><code><add type="System.Web.StaticFileHandler" path="*.pdf" verb="*" />
</code></pre>
<p>to my web.config, but for some reason they hang when downloading. I've seen this issue before on an old server, and for the live of me I can't remember what I did to solve it. Does anyone have any idea?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/682477/pdf-permissions-management-with-asp-net-timeout-issue/1203049#12030490Answer by Ryan Smith for PDF permissions management with ASP.NET - Timeout IssueRyan Smith2009-07-29T21:07:37Z2009-07-29T21:07:37Z<p>I think I finally figured out what I was missing. I needed to set the MIME type for PDF files to application/octet-stream instead of application/pdf.</p>
http://stackoverflow.com/questions/297686/css-max-height-property3CSS Max Height PropertyRyan Smith2008-11-18T02:28:13Z2009-07-28T23:40:25Z
<p>Is there a good cross-browser way to set a max-height property of a DIV and when that DIV goes beyond the max-height, it turns into an overflow with scroll bars?</p>
http://stackoverflow.com/questions/418158/iis-6-sort-websites-by-name2IIS 6 - sort websites by nameRyan Smith2009-01-06T21:05:15Z2009-07-19T02:53:39Z
<p>In IIS 6 on a Server 2003 box, when I view the list of websites, it doesn't list them in alphabetical order. I'm assuming that it sorts them on their website ID. </p>
<p>I have one server that won't be getting upgraded to 2008 for a while and it hosts about 40 websites. It has become quite cumbersome for me to look through the list to find the website that I need to modify. Is there any possible way to sort these websites alphabetically based on their website name?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/361395/best-way-to-handle-file-uploads-through-http2Best way to handle file uploads through HTTPRyan Smith2008-12-11T23:18:21Z2009-06-30T17:40:20Z
<p>File uploads through web pages using the standard HTML input always seems clunky to me. If the user tries to upload a large file, it can go on forever and they get no queue that the file is actually being uploaded.</p>
<p>I have tried to do things like provide a gif graphic that is an animated graphic bar, but it doesn't give the user any indication of how much is uploaded. I have even tried to do a progress bar with AJAX, but those were always ugly and never seemed to work right.</p>
<p>This has been an issue with many of my clients, and often I'm asked if there is a better way. Sometimes I'll just provide them an FTP site so they can upload it there, but that's not a practical solution either.</p>
<p>What do you think the best way to handle HTTP file uploads from HTML is? What are some good ideas / examples you have seen around the internet?</p>
http://stackoverflow.com/questions/1041282/t-sql-looping-to-create-a-recordset0T-SQL looping to create a recordsetRyan Smith2009-06-24T22:12:07Z2009-06-30T13:43:20Z
<p>I have some stored procedures that I need to write against a nasty beast of an database. I need to loop through a table (application) and pull values out of other tables (some are aggerate / averages /etc values) using the application_id from the application table.</p>
<p>So far I have:</p>
<pre><code>declare @id INT
declare app cursor for
SELECT application_id from application
OPEN app
FETCH NEXT FROM app
INTO @id
WHILE @@FETCH_STATUS = 0
BEGIN
SELECT a.NAME_LAST, a.NAME_FIRST, ca.status, (SELECT AVG(score) FROM reviews WHERE application_id = @id), (SELECT count(*) FROM reviews WHERE application_id = @id) FROM application a, committee_applications ca WHERE a.application_id = ca.application_id AND a.application_id = @id
FETCH NEXT FROM app INTO @id
END
CLOSE app
DEALLOCATE app
</code></pre>
<p>Which is giving me the results I want, but I'm sure there is a cleaner way of doing this, and I can't seem to make the mental jump today to do this correctly. Could someone point out a better way of doing this as this seems really ugly to me.</p>
<p>Also, it seems like I should be storing these values into a temp table then returning the full results instead of running the SELECT statement one by one.</p>
<p>Any suggestions would be greatly appreciated.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/749373/flash-source-control-best-practices3Flash Source Control - Best PracticesRyan Smith2009-04-14T21:06:18Z2009-06-18T14:11:13Z
<p>I'm working on a Flash project right now and I am having to force a designer into using our Source Control repository (SVN) to help manage and track the project. It's been a bit of an uphill battle to fully get him to embrace the benefits of source control, but it's coming along.</p>
<p>I haven't had to use source control for a Flash project before other than on projects where I was the only person working on it. I'm starting to discover there are some addition workflow pieces you need to implement around it so you don't have a nightmare fighting binary files.</p>
<p>Since I'm mostly working on the code, I've place all the ActionScript files into external files so I can work on them while the designer works on the FLA file with all the graphics. This seems to be working out alright, but when I need to change instance names and the like, I have to make sure I communicate well so we don't run into any issues.</p>
<p>I was wondering how other people handle Flash in source control and how they manage the workflow so a developer and designer can be working on the project at the same time.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1009476/visual-studio-php4Visual Studio PHPRyan Smith2009-06-17T20:55:44Z2009-06-17T21:09:37Z
<p>I've used VS.PHP (<a href="http://www.jcxsoftware.com/vs.php" rel="nofollow">http://www.jcxsoftware.com/vs.php</a>) for years with great success, but I've run out of licensing on all my machines and I want to have a unified development environment for my PHP programming.</p>
<p>Granted it's only $99 and I enjoy paying for code that helps me out, but I have too many home machines and would rather spend that $99 on boats or booze.</p>
<p>I would love to stay in Visual Studio(2005) and was wondering if there is a good open source alternative plugin for PHP development in Visual Studio that anyone knows about.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/936427/flash-bug-force-screen-repaint/983168#9831680Answer by Ryan Smith for Flash Bug - Force screen repaintRyan Smith2009-06-11T19:34:37Z2009-06-11T19:34:37Z<p>If anyone is interested:</p>
<p>At this point, it's looking like a known bug in Flash:</p>
<p><a href="http://kb2.adobe.com/cps/194/tn_19435.html" rel="nofollow">http://kb2.adobe.com/cps/194/tn_19435.html</a></p>
<p>Instead of using removeMovieClip, I used unloadMove and that seems to be doing the trick. I still have some more testing to do, but this appears to be the solution.</p>
http://stackoverflow.com/questions/1552408/svn-serve-missing-a-directory/1552428#1552428Comment by Ryan Smith on SVN Serve, Missing a DirectoryRyan Smith2009-10-12T02:34:32Z2009-10-12T02:34:32ZIt's a repo that was on our server and I copied it up to their server.
They don't need to do anything on the client side since they never had the repo.http://stackoverflow.com/questions/1498987/ie-html-radio-change-event/1499104#1499104Comment by Ryan Smith on IE HTML radio change eventRyan Smith2009-09-30T16:26:12Z2009-09-30T16:26:12ZThanks, That solved my immediate issue and saved the day for the client.
IE is a plague that should be wiped from the face of the earth.http://stackoverflow.com/questions/1473388/asp-net-canceling-the-default-submit-button/1473513#1473513Comment by Ryan Smith on ASP.NET Canceling the Default Submit ButtonRyan Smith2009-09-24T19:09:21Z2009-09-24T19:09:21ZPerfect, thank you. Not sure why I couldn't find that answer through Google. I guess I was just asking the wrong question.http://stackoverflow.com/questions/1309816/ie-dynamically-added-button-not-calling-on-click/1309837#1309837Comment by Ryan Smith on IE Dynamically Added Button Not Calling On ClickRyan Smith2009-08-21T16:40:29Z2009-08-21T16:40:29ZIn this case, not knowing is a very good reason because I'm doing some pretty crazy interactions with AJAX and other things where I really want to be able to understand what's going on at the lower level. I think JQuery would abstract too much of that away for me and end up causing me problems of leaky abstractions.
Also, this is on a very tight deadline, so at the moment there isn't enough time to "sharpen the axe" and still get the project out the door on time.http://stackoverflow.com/questions/1309816/ie-dynamically-added-button-not-calling-on-click/1309837#1309837Comment by Ryan Smith on IE Dynamically Added Button Not Calling On ClickRyan Smith2009-08-21T03:31:27Z2009-08-21T03:31:27ZI would like to do more with JQuery, but I have a pretty good understanding of how to do things in JavaScript without, so that's how I usually approach things. One of these days I'll get around to deeply understanding JQuery.http://stackoverflow.com/questions/1309816/ie-dynamically-added-button-not-calling-on-click/1309825#1309825Comment by Ryan Smith on IE Dynamically Added Button Not Calling On ClickRyan Smith2009-08-21T02:56:40Z2009-08-21T02:56:40ZNo love with either of those.http://stackoverflow.com/questions/249103/ie7-and-the-css-table-cell-property/1235847#1235847Comment by Ryan Smith on IE7 and the CSS table-cell propertyRyan Smith2009-08-06T16:24:38Z2009-08-06T16:24:38ZReally? That's a pretty cool trick.http://stackoverflow.com/questions/1045986/flash-ajax-call/1046220#1046220Comment by Ryan Smith on Flash - AJAX callRyan Smith2009-06-25T21:26:01Z2009-06-25T21:26:01ZI'm an idiot. I was looking at this far more complicated that I needed to.http://stackoverflow.com/questions/1041282/t-sql-looping-to-create-a-recordset/1041339#1041339Comment by Ryan Smith on T-SQL looping to create a recordsetRyan Smith2009-06-24T22:37:23Z2009-06-24T22:37:23ZThanks, that rocks and is what I was looking for. I knew there was a much cleaner way of doing it. Now I just have to hammer the rest of this crazy SQL into it.http://stackoverflow.com/questions/1009476/visual-studio-php/1009503#1009503Comment by Ryan Smith on Visual Studio PHPRyan Smith2009-06-17T21:03:23Z2009-06-17T21:03:23ZLooks good. I'll give it a try.http://stackoverflow.com/questions/936427/flash-bug-force-screen-repaint/961331#961331Comment by Ryan Smith on Flash Bug - Force screen repaintRyan Smith2009-06-08T15:58:31Z2009-06-08T15:58:31ZThe background of the loaded SWF disappears, but the elements on the SWF remain visible.
The JumpEye component I'm using is the ActionScript bridge:
<a href="http://www.jumpeyecomponents.com/Flash-Components/Various/ActionScript-Bridge-91/" rel="nofollow">jumpeyecomponents.com/Flash-Components/Various/…</a>http://stackoverflow.com/questions/947766/biggest-funniest-developer-screw-up/947806#947806Comment by Ryan Smith on Biggest/funniest developer screw-up?Ryan Smith2009-06-05T19:52:47Z2009-06-05T19:52:47ZI've managed to do that twice.http://stackoverflow.com/questions/953175/how-can-i-encode-quotation-marks-without-asp-net-complainingComment by Ryan Smith on How can I encode Quotation marks without Asp.Net complaining?Ryan Smith2009-06-04T22:01:31Z2009-06-04T22:01:31ZAre you getting the "Potentially dangerous request" error or something else?http://stackoverflow.com/questions/936427/flash-bug-force-screen-repaintComment by Ryan Smith on Flash Bug - Force screen repaintRyan Smith2009-06-01T21:54:20Z2009-06-01T21:54:20ZMost of the time it's just a boring old SWF getting loaded. There are some that are interactive, but the behavior is the same no matter which SWF is loaded.http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/143439#143439Comment by Ryan Smith on What's the least useful comment you've ever seen?Ryan Smith2009-05-26T23:49:21Z2009-05-26T23:49:21ZI think these sort of comments occur because professors tell their students that they get points off if they don't comment their code, but never spend the time to explain to them the proper use of a comment.