User Cookey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T08:43:57Z http://stackoverflow.com/feeds/user/1952 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1846493/i-need-an-alternative-to-server-based-reporting-services/1846513#1846513 0 Answer by Cookey for I need an alternative to server based Reporting Services Cookey 2009-12-04T11:56:54Z 2009-12-04T12:03:26Z <p>Have you looked at the client version of reporting built into Visual Studio? They are almost identical to Reporting services reports. </p> <p>The structure of ssrs2005 reports are identical to vs2008 reports so can be converted by renaming the extension .rdl to .rdlc, not so with ssrs2008 reports as the newer structure hasn't been supported in visual studio yet.</p> http://stackoverflow.com/questions/1782458/copy-data-from-access-to-sql/1782497#1782497 0 Answer by Cookey for Copy data from Access to SQL Cookey 2009-11-23T11:15:41Z 2009-11-23T11:15:41Z <p>Its possible to link SQL Server tables into Access where your Access forms can enter the data in as normal but it will actually be going into SQL Server. </p> http://stackoverflow.com/questions/908216/if-ie8-is-installed-how-can-i-test-ie6-and-ie7-compatibility/908261#908261 3 Answer by Cookey for If IE8 is installed, how can I test IE6 and IE7 compatibility? Cookey 2009-05-25T22:26:43Z 2009-11-04T13:26:52Z <p>Check out Microsoft's free SuperPreview software for comparing how pages render in IE 6,7 and 8, as well as firefox, chrome etc.</p> <p><a href="http://www.microsoft.com/expression/try-it/superpreview/" rel="nofollow">SuperPreview</a></p> http://stackoverflow.com/questions/188503/detecting-the-number-of-processors 10 Detecting the number of processors Cookey 2008-10-09T18:18:24Z 2009-08-11T13:06:05Z <p>How do you detect the number of physical processors/cores in .net?</p> http://stackoverflow.com/questions/59294/in-sql-whats-the-difference-between-countcolumn-and-count/59352#59352 5 Answer by Cookey for In SQL, what's the difference between count(column) and count(*)? Cookey 2008-09-12T15:41:27Z 2009-07-16T12:46:08Z <p>As explaned in the help file:</p> <p>COUNT(*) returns the number of items in a group, including NULL values and duplicates.</p> <p>COUNT(expression) evaluates expression for each row in a group and returns the number of nonnull values.</p> <p>EDIT - This was from Books Online, if you don't have it installed you can find it <a href="http://technet.microsoft.com/en-gb/library/ms166019.aspx" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/965714/installing-the-net-reference-source-code-rscc/965800#965800 1 Answer by Cookey for Installing the .NET reference source code (RSCC) Cookey 2009-06-08T16:36:33Z 2009-06-08T20:12:49Z <p>It seems like there are two setups, one to download all the files and another to get them on demand. When I tried this I used the <a href="http://www.codeproject.com/KB/dotnet/netmassdownloader.aspx" rel="nofollow">netmassdownloader</a> project on code project, which got all the pdb files for me but it still doesn't seem to step into the code.</p> <p>Edit: The file source.zip.tmp is 140 mb and it seems like it should have been unpacked by the setup. Someone has written about this <a href="http://incrediblejourneysintotheknown.blogspot.com/2008/10/unpacking-net-framework-source-code.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/952023/in-c-net-how-does-one-access-a-control-from-a-static-method/952076#952076 2 Answer by Cookey for In C# .net, How does one access a control from a static method? Cookey 2009-06-04T17:43:40Z 2009-06-04T17:47:59Z <p>Its possible to pass in a reference to the current form like this:</p> <pre><code>public static void ReceiveMSG(string message, MainForm mainform) { mainform.txtDisplayMessages.AppendText(message); } </code></pre> <p>Although as suggested an event is probably a better way of doing it.</p> http://stackoverflow.com/questions/906564/why-is-modulus-operator-not-working-for-double-in-c/906619#906619 0 Answer by Cookey for Why is modulus operator not working for double in c#? Cookey 2009-05-25T12:52:19Z 2009-05-25T12:52:19Z <p>Modulus is defined in msdn as:</p> <p>x - (x / y) * y</p> <p>If you do it this way manually it seems to get the correct result.</p> http://stackoverflow.com/questions/904345/how-do-i-add-code-to-the-exit-button-in-a-c-form/904355#904355 9 Answer by Cookey for How do I add code to the exit button in a c# form? Cookey 2009-05-24T18:18:19Z 2009-05-24T18:18:19Z <p>Using the FormClosing Event should catch any way of closing the form.</p> http://stackoverflow.com/questions/897482/visual-c-2008-express-connection-to-sql-server-2008-express-problem/897578#897578 0 Answer by Cookey for Visual C# 2008 Express connection to SQL Server 2008 Express problem Cookey 2009-05-22T12:21:35Z 2009-05-22T12:21:35Z <p>You described option 3 - Microsoft SQL Server Database File, you should be able to use this to point to your .mdf file and it will be able to connect just from this.</p> http://stackoverflow.com/questions/152028/are-there-any-ok-image-recognition-libraries-for-net/358150#358150 0 Answer by Cookey for Are there any 'ok' Image Recognition libraries for .NET? Cookey 2008-12-11T00:55:20Z 2009-03-03T20:59:52Z <p>You might also find this interesting:</p> <p><a href="http://www.codeplex.com/IR/" rel="nofollow">www.codeplex.com/IR/</a></p> http://stackoverflow.com/questions/460935/pros-and-cons-of-appsettings-vs-applicationsettings-net-app-config/461311#461311 5 Answer by Cookey for Pros and cons of appSettings vs applicationSettings (.NET app.config) Cookey 2009-01-20T13:42:29Z 2009-02-12T21:57:48Z <p>Application settings can be controlled from a designer (there is usually a Settings.settings file by default) so its easier to modify and you can access them programmatically through the Settings class where they appear like a strongly typed property. You can also have application and user level settings, as well as default settings for rolling back.</p> <p>This is available from .net 2.0 onwards and deprecates the other way of doing it (as far as I can tell).</p> <p>More detail is given at: <a href="http://msdn.microsoft.com/en-us/library/k4s6c3a0.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/k4s6c3a0.aspx</a></p> http://stackoverflow.com/questions/539224/getting-an-object-back-from-my-gridview-rows/539267#539267 0 Answer by Cookey for Getting an object back from my GridView rows Cookey 2009-02-11T23:03:01Z 2009-02-11T23:08:04Z <p>If you want to hold onto an object like this its easiest to use the viewstate, although you will be duplicating the data but for a small object it should be ok.</p> <pre><code>ViewState.Add("EmailObj", Email); EMail email = (Email)ViewState["EmailObj"]; </code></pre> http://stackoverflow.com/questions/529971/asp-net-application-cant-connect-to-sql-server-2005-database/530251#530251 3 Answer by Cookey for ASP.net application can't connect to sql server 2005 database. Cookey 2009-02-09T22:10:23Z 2009-02-09T22:10:23Z <p>By default IIS will try to use an ASPNET account which needs to be granted access to SQL Server. I don't have a setup anymore to describe this but the following link offers a couple of solutions:</p> <p><a href="http://bytes.com/groups/net-asp/290050-setting-up-integrated-security-sql-server" rel="nofollow">bytes.com/groups/net-asp/290050-setting-up-integrated-security-sql-server</a></p> http://stackoverflow.com/questions/507291/should-we-select-vb-net-or-c-when-upgrading-our-legacy-apps/508224#508224 0 Answer by Cookey for Should we select VB.NET or C# when upgrading our legacy apps? Cookey 2009-02-03T18:02:27Z 2009-02-03T18:02:27Z <p>I'm not biased to either language but you do have to factor in that if the majority of developers are into c# then that makes recruiting these developers easier, you may also find more examples and resources in this language as well. </p> <p>At the end of the day you are learning about the .net framework as much as you are learning about the language, for me this is where the majority of the learning is.</p> http://stackoverflow.com/questions/142003/cross-thread-operation-not-valid-control-accessed-from-a-thread-other-than-the-t/437759#437759 0 Answer by Cookey for Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on. Cookey 2009-01-13T02:13:35Z 2009-01-13T02:13:35Z <p>I have had this problem with the FileSystemWatcher and found that the following code solved the problem:</p> <p><code>fsw.SynchronizingObject = this</code></p> <p>The control then uses the current form object to deal with the events, and will therefore be on the same thread.</p> http://stackoverflow.com/questions/34635/how-do-i-get-the-assembler-output-from-a-c-file-in-vs2005 2 How do I get the assembler output from a C file in VS2005 Cookey 2008-08-29T16:25:58Z 2008-11-16T01:56:42Z <p>I think the file that is produced is an .asm file, any idea how to produce this in Visual Studio when you do a build?</p> http://stackoverflow.com/questions/220867/how-to-deal-with-xml-in-c/222576#222576 1 Answer by Cookey for How to deal with XML in C# Cookey 2008-10-21T16:41:01Z 2008-10-21T16:41:01Z <p>If you create a typed dataset in the designer then you automatically get an xsd, a strongly typed object, and can load and save the xml with one line of code.</p> http://stackoverflow.com/questions/57473/converting-vb-net-to-c-tips/57548#57548 1 Answer by Cookey for Converting vb.net to c# tips Cookey 2008-09-11T20:32:59Z 2008-09-15T15:46:00Z <p>Here's a quick <a href="http://www.harding.edu/fmccown/vbnet_csharp_comparison.html" rel="nofollow">comparison chart</a> I look at when I switch between languages.</p> http://stackoverflow.com/questions/55180/in-python-how-can-you-easily-retrieve-sorted-items-from-a-dictionary/59235#59235 0 Answer by Cookey for In Python, how can you easily retrieve sorted items from a dictionary? Cookey 2008-09-12T15:11:00Z 2008-09-12T15:11:00Z <p>You can also sort a dictionary by value and control the sort order:</p> <pre><code>import operator d = {'b' : 'this is 3', 'a': 'this is 2' , 'c' : 'this is 1'} for key, value in sorted(d.iteritems(), key=operator.itemgetter(1), reverse=True): print key, " ", value </code></pre> <p>Output:<br /> b this is 3<br /> a this is 2<br /> c this is 1</p> http://stackoverflow.com/questions/26799/how-do-you-back-up-your-development-machine/32783#32783 0 Answer by Cookey for How do you back up your development machine? Cookey 2008-08-28T16:49:33Z 2008-08-28T16:49:33Z <p>I use xcopy to copy all my personal files to an external hard drive on startup.</p> <p>Here's my startup.bat:</p> <p>xcopy d:\files f:\backup\files /D /E /Y /EXCLUDE:BackupExclude.txt</p> <p>This recurses directories, only copies files that have been modified and suppresses the message to replace an existing file, the list of files/folders in BackupExclude.txt will not be copied.</p> http://stackoverflow.com/questions/16963/who-actually-uses-datagrid-gridview-formview-etc-in-production-apps/24388#24388 1 Answer by Cookey for Who actually uses DataGrid/GridView/FormVIew/etc in production apps? Cookey 2008-08-23T17:07:07Z 2008-08-23T17:07:07Z <p>For anything long term I would try to avoid datagrid/gridview, it sometimes becomes too hacky making it do exactly what you want, after a certain number of these tweaks you start to realise its not saving time in the long run and you might not be getting the control over markup that you need.</p> <p>However the built in paging and sorting functionality works well and in 2008 there is a new ListView control which aims to sort some of these problems out and give you tighter control of the html that is output.</p> http://stackoverflow.com/questions/24252/starting-with-net/24367#24367 1 Answer by Cookey for Starting with .NET Cookey 2008-08-23T16:48:43Z 2008-08-23T16:48:43Z <p>Training videos, tutorials and documentation at: <a href="http://www.asp.net/learn/" rel="nofollow">www.asp.net/learn</a>.</p> http://stackoverflow.com/questions/10925/input-validation-what-are-some-top-issues-to-look-out-for-and-lessons-you-have/16459#16459 0 Answer by Cookey for Input Validation - What are some top issues to look out for, and lessons you have learned? Cookey 2008-08-19T15:57:38Z 2008-08-19T15:57:38Z <p>Fast keyboard entry can often be a goal as already mentioned, but on top of this I've often had to make sure they stop and think in the appropriate place as well, this is quite hard as users will find quick ways of doing things - I've been asked to remove keyboard shortcuts on some occasions to force them to pick up the mouse and select something, which data entry people really hate! but it breaks up their rhythm at a certain point to force them to check something.</p> <p>Watching people actually use and abuse your forms is always valuable rather than just waiting for feedback from them.</p> http://stackoverflow.com/questions/711672/c-htmldecode-without-system-web-possible Comment by Cookey on C# HTMLDecode without System.Web possible? Cookey 2009-11-28T20:36:27Z 2009-11-28T20:36:27Z This is relevant if you want to use the client only subset of the framework, +1. http://stackoverflow.com/questions/1782458/copy-data-from-access-to-sql/1782497#1782497 Comment by Cookey on Copy data from Access to SQL Cookey 2009-11-23T11:42:33Z 2009-11-23T11:42:33Z Its possible to schedule the data transfer in SQL Server to happen regularly, not ideal though really. http://stackoverflow.com/questions/90/good-branch-merge-tutorials-for-tortoise-svn/94#94 Comment by Cookey on Good branch/merge tutorials for Tortoise SVN? Cookey 2009-11-21T01:10:59Z 2009-11-21T01:10:59Z Worth noting the discussion below the 'Day-to-day' article as it suggests an alternative method of branching from the guide which seems to be a better approach, good article though. http://stackoverflow.com/questions/908216/if-ie8-is-installed-how-can-i-test-ie6-and-ie7-compatibility/908261#908261 Comment by Cookey on If IE8 is installed, how can I test IE6 and IE7 compatibility? Cookey 2009-11-04T13:26:01Z 2009-11-04T13:26:01Z No its just a static screen shot. http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/961946#961946 Comment by Cookey on What is the worst programming language you ever worked with? Cookey 2009-06-08T16:48:54Z 2009-06-08T16:48:54Z I agree but I still miss changing the code while I am debugging.. http://stackoverflow.com/questions/906564/why-is-modulus-operator-not-working-for-double-in-c/906619#906619 Comment by Cookey on Why is modulus operator not working for double in c#? Cookey 2009-05-25T21:40:45Z 2009-05-25T21:40:45Z Not sure why this &quot;should&quot; work, but it does with the 2 doubles provided in the example. http://stackoverflow.com/questions/105932/how-to-record-window-position-in-winforms-application-settings/106010#106010 Comment by Cookey on How to record window position in WinForms application settings Cookey 2009-04-01T17:07:44Z 2009-04-01T17:07:44Z Great sample code! http://stackoverflow.com/questions/496817/do-you-find-that-programmers-generally-get-half-way-through-a-project-and-then-sl/496861#496861 Comment by Cookey on Do you find that programmers generally get half way through a project and then slow to a crawl and how to resolve this? Cookey 2009-01-30T23:07:42Z 2009-01-30T23:07:42Z +1 its about time estimation. http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406848#406848 Comment by Cookey on What's your most controversial programming opinion? Cookey 2009-01-14T14:34:38Z 2009-01-14T14:34:38Z Learning a new language is easy for any programmer, learning the framework in depth takes much longer and is more beneficial. http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78781#78781 Comment by Cookey on What do you use to keep notes as a developer? Cookey 2008-10-07T11:57:40Z 2008-10-07T11:57:40Z I do exactly the same thing, keep it with me at all times. If you press hard enough you get a backup on the page underneath! http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/48334#48334 Comment by Cookey on What is your solution to the FizzBuzz problem? Cookey 2008-09-12T16:44:55Z 2008-09-12T16:44:55Z So simple and elegant! http://stackoverflow.com/questions/58640/great-programming-quotes/58854#58854 Comment by Cookey on Great programming quotes Cookey 2008-09-12T16:00:12Z 2008-09-12T16:00:12Z So true, its painfull.