User James Atkinson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T05:47:08Zhttp://stackoverflow.com/feeds/user/2982http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799036/passing-return-value-of-a-function-as-an-argument/1799048#17990480Answer by James Atkinson for Passing return value of a function as an argumentJames Atkinson2009-11-25T18:35:27Z2009-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#13602691Answer by James Atkinson for what practices need to follow to let other people understand your code intuitivelyJames Atkinson2009-09-01T02:32:33Z2009-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#13599881Answer by James Atkinson for Convince me to move to .net 3.5 (from 2.0)James Atkinson2009-09-01T00:07:09Z2009-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#13540111Answer by James Atkinson for What languages and tools non-professional-programmers (non cs) in here use ?James Atkinson2009-08-30T14:33:14Z2009-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#13530740Answer by James Atkinson for Cast and ConvertJames Atkinson2009-08-30T04:21:34Z2009-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#13498061Answer by James Atkinson for Windows Forms: is it possible to draw the elements of a combobox, right-justified?James Atkinson2009-08-28T23:03:20Z2009-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#13410877Answer by James Atkinson for MessageBox helpJames Atkinson2009-08-27T13:25:43Z2009-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#53771026Answer by James Atkinson for Where do you keep your code?James Atkinson2009-02-11T16:46:06Z2009-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#11740143Answer by James Atkinson for passing variables into another formJames Atkinson2009-07-23T19:41:20Z2009-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#11453011Answer by James Atkinson for Is Boo 100% C# compatible?James Atkinson2009-07-17T19:44:17Z2009-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#10221403Answer by James Atkinson for Best practice to persist config/user info in .NET appJames Atkinson2009-06-20T18:05:25Z2009-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#9937761Answer by James Atkinson for Desirable Features for the "ideal IDE" ?James Atkinson2009-06-14T21:18:15Z2009-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 & support</li>
<li>Cross platform</li>
</ul>
http://stackoverflow.com/questions/991105/developing-own-firefox-add-on-along-with-other-add-ons/991111#9911112Answer by James Atkinson for Developing own firefox add-on along with other add-on'sJames Atkinson2009-06-13T17:29:45Z2009-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#9843204Answer by James Atkinson for Which language would you use in your OS?James Atkinson2009-06-11T23:30:24Z2009-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#9839056Answer by James Atkinson for How much planning do you do before starting to code?James Atkinson2009-06-11T21:45:21Z2009-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#9836853Answer by James Atkinson for What should my new coding language be?James Atkinson2009-06-11T21:06:40Z2009-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#9788155Answer by James Atkinson for Showing Datetime using C#James Atkinson2009-06-11T00:47:56Z2009-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#9787302Answer by James Atkinson for Garbage collection in .NET (generations)James Atkinson2009-06-11T00:09:32Z2009-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#9762323Answer by James Atkinson for How to link vc++ and c# projects in visual studio ??James Atkinson2009-06-10T15:12:53Z2009-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#9760252Answer by James Atkinson for Drawbacks and benefits of doing PhD in computer science?James Atkinson2009-06-10T14:44:01Z2009-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#9759860Answer by James Atkinson for Using MS Office's Spellchecking feature with C# James Atkinson2009-06-10T14:37:48Z2009-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#9723264Answer by James Atkinson for Can You Loop Through All Enum Values? c#James Atkinson2009-06-09T20:28:56Z2009-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#9673235Answer by James Atkinson for How do I change my development environment from C++ to C# in Visual Studio 2008?James Atkinson2009-06-08T22:22:52Z2009-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#9538481Answer by James Atkinson for Any great opensource GUI applications wrriten in C# with winform?James Atkinson2009-06-05T01:10:25Z2009-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#9537151Answer by James Atkinson for What programming language best bridges the gap between pseudocode and code?James Atkinson2009-06-05T00:08:38Z2009-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#9459276Answer by James Atkinson for Using the Lutz reflector for seeing IL codeJames Atkinson2009-06-03T17:12:14Z2009-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#9126975Answer by James Atkinson for When passing a file name to a method, should I use FileInfo or a plain file name?James Atkinson2009-05-26T20:50:34Z2009-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#7839470Answer by James Atkinson for What are extension-methods -- and what makes them different from other methods? [Duplicate]James Atkinson2009-04-23T23:18:28Z2009-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#7790220Answer by James Atkinson for Generic Authentication Call to Active Directory in C#James Atkinson2009-04-22T20:21:23Z2009-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#7754061Answer by James Atkinson for What's an occupation that's similar to programming, but isn't programming?James Atkinson2009-04-22T01:37:39Z2009-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-processComment by James Atkinson on Window 7 installation processJames Atkinson2009-11-11T03:13:16Z2009-11-11T03:13:16ZMicrosoft 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-windowsComment by James Atkinson on What makes a process appear as Not responding in Windows?James Atkinson2009-11-06T23:54:23Z2009-11-06T23:54:23Zif (OS == Vista) { DoNotRespond(); }http://stackoverflow.com/questions/268284/when-writing-code-do-you-wrap-text-or-not/268298#268298Comment by James Atkinson on When writing code do you wrap text or not?James Atkinson2009-11-06T01:15:44Z2009-11-06T01:15:44Z@Edmund, See the answer below (Gamecat)http://stackoverflow.com/questions/501208/what-projects-do-you-feel-sorry-for/501218#501218Comment by James Atkinson on What projects do you feel sorry for?James Atkinson2009-10-05T02:05:19Z2009-10-05T02:05:19ZPosted before the avatar change :) http://stackoverflow.com/questions/1353994/what-languages-and-tools-non-professional-programmers-non-cs-in-here-use/1354011#1354011Comment by James Atkinson on What languages and tools non-professional-programmers (non cs) in here use ?James Atkinson2009-08-30T16:37:06Z2009-08-30T16:37:06ZI 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#1354011Comment by James Atkinson on What languages and tools non-professional-programmers (non cs) in here use ?James Atkinson2009-08-30T15:30:25Z2009-08-30T15:30:25ZMostly agricultural and GPS related software for Windows.http://stackoverflow.com/questions/1348080/convert-a-positive-number-to-negative-in-c/1348106#1348106Comment by James Atkinson on Convert a positive number to negative in C#James Atkinson2009-08-28T16:35:14Z2009-08-28T16:35:14Z+1.. beat me to it.http://stackoverflow.com/questions/1342562/take-a-high-resolution-screenshot-of-a-websiteComment by James Atkinson on Take a high resolution screenshot of a websiteJames Atkinson2009-08-27T17:35:33Z2009-08-27T17:35:33ZIf using Vista, you could use the Snippet utility.http://stackoverflow.com/questions/1341075/messagebox-helpComment by James Atkinson on MessageBox helpJames Atkinson2009-08-27T13:43:08Z2009-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-programmingComment by James Atkinson on Important differences between web programming or desktop application programming?James Atkinson2009-08-27T01:20:24Z2009-08-27T01:20:24ZAlmost impossible to debate considering desktop applications could also include games and other "non-traditional" applications. Thats just one examplehttp://stackoverflow.com/questions/1330630/in-which-situations-should-i-use-garbage-collect-method/1330666#1330666Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method?James Atkinson2009-08-25T21:17:04Z2009-08-25T21:17:04Z@David, exactly... and proves that "NEVER" is not a truely correct answer.http://stackoverflow.com/questions/1330852/where-to-download-visual-studio-express-2005/1330909#1330909Comment by James Atkinson on Where to download visual studio express 2005?James Atkinson2009-08-25T20:52:25Z2009-08-25T20:52:25ZAgain, 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#1330638Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method?James Atkinson2009-08-25T20:34:17Z2009-08-25T20:34:17ZMy 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#1330638Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method?James Atkinson2009-08-25T20:16:59Z2009-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#1330666Comment by James Atkinson on In which situations SHOULD I use Garbage.Collect method?James Atkinson2009-08-25T20:15:16Z2009-08-25T20:15:16ZMartin, even with "disposing", 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.