User James Atkinson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:47:08Z http://stackoverflow.com/feeds/user/2982 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799036/passing-return-value-of-a-function-as-an-argument/1799048#1799048 0 Answer by James Atkinson for Passing return value of a function as an argument James Atkinson 2009-11-25T18:35:27Z 2009-11-25T18:40:36Z <pre><code>var x = AnotherFunction(ReturnFunction(someVariable)); </code></pre> <p>where <code>AnotherFunction()</code> accepts the same type that <code>ReturnFunction()</code> returns.</p> <p>Most modern languages allow this.</p> http://stackoverflow.com/questions/1360265/what-practices-need-to-follow-to-let-other-people-understand-your-code-intuitivel/1360269#1360269 1 Answer by James Atkinson for what practices need to follow to let other people understand your code intuitively James Atkinson 2009-09-01T02:32:33Z 2009-09-01T02:32:33Z <p>Don't do these...(seriously)</p> <p><a href="http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered">http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered</a></p> http://stackoverflow.com/questions/1359974/convince-me-to-move-to-net-3-5-from-2-0/1359988#1359988 1 Answer by James Atkinson for Convince me to move to .net 3.5 (from 2.0) James Atkinson 2009-09-01T00:07:09Z 2009-09-01T00:07:09Z <p>The features I use the most are:</p> <ul> <li>LINQ</li> <li>Extension methods</li> <li>Automatic properties</li> </ul> <p>If you haven't used LINQ, and you try it, I think you will find that it (can be) a very powerful tool.</p> http://stackoverflow.com/questions/1353994/what-languages-and-tools-non-professional-programmers-non-cs-in-here-use/1354011#1354011 1 Answer by James Atkinson for What languages and tools non-professional-programmers (non cs) in here use ? James Atkinson 2009-08-30T14:33:14Z 2009-08-30T14:33:14Z <p>I primarily use <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">#develop</a> to write .NET applications with the <a href="http://boo.codehaus.org/" rel="nofollow">Boo Language</a>. </p> <p>Everything else is mostly C# in Visual Studio 2008.</p> http://stackoverflow.com/questions/1353057/cast-and-convert/1353074#1353074 0 Answer by James Atkinson for Cast and Convert James Atkinson 2009-08-30T04:21:34Z 2009-08-30T04:21:34Z <p>One difference is Convert methods allow specific formatting (ie. IFormatProvider)</p> http://stackoverflow.com/questions/1349786/windows-forms-is-it-possible-to-draw-the-elements-of-a-combobox-right-justified/1349806#1349806 1 Answer by James Atkinson for Windows Forms: is it possible to draw the elements of a combobox, right-justified? James Atkinson 2009-08-28T23:03:20Z 2009-08-28T23:03:20Z <p>Change the ComboBox "RightToLeft" property to TRUE. </p> <p>Note: The drop-down arrow will now be on the left side of the control.</p> http://stackoverflow.com/questions/1341075/messagebox-help/1341087#1341087 7 Answer by James Atkinson for MessageBox help James Atkinson 2009-08-27T13:25:43Z 2009-08-27T13:25:43Z <pre><code>MessageBox.Show("text", "caption", MessageBoxButtons.YesNo); </code></pre> <p>.NET / C#</p> http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/537710#537710 26 Answer by James Atkinson for Where do you keep your code? James Atkinson 2009-02-11T16:46:06Z 2009-07-29T07:34:54Z <p>More often than not, mine ends up in the <strong>recycle bin</strong>.</p> <p>I keep it on an <strong>external HD</strong> and pull it over to the PC when working.</p> http://stackoverflow.com/questions/1173973/passing-variables-into-another-form/1174014#1174014 3 Answer by James Atkinson for passing variables into another form James Atkinson 2009-07-23T19:41:20Z 2009-07-23T19:41:20Z <p>One method is to create a new constructor in the 2nd form. THen you can use those values from the 2nd form.</p> <pre><code>public Form2(decimal x, decimal y, decimal z):this() { this.TextBox1.Text = Convert.ToString(x); this.Label1.Text = Convert.ToString(y); etc... }; </code></pre> <p>From main form</p> <pre><code>Form2 frm2 = new Form2(x,y,z); frm2.Show(); </code></pre> http://stackoverflow.com/questions/1145277/is-boo-100-c-compatible/1145301#1145301 1 Answer by James Atkinson for Is Boo 100% C# compatible? James Atkinson 2009-07-17T19:44:17Z 2009-07-17T19:44:17Z <p>It would be no different than using VB.NET with C#. Currently the only big different between the two (functionally) is Boo does not have pointers... but there are ways to handle that. </p> <p>PS: Boo IS a wonderful language.</p> http://stackoverflow.com/questions/1022127/best-practice-to-persist-config-user-info-in-net-app/1022140#1022140 3 Answer by James Atkinson for Best practice to persist config/user info in .NET app James Atkinson 2009-06-20T18:05:25Z 2009-06-20T18:05:25Z <p>See this question for some suggestions.</p> <p><a href="http://stackoverflow.com/questions/453161/best-pratice-to-save-application-settings-in-windows-application">http://stackoverflow.com/questions/453161/best-pratice-to-save-application-settings-in-windows-application</a></p> http://stackoverflow.com/questions/993760/desirable-features-for-the-ideal-ide/993776#993776 1 Answer by James Atkinson for Desirable Features for the "ideal IDE" ? James Atkinson 2009-06-14T21:18:15Z 2009-06-14T21:18:15Z <p>Using Visual Studio as a base, the ideal IDE (for myself) would also include:</p> <ul> <li>Much easier additional language/addon/extension development &amp; support</li> <li>Cross platform</li> </ul> http://stackoverflow.com/questions/991105/developing-own-firefox-add-on-along-with-other-add-ons/991111#991111 2 Answer by James Atkinson for Developing own firefox add-on along with other add-on's James Atkinson 2009-06-13T17:29:45Z 2009-06-13T17:29:45Z <p>The question is unclear, but here is some information from Mozilla.</p> <p><a href="http://blog.mozilla.com/addons/2009/01/28/how-to-develop-a-firefox-extension/" rel="nofollow">How to develop a Firefox extension</a></p> <p>and</p> <p><a href="https://developer.mozilla.org/en/Developing%5Fadd-ons" rel="nofollow">Developing Mozilla addons</a></p> http://stackoverflow.com/questions/984302/which-language-would-you-use-in-your-os/984320#984320 4 Answer by James Atkinson for Which language would you use in your OS? James Atkinson 2009-06-11T23:30:24Z 2009-06-11T23:30:24Z <p>C, ASM, C#</p> <p><a href="http://en.wikipedia.org/wiki/Singularity%5F%28operating%5Fsystem%29" rel="nofollow">Singularity</a></p> http://stackoverflow.com/questions/983873/how-much-planning-do-you-do-before-starting-to-code/983905#983905 6 Answer by James Atkinson for How much planning do you do before starting to code? James Atkinson 2009-06-11T21:45:21Z 2009-06-11T21:45:21Z <p>Probably not the best technique... but... <strong>I plan in code</strong>.</p> <p>I often discover class/methods/etc. that I need just by doing it this way. With that said, I always assume that my planning code is not going to be the final solution.</p> <p>Additionally I will write down notes detailing "major features" and "minor/wish features".</p> http://stackoverflow.com/questions/983670/what-should-my-new-coding-language-be/983685#983685 3 Answer by James Atkinson for What should my new coding language be? James Atkinson 2009-06-11T21:06:40Z 2009-06-11T21:06:40Z <p><a href="http://boo.codehaus.org/" rel="nofollow">Boo</a></p> <p>Write a few lines of code with it and you'll understand.</p> http://stackoverflow.com/questions/978790/showing-datetime-using-c/978815#978815 5 Answer by James Atkinson for Showing Datetime using C# James Atkinson 2009-06-11T00:47:56Z 2009-06-11T00:47:56Z <pre><code>Console.WriteLine(DateTime.Now + " " + TimeZone.CurrentTimeZone.StandardName); </code></pre> <p>returns</p> <p>6/10/2009 7:45:14 PM Central Standard Time</p> <p>TimeZone.CurrentTimeZone.StandardName will return the long name and I believe you will have to modify your code a bit to get the abr. for each zone. </p> http://stackoverflow.com/questions/978711/garbage-collection-in-net-generations/978730#978730 2 Answer by James Atkinson for Garbage collection in .NET (generations) James Atkinson 2009-06-11T00:09:32Z 2009-06-11T00:09:32Z <p><a href="http://msdn.microsoft.com/en-us/library/ms973837.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms973837.aspx</a></p> <p>Very large topic. Above is a good summary from MS.</p> http://stackoverflow.com/questions/976216/how-to-link-vc-and-c-projects-in-visual-studio/976232#976232 3 Answer by James Atkinson for How to link vc++ and c# projects in visual studio ?? James Atkinson 2009-06-10T15:12:53Z 2009-06-10T15:12:53Z <p>If you are asking whether you can have two projects with different languages in the same solution, then yes. Just right click on the solution and add the project.</p> <p>From that point you would need to add a reference from one project to the other. </p> <p>Project -> Add Reference </p> http://stackoverflow.com/questions/975988/drawbacks-and-benefits-of-doing-phd-in-computer-science/976025#976025 2 Answer by James Atkinson for Drawbacks and benefits of doing PhD in computer science? James Atkinson 2009-06-10T14:44:01Z 2009-06-10T14:44:01Z <p>I can tell you first hand... it's far more difficult to return to college after entering the workforce than you may think.</p> <p>If you have the time/funds available to do it now, then I would recommend stay and start your PhD.</p> http://stackoverflow.com/questions/975886/using-ms-offices-spellchecking-feature-with-c/975986#975986 0 Answer by James Atkinson for Using MS Office's Spellchecking feature with C# James Atkinson 2009-06-10T14:37:48Z 2009-06-10T14:37:48Z <p><a href="http://www.codeproject.com/KB/cs/spellcheckdemo.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/spellcheckdemo.aspx</a></p> <p>Here is an additional older example from CodeProject. </p> http://stackoverflow.com/questions/972307/can-you-loop-through-all-enum-values-c/972326#972326 4 Answer by James Atkinson for Can You Loop Through All Enum Values? c# James Atkinson 2009-06-09T20:28:56Z 2009-06-09T20:28:56Z <pre><code>foreach (EMyEnum val in Enum.GetValues(typeof(EMyEnum))) { Console.WriteLine(val); } </code></pre> <p>Credit to Jon Skeet here: <a href="http://bytes.com/groups/net-c/266447-how-loop-each-items-enum" rel="nofollow">http://bytes.com/groups/net-c/266447-how-loop-each-items-enum</a></p> http://stackoverflow.com/questions/967309/how-do-i-change-my-development-environment-from-c-to-c-in-visual-studio-2008/967323#967323 5 Answer by James Atkinson for How do I change my development environment from C++ to C# in Visual Studio 2008? James Atkinson 2009-06-08T22:22:52Z 2009-06-08T22:22:52Z <p>Tools -> Import and Export Settings -> Import Selected Environment Settings... -> Make selection whether to save current settings -> Select C# under the default setting folder</p> http://stackoverflow.com/questions/953839/any-great-opensource-gui-applications-wrriten-in-c-with-winform/953848#953848 1 Answer by James Atkinson for Any great opensource GUI applications wrriten in C# with winform? James Atkinson 2009-06-05T01:10:25Z 2009-06-05T01:10:25Z <p>I believe <a href="http://www.paint.net/" rel="nofollow">Paint.NET</a> is/was a WinForms app. I've heard they are moving to WPF for next release.</p> http://stackoverflow.com/questions/953708/what-programming-language-best-bridges-the-gap-between-pseudocode-and-code/953715#953715 1 Answer by James Atkinson for What programming language best bridges the gap between pseudocode and code? James Atkinson 2009-06-05T00:08:38Z 2009-06-05T00:08:38Z <p>I've found <a href="http://boo.codehaus.org/" rel="nofollow">Boo</a> has become my "pseudocode" language when testing small bits of code for .NET. Very similar to a Python type syntax.</p> http://stackoverflow.com/questions/945912/using-the-lutz-reflector-for-seeing-il-code/945927#945927 6 Answer by James Atkinson for Using the Lutz reflector for seeing IL code James Atkinson 2009-06-03T17:12:14Z 2009-06-03T17:12:14Z <p>Yes you can. Open the exe/dll with Reflector and change the language setting to IL.</p> http://stackoverflow.com/questions/912662/when-passing-a-file-name-to-a-method-should-i-use-fileinfo-or-a-plain-file-name/912697#912697 5 Answer by James Atkinson for When passing a file name to a method, should I use FileInfo or a plain file name? James Atkinson 2009-05-26T20:50:34Z 2009-05-26T20:50:34Z <p>Typically I would pass the string. <strong>However, you could overload the method to make everyone happy.</strong></p> http://stackoverflow.com/questions/783926/what-are-extension-methods-and-what-makes-them-different-from-other-methods/783947#783947 0 Answer by James Atkinson for What are extension-methods -- and what makes them different from other methods? [Duplicate] James Atkinson 2009-04-23T23:18:28Z 2009-04-23T23:18:28Z <p>Extension Methods are methods you create to EXTEND an already existing type (string, int, char, or custom type).</p> <p>This allows you to add functionality to built-in or types created by others (in a dll for example).</p> http://stackoverflow.com/questions/778990/generic-authentication-call-to-active-directory-in-c/779022#779022 0 Answer by James Atkinson for Generic Authentication Call to Active Directory in C# James Atkinson 2009-04-22T20:21:23Z 2009-04-22T20:21:23Z <p>Admittedly I have no experience programming against AD, but the link below seems it might address your problem. </p> <p><a href="http://www.codeproject.com/KB/system/everythingInAD.aspx#35" rel="nofollow">http://www.codeproject.com/KB/system/everythingInAD.aspx#35</a></p> http://stackoverflow.com/questions/775391/whats-an-occupation-thats-similar-to-programming-but-isnt-programming/775406#775406 1 Answer by James Atkinson for What's an occupation that's similar to programming, but isn't programming? James Atkinson 2009-04-22T01:37:39Z 2009-04-22T01:37:39Z <p>Anything that requires:</p> <ul> <li>Critical thinking </li> <li>Problem solving</li> <li>Self improvement</li> <li>Self motivation</li> <li>Abstract thinking</li> </ul> <p>I think that is the requirement for any college graduate level jobs.</p> http://stackoverflow.com/questions/1712759/window-7-installation-process Comment by James Atkinson on Window 7 installation process James Atkinson 2009-11-11T03:13:16Z 2009-11-11T03:13:16Z Microsoft gave free upgrades for a limited time to those who purchased computers with Windows Vista just before Windows 7 launch. http://stackoverflow.com/questions/1691251/what-makes-a-process-appear-as-not-responding-in-windows Comment by James Atkinson on What makes a process appear as Not responding in Windows? James Atkinson 2009-11-06T23:54:23Z 2009-11-06T23:54:23Z if (OS == Vista) { DoNotRespond(); } http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not/268298#268298 Comment by James Atkinson on When writing code do you wrap text or not? James Atkinson 2009-11-06T01:15:44Z 2009-11-06T01:15:44Z @Edmund, See the answer below (Gamecat) http://stackoverflow.com/questions/501208/what-projects-do-you-feel-sorry-for/501218#501218 Comment by James Atkinson on What projects do you feel sorry for? James Atkinson 2009-10-05T02:05:19Z 2009-10-05T02:05:19Z Posted before the avatar change :) http://stackoverflow.com/questions/1353994/what-languages-and-tools-non-professional-programmers-non-cs-in-here-use/1354011#1354011 Comment by James Atkinson on What languages and tools non-professional-programmers (non cs) in here use ? James Atkinson 2009-08-30T16:37:06Z 2009-08-30T16:37:06Z I have a degree in Agriculture Technology and a minor in Agronomy from Kansas State Univ. http://stackoverflow.com/questions/1353994/what-languages-and-tools-non-professional-programmers-non-cs-in-here-use/1354011#1354011 Comment by James Atkinson on What languages and tools non-professional-programmers (non cs) in here use ? James Atkinson 2009-08-30T15:30:25Z 2009-08-30T15:30:25Z Mostly agricultural and GPS related software for Windows. http://stackoverflow.com/questions/1348080/convert-a-positive-number-to-negative-in-c/1348106#1348106 Comment by James Atkinson on Convert a positive number to negative in C# James Atkinson 2009-08-28T16:35:14Z 2009-08-28T16:35:14Z +1.. beat me to it. http://stackoverflow.com/questions/1342562/take-a-high-resolution-screenshot-of-a-website Comment by James Atkinson on Take a high resolution screenshot of a website James Atkinson 2009-08-27T17:35:33Z 2009-08-27T17:35:33Z If using Vista, you could use the Snippet utility. http://stackoverflow.com/questions/1341075/messagebox-help Comment by James Atkinson on MessageBox help James Atkinson 2009-08-27T13:43:08Z 2009-08-27T13:43:08Z @Darknight this question was not asked by someone with 13.3K... http://stackoverflow.com/questions/1338386/important-differences-between-web-programming-or-desktop-application-programming Comment by James Atkinson on Important differences between web programming or desktop application programming? James Atkinson 2009-08-27T01:20:24Z 2009-08-27T01:20:24Z Almost impossible to debate considering desktop applications could also include games and other &quot;non-traditional&quot; applications. Thats just one example http://stackoverflow.com/questions/1330630/in-which-situations-should-i-use-garbage-collect-method/1330666#1330666 Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method? James Atkinson 2009-08-25T21:17:04Z 2009-08-25T21:17:04Z @David, exactly... and proves that &quot;NEVER&quot; is not a truely correct answer. http://stackoverflow.com/questions/1330852/where-to-download-visual-studio-express-2005/1330909#1330909 Comment by James Atkinson on Where to download visual studio express 2005? James Atkinson 2009-08-25T20:52:25Z 2009-08-25T20:52:25Z Again, there is a LINK at the bottom of the download page for 2005. http://stackoverflow.com/questions/1330630/in-which-situations-should-i-use-garbage-collect-method/1330638#1330638 Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method? James Atkinson 2009-08-25T20:34:17Z 2009-08-25T20:34:17Z My bet is those who are preaching against using it have never tried it themselves. http://stackoverflow.com/questions/1330630/in-which-situations-should-i-use-garbage-collect-method/1330638#1330638 Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method? James Atkinson 2009-08-25T20:16:59Z 2009-08-25T20:16:59Z @280Z28 The intent of the comment was to show that sometimes, us programmers.. understand what is needed by our application better than the computer does. You could make this same argument about using pointers. http://stackoverflow.com/questions/1330630/in-which-situations-should-i-use-garbage-collect-method/1330666#1330666 Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method? James Atkinson 2009-08-25T20:15:16Z 2009-08-25T20:15:16Z Martin, even with &quot;disposing&quot;, garbage collection was not having a real time effect needed for the application to work properly. Even if disposed, it doesnt mean it will be collected at that point. Try it... open and resave hundreds of images in a loop at watch your system memory.