User rmz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T13:52:49Zhttp://stackoverflow.com/feeds/user/61665http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/976449/sql-select-question/976502#9765020Answer by rmz for SQL Select Questionrmz2009-06-10T15:54:06Z2009-06-10T15:54:06Z<p>If I'm reading your problem right, it appears that you have a text field that contains date-like data, and you want to be able to sort on it chronologically (within a range).</p>
<p>After some quick Googling, it appears that Access has a CDate() function that you can use to convert the string data into dates. Secondly, once you've got that problem addressed, the actual query to select a date range will probably look something like this (at least in Sql Server -- the syntax for Access will probably be similar but may differ slightly):</p>
<pre><code>SELECT TOP 6 [...]
FROM [...]
WHERE DateDue BETWEEN @BeginDate AND @EndDate
ORDER BY DateDue ASC
</code></pre>
<p>That is the general idea of how you can get the six oldest entries within a date range.</p>
http://stackoverflow.com/questions/941685/when-to-use-multiple-sprite-batches-in-xna/941786#9417863Answer by rmz for When to use multiple sprite batches in XNA?rmz2009-06-02T20:39:46Z2009-06-02T20:39:46Z<p>There are very few cases in which using multiple SpriteBatches is necessary. One example that I see thrown around a lot is a situation in which you want to apply different post-processing/renderstates to different sets of sprites, which requires a separate SpriteBatch for each set.</p>
<p>It is usually considered good practice to use only one batch if at all possible, since drawing as many things as possible in one batch is much more performant than spreading the work across multiple batches. Additionally, since you can only control sort order within a single SpriteBatch, it may make it harder (or impossible) to control depth between sprites from different batches.</p>
<p>In short: there are conceivable situations in which you may want to do this, but it's not all that common and in general you should stick to using one SpriteBatch unless you <em>know</em> that you can't accomplish what you want without using more than one.</p>
http://stackoverflow.com/questions/898807/how-can-i-motivate-myself-to-code-outside-work/898833#8988333Answer by rmz for How can I motivate myself to code outside work?rmz2009-05-22T16:45:39Z2009-05-22T16:45:39Z<p>The key for me is finding a side project that you are passionate about. If it's not something that you're excited about doing, you're never going to be able to motivate yourself to sit down and actually start coding. Ideally, you shouldn't <em>need</em> to motivate yourself -- that's already a sign that your project is less than fascinating to you and perhaps your interests would best be served on a different type of application.</p>
<p>For many people, this can be experimenting with a brand-new technology that many people don't use yet, or perhaps something like an open-source project that interests you. If you'd like to dabble in something that can make you a little bit of pocket money, try an iPhone App Store application or something like Microsoft's XNA.</p>
http://stackoverflow.com/questions/258548/what-is-the-most-important-thing-you-werent-taught-in-school/890594#8905949Answer by rmz for What is the most important thing you weren't taught in school?rmz2009-05-20T22:36:53Z2009-05-20T22:36:53Z<p>The fact that you're often doing more harm than good by over-commenting your code.</p>
<pre><code>int count = 0; // variable to store the counter
</code></pre>
<p>should NEVER be taught as good programming practice.</p>
http://stackoverflow.com/questions/889272/how-do-you-use-cfqueryparam-in-the-order-by-clause/889290#8892909Answer by rmz for How do you use cfqueryparam in the ORDER BY clause?rmz2009-05-20T17:46:19Z2009-05-20T17:51:33Z<p>Unfortunately, you can't use CFQUERYPARAM directly in the Order By clause.</p>
<p>If you want to use the Order By dynamically but still do so safely, you can set up a CFSWITCH or similar structure to change your SortBy variable depending on some condition (say, a URL variable). As always, don't pass any values directly from the user, just look at the user's input and select from a predetermined list of possible values based on that. Then, just use the standard syntax:</p>
<pre><code>ORDER BY #SortBy#
</code></pre>
http://stackoverflow.com/questions/880195/the-history-behind-the-definition-of-a-string/880202#88020210Answer by rmz for The History Behind the Definition of a 'String'...rmz2009-05-18T22:59:21Z2009-05-18T23:30:27Z<p>My assumption has always been that the programming term originated from the following definition of the word "string" (from Merriam-Webster):</p>
<blockquote>
<p>(1): a series of things arranged in or as if in a line <a string of cars> <a string of names></p>
<p>(2): a sequence of like items (as bits, characters, or words)</p>
</blockquote>
<p>Since a string in programming is simply an ordered sequence of characters, referring to this as a "string of characters" (or simply "string") seems like the most probable origin.</p>
http://stackoverflow.com/questions/779701/looking-to-hire-a-xna-developer-where-should-i-look/779711#7797112Answer by rmz for looking to hire a XNA developer, where should I look?rmz2009-04-22T23:45:44Z2009-04-22T23:45:44Z<p>As a start, the official XNA Creators' Club community has a "Help Wanted/Offered" forum that might get you some good exposure:</p>
<p><a href="http://forums.xna.com/forums/42.aspx" rel="nofollow">http://forums.xna.com/forums/42.aspx</a></p>
http://stackoverflow.com/questions/683186/where-can-i-find-a-good-comparison-between-sql-server-and-oracle/683194#6831940Answer by rmz for Where can I find a good comparison between SQL server and Oracle?rmz2009-03-25T19:57:54Z2009-03-25T20:04:11Z<p><a href="http://searchoracle.techtarget.com/news/article/0,289142,sid41%5Fgci953366,00.html" rel="nofollow">Oracle vs. SQL Server: Face-off</a></p>
<p>Do you have some specific items that you would like comparisons about?</p>
http://stackoverflow.com/questions/664159/gaming-development-vs-corporate-software-development/664193#6641931Answer by rmz for Gaming Development vs Corporate Software Developmentrmz2009-03-19T21:44:43Z2009-03-19T21:44:43Z<p>While I can't speak from <em>personal</em> experience, all of my friends that have worked in the game industry have said that the hours they have to put in sometimes are brutal. The pay seems to often be mediocre.</p>
<p>I would recommend career game development only if you can land a job at a really good company that treats its employees well, or if you want to work in the game industry so bad that you're willing to deal with the downsides.</p>
http://stackoverflow.com/questions/663973/putting-a-background-pictures-with-leds/664007#6640070Answer by rmz for putting a background pictures with LED'srmz2009-03-19T20:52:38Z2009-03-19T20:52:38Z<p>If you're talking about a "background image" as I seem to be interpreting your question, then you just need to create a picture that looks how you want. If you want a button to look like it's glowing, you'll need to whip up a picture that looks like a glowing button. There is no 3D rendering or dynamic lighting in the sort of application that you seem to be talking about, after all :)</p>
<p>I would recommend spending some time in GIMP or finding a friend who is good at making graphics.</p>
http://stackoverflow.com/questions/663299/best-uses-of-recursion-outside-of-code/663318#6633183Answer by rmz for Best uses of recursion outside of codermz2009-03-19T17:58:01Z2009-03-19T17:58:01Z<p>To save this thread from a slew of answers all containing a single recursive acronym, here's a whole pile of them:</p>
<p><a href="http://en.wikipedia.org/wiki/Recursive_acronym" rel="nofollow">http://en.wikipedia.org/wiki/Recursive_acronym</a></p>
http://stackoverflow.com/questions/662760/whats-the-best-way-to-get-data-from-other-websites-programmatically-amazon-offe/662800#6628000Answer by rmz for Whats the best way to get data from other websites programmatically? "amazon offers for example"rmz2009-03-19T15:58:38Z2009-03-19T15:58:38Z<p>Assuming that the data you're trying to get isn't available through RSS or other similar means, it sounds like you are going to be looking for a page scraper. Googling for ".NET HTML scraper" returns a wealth of information on the topic.</p>
http://stackoverflow.com/questions/658982/xna-and-darkbasic/659313#6593131Answer by rmz for XNA and DarkBasicrmz2009-03-18T17:28:39Z2009-03-18T17:28:39Z<p>As has been mentioned elsewhere, XNA allows easy development for the Xbox 360 and Zune platforms in addition to Windows. XNA also is built on top of C# whereas DarkBASIC seems to use a propriety BASIC-like language (as you would expect).</p>
<p>I'm not sure how crazy I am about the prospect of spending lots of time developing in a language of that sort, as I view my XNA projects as a way to sharpen my C#/.NET knowledge while learning the new XNA framework tools at the same time. (But that's just personal preference, of course.)</p>
<p>Unless there's some major upside to using DarkBASIC that I haven't seen, I would be pretty comfortable saying that XNA has an advantage over DB in almost every way.</p>
http://stackoverflow.com/questions/620896/access-contents-of-noscript-with-javascript/620937#6209371Answer by rmz for Access Contents of <noscript> with Javascriptrmz2009-03-07T00:01:14Z2009-03-07T00:01:14Z<p>From the <a href="http://www.w3.org/TR/REC-html40/interact/scripts.html#h-18.3.1" rel="nofollow">HTML 4.0 spec</a>:</p>
<blockquote>
<p>The NOSCRIPT element allows authors to provide alternate content when a script is not executed. The content of a NOSCRIPT element should only be rendered by a script-aware user agent in the following cases:</p>
<ul>
<li>The user agent is configured not to evaluate scripts.</li>
<li>The user agent doesn't support a scripting language invoked by a SCRIPT element earlier in the document.</li>
</ul>
</blockquote>
<p>It seems to me that this implies that the entire contents of the NOSCRIPT tag (in this case, your div) are ignored altogether if scripting is enabled in the browser. Have you verified that the "example" div is accessible through the DOM at all in your case?</p>
http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question/592389#59238918Answer by rmz for What is the worst interview question?rmz2009-02-26T20:51:58Z2009-02-26T20:51:58Z<p>I remember some commenter on The Daily WTF that said that he would randomly throw out an Airplane! quote (e.g. "Do you like movies about gladiators?"), with the comment that "if they didn't get the reference, I would move on, and that would tell me something about their personality."</p>
<p>I would love to get turned down for a job because I haven't seen their favorite movie.</p>
http://stackoverflow.com/questions/578705/xna-direct-x-opengl/578758#5787581Answer by rmz for XNA, direct X , OpenGLrmz2009-02-23T18:38:13Z2009-02-23T18:38:13Z<p>If your experience has been mostly with .NET as you say, XNA would have the shortest barrier to entry although you won't get quite as good of performance as you can with other options. As you say that you're planning on making a 2D platformer, however (assuming that the implication here is "non-hardware intensive"), then XNA would be more than sufficient and probably the most suitable choice for your project.</p>
http://stackoverflow.com/questions/563312/is-the-ms-ribbon-office-ui-license-worth-worrying-about/563338#5633381Answer by rmz for Is the MS Ribbon/Office UI License worth worrying about?rmz2009-02-18T23:27:46Z2009-02-18T23:27:46Z<p>IMO, if you're saying that you probably would be specifically denied a license due to the product similarity, proceeding anyway <em>without</em> a license probably isn't going to turn out well for you if Microsoft ever catches wind of it.</p>
<p>I would go with Option 3 to be safe.</p>
http://stackoverflow.com/questions/562833/what-are-the-best-methods-for-protecting-duplication-and-limiting-viewing-time-of/562879#5628790Answer by rmz for What are the best methods for protecting duplication and limiting viewing time of a distributed video?rmz2009-02-18T21:18:08Z2009-02-18T21:18:08Z<p>This whole "expiration" thing has been tried before, by many different organizations. In my opinion, it's been proven to be largely a failed experiment.</p>
http://stackoverflow.com/questions/553824/serializing-an-array-of-integers-using-xmlserializer2Serializing an array of integers using XmlSerializerrmz2009-02-16T16:10:51Z2009-02-16T16:17:02Z
<p>I'm encountering a problem while trying to serialize a multi-dimensioned array of integers via XmlSerializer for an XNA project I'm working on. I'm able to serialize all of my other data (booleans, strings, even Colors, etc) without a hitch. I've also seen plenty of people claim that XmlSerializer will natively handle (single-dimensioned) arrays of integers as well. Is there a limitation regarding multi-dimensioned arrays, or is something else going on here?</p>
<p>Here's the relevant code:</p>
<pre><code>int[,,] scoredata = scores; // Populated with data elsewhere
filename = Path.Combine(container.Path, "scoredata.sav");
stream = File.Open(filename, FileMode.Create);
serializer = new XmlSerializer(typeof(int[,,]));
serializer.Serialize(stream, scoredata); // This line throws the exception.
stream.Close();
</code></pre>
<p>The exception I receive is "An unhandled exception of type 'System.InvalidOperationException' occurred in System.Xml.dll. There was an error generating the XML document."</p>
<p>I've also tried using this array as a member variable in a struct (where all of my other player data is stored) but I get the same exception when doing things that way, as well, which leads me to believe that it's not a simple syntax error or anything like that.</p>
<p>Do I need to restructure my code to serialize via a single-dimensioned array, or is there something I'm overlooking?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/543101/syntax-error/543122#5431224Answer by rmz for Syntax Errorrmz2009-02-12T20:37:52Z2009-02-12T20:37:52Z<p>I think you're missing the statement that you want to evaluate in the CASE statement. </p>
<pre><code>update oildatasetstatus set oildatasetstatusid =
case oildatasetstatusid
WHEN 5 THEN 16
WHEN 6 THEN 17
WHEN 7 THEN 18
WHEN 8 THEN 18
WHEN 9 THEN 18
WHEN 10 THEN 19
WHEN 11 THEN 20
End
where oildatasetlabstatusid in ( select oildatasetstatusid from OilDataSetStatus inner join OilDataSet on OilDataSet.OilDataSetID = OilDataSetStatus.OilDataSetID where SamplePointID in ( select SamplePointID from SamplePoint where CustomerSiteID in ( select CustomerSiteID from CustomerSite where CustomerID = 2 ) ) )
</code></pre>
<p>Give that a shot?</p>
http://stackoverflow.com/questions/534467/winforms-design-vs-code/534504#5345043Answer by rmz for WinForms: Design vs Codermz2009-02-10T22:28:05Z2009-02-10T22:28:05Z<blockquote>
<p>Is there a faster way of editing the existing ones then clicking and editing?</p>
</blockquote>
<p>You can CTRL+Click multiple form controls that have a common property (e.g. Font, ForegroundColor, or something), and make the change to all of the controls at once. The various controls' properties are also defined towards the top of your form code (I believe the section is normally collapsed by default). These properties get automatically updated when you use the Form Designer to make changes, but you could modify them in the code instead, using a Find+Replace if you have a lot of similar changes to make.</p>
<blockquote>
<p>Is this really a product of my lack of planning? Is the solution to have planned and written all this down so that I got it right the first time?</p>
</blockquote>
<p>While planning is always good to do, I don't think I've ever done a complete project where I haven't forgotten to account for <em>something</em> in my plans. A lot of times, you just don't notice certain things that you need to add in until you are able to poke around the form.</p>
<blockquote>
<p>Is there a way to have certain property settings be set by default for all UI Controls?</p>
</blockquote>
<p>routeNpingme's solution for this is a good one. :)</p>
http://stackoverflow.com/questions/534228/places-that-pay-independent-developers-for-games/534262#5342623Answer by rmz for Places that pay independent developers for games?rmz2009-02-10T21:22:01Z2009-02-10T21:27:59Z<p>If you're not restricting yourself to a specific platform, there are a variety of content-delivery services like Steam (PC), PlayStation Network (PS3/PSP) and XNA Creators Club (PC/Xbox 360). These have various mechanisms in place to host independent games via their services.</p>
<p>If you are, then some of the other users here may have some good suggestions for other options for you :)</p>
http://stackoverflow.com/questions/525197/where-is-the-default-log-location-for-sharepoint-moss/525226#525226-2Answer by rmz for Where is the default log location for SharePoint/MOSS?rmz2009-02-08T05:45:52Z2009-02-08T05:45:52Z<p>Probably should make this community wiki if it's not a question, right?</p>
http://stackoverflow.com/questions/518186/personal-project-planning/518402#5184023Answer by rmz for Personal Project Planningrmz2009-02-05T23:04:33Z2009-02-05T23:04:33Z<p>Key aspects: Primarily, something that you are excited about. Make a game that REALLY gets you going, and you'll be motivated by your desire to share the finished product with others -- your end product's quality will probably be improved by your passion, as well.</p>
<p>Profitability: Well, since this is XNA and all, if you release a version on Xbox Live, you will earn 70% of the sales revenue that your game earns. Games can be priced for 200, 400, or 800 points (roughly $2.50-$10).</p>
<p>UI/Usability: For this, I typically go through a lot of playability testing...booting it up, seeing how things "feel," then tweaking things if they just don't feel right. I came across a lot of things that I never really thought about before (fade-ins/fade-outs for menus, repeat rates for keys, and so forth), and play-testing is one of the more effective ways that I've been able to identify issues like that. If you've got friends, you can ask them to give you feedback as well.</p>
<p>Planning Tools: Truthfully, I just make a list of the things that I want to include in the overall game concept, then slowly get more granular as I iron out more and more of the fine details. Certain ideas inevitably change after playtesting may reveal them to not be as fun as you had imagined they would be, of course. I haven't ever seen a huge need for any formal tools for this process, though, but I will give the disclaimer that all of my projects have been fairly small in scope and have not been professional-sized undertakings or anything.</p>
<p>Art: This may not always be an option for you, but I have a few friends online that are gifted with art skills -- I solicited interest, and got some volunteers. I presented the option to earn a cut of whatever royalties may come in, but most of them were happy with an attribution in the credits and a chance to see their work in a game that's playable by people all over the world. Regarding small things (icons, etc), stock/royalty-free art can do the job in certain cases, too, but I wouldn't recommend relying on it.</p>
<p>Breaking Barriers: Not sure what's quite meant by this question, but generally speaking if I've come up against some sort of unforeseen issue (technical/implementation challenge,
gameplay-related, or what-have-you), I'm able to either solve the problem or come up with a suitable work-around if I put my mind to it for long enough. Did you mean something else by this?</p>
http://stackoverflow.com/questions/516424/book-recommendation-web-user-interface-design/517880#5178800Answer by rmz for Book recommendation: web user interface designrmz2009-02-05T20:59:31Z2009-02-05T20:59:31Z<p>I really liked <a href="http://rads.stackoverflow.com/amzn/click/1933820241" rel="nofollow">Web Form Design</a> by Luke Wroblewski.</p>
http://stackoverflow.com/questions/513738/information-on-building-a-game/513878#5138780Answer by rmz for Information on building a gamermz2009-02-04T23:28:23Z2009-02-04T23:28:23Z<p>Generic: <a href="http://gamedev.net" rel="nofollow">GameDev</a>, <a href="http://devmaster.net" rel="nofollow">DevMaster</a></p>
<p>XNA-specific: <a href="http://creators.xna.com/en-US/education/" rel="nofollow">XNA Creators Club</a>, <a href="http://msdn.microsoft.com/en-us/xna/default.aspx" rel="nofollow">MSDN XNA Developer Center</a></p>
http://stackoverflow.com/questions/242293/are-you-a-good-or-bad-programmer/513561#5135610Answer by rmz for Are you a good or bad programmer?rmz2009-02-04T22:01:12Z2009-02-04T22:01:12Z<p>I'm not a good programmer, but I try to learn something new every day. Constant improvement is more fun than being at the top all the time, anyway :)</p>
http://stackoverflow.com/questions/513445/what-application-have-you-integrated-with-developed-on-that-you-would-intention/513546#51354612Answer by rmz for What application have you integrated with/developed on - that you would intentionally leave off your resumermz2009-02-04T21:56:57Z2009-02-04T21:56:57Z<p>VBA, Excel Macros, Access.</p>
http://stackoverflow.com/questions/513386/how-long-does-it-take-to-become-proficient-in-java-if-you-are-new-to-programming/513448#5134483Answer by rmz for How long does it take to become proficient in Java if you are new to programming?rmz2009-02-04T21:28:04Z2009-02-04T21:28:04Z<p>Java isn't a terrible language for someone who's new to programming, but it's certainly not the simplest either. If you're looking to create the foundation for a long-lasting programming career, I would first off recommend that you read a few good books on programming practices (Code Complete, etc) first so that you develop good habits.</p>
<p>As far as a good language to learn programming basics with, there's no clear "best pick" and everything has its pros and cons. Learning the fundamental concepts of progrmaming is more important than working with a particular language, and once you've got a solid grasp as to what programming "is", then you will be able to tackle Java and then move into the types of applications that you actually want to make.</p>
<p>It's like carpentry -- you don't build a house on your first day. You start out making spice racks for a while first. Don't rush yourself :)</p>
http://stackoverflow.com/questions/512933/when-a-bug-for-client-is-really-a-new-feature/513391#5133912Answer by rmz for when a bug for client is really a new feature rmz2009-02-04T21:17:10Z2009-02-04T21:17:10Z<p>I would recommend making sure that the requirements are ironed out as much as possible, and that both sides understand exactly what is being promised. It keeps the client happy because there's fewer situations like you describe, and it keeps you happy because you don't keep getting yanked around.</p>
http://stackoverflow.com/questions/1034458/why-arent-video-games-written-in-javaComment by rmz on Why aren't video games written in Java?rmz2009-06-23T18:59:34Z2009-06-23T18:59:34ZRe: mmyers; I'm somewhat in shock that THAT game won a "best graphics" award, even in 2005...http://stackoverflow.com/questions/485174/programming-fonts/593246#593246Comment by rmz on Programming Fontsrmz2009-06-17T16:01:42Z2009-06-17T16:01:42Z90 euros for a single font? Yikes!http://stackoverflow.com/questions/485174/programming-fonts/593447#593447Comment by rmz on Programming Fontsrmz2009-06-17T16:00:54Z2009-06-17T16:00:54ZI like this one a lot. Clean, crisp, and easily readable.http://stackoverflow.com/questions/982398/programmer-reality-tv-linksComment by rmz on programmer reality tv links?rmz2009-06-11T17:15:47Z2009-06-11T17:15:47ZA video of a guy sitting at a computer, typing away and occasionally cursing furiously?http://stackoverflow.com/questions/976449/sql-select-question/976502#976502Comment by rmz on SQL Select Questionrmz2009-06-10T18:17:31Z2009-06-10T18:17:31ZRe-reading the somewhat confusing OP, it sounds like both to me. In either case, though...http://stackoverflow.com/questions/956556/is-it-irrational-to-sanitize-random-character-strings-for-curse-words/956575#956575Comment by rmz on Is it irrational to sanitize random character strings for curse words?rmz2009-06-05T15:47:47Z2009-06-05T15:47:47Z@luke: Yeah, I think that this method will get rid of the "real" curse words. Imagined or "kinda looks like a curse word if you squint really hard" words are still the user's problem :)http://stackoverflow.com/questions/956556/is-it-irrational-to-sanitize-random-character-strings-for-curse-words/956581#956581Comment by rmz on Is it irrational to sanitize random character strings for curse words?rmz2009-06-05T15:40:34Z2009-06-05T15:40:34ZOP says that this is for generating product keys, so...I don't know how much this applies.http://stackoverflow.com/questions/911667/how-to-be-productive-at-a-programming-jobComment by rmz on How to be productive at a programming job?rmz2009-05-26T16:54:58Z2009-05-26T16:54:58ZSee: <a href="http://stackoverflow.com/questions/637133/what-is-your-motivation" rel="nofollow" title="what is your motivation">stackoverflow.com/questions/637133/…</a>, <a href="http://stackoverflow.com/questions/32943/what-is-the-best-way-to-get-yourself-motivated" rel="nofollow" title="what is the best way to get yourself motivated">stackoverflow.com/questions/32943/…</a>http://stackoverflow.com/questions/888224/what-is-your-longest-held-programming-assumption-that-turned-out-to-be-incorrect/888246#888246Comment by rmz on What is your longest-held programming assumption that turned out to be incorrect?rmz2009-05-22T17:45:16Z2009-05-22T17:45:16ZNew to me too! Thanks :)http://stackoverflow.com/questions/443638/as-a-programmer-what-are-some-telltale-signs-that-youre-about-to-get-fired-or-l/444244#444244Comment by rmz on As a programmer, what are some telltale signs that you're about to get fired or laid off?rmz2009-05-21T04:45:35Z2009-05-21T04:45:35ZA prior employer did something like this, except you showed up first thing in the morning and your computer was missing from your desk.http://stackoverflow.com/questions/888731/two-sql-count-queries/888748#888748Comment by rmz on two SQL COUNT() queries?rmz2009-05-20T16:04:55Z2009-05-20T16:04:55ZI wouldn't have thought of using Sum() like this. +1http://stackoverflow.com/questions/885266/wpf-vs-windows-formsComment by rmz on WPF vs. Windows Formsrmz2009-05-19T22:16:51Z2009-05-19T22:16:51ZIn case you missed it, you misspelled "forms" in your question title. ;)http://stackoverflow.com/questions/835418/what-are-the-stackoverflow-standard-answers/835458#835458Comment by rmz on What are the StackOverflow standard answers?rmz2009-05-07T15:53:36Z2009-05-07T15:53:36ZHave you tried XML?http://stackoverflow.com/questions/750606/what-technologies-are-you-using-even-though-they-are-embarassingly-out-of-date/751416#751416Comment by rmz on What technologies are you using even though they are embarassingly out of date?rmz2009-04-15T16:04:46Z2009-04-15T16:04:46ZIt's like playing Russian Roulette with your data!http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/431186#431186Comment by rmz on What was your first computer game that got you interested in computers?rmz2009-04-10T15:09:43Z2009-04-10T15:09:43ZI beat this game probably 10 times on Apple II when I was a kid. By the end, I was working on flawless runs (no mistakes) and stuff, haha. :)