User Cookey - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T08:43:57Zhttp://stackoverflow.com/feeds/user/1952http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1846493/i-need-an-alternative-to-server-based-reporting-services/1846513#18465130Answer by Cookey for I need an alternative to server based Reporting ServicesCookey2009-12-04T11:56:54Z2009-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#17824970Answer by Cookey for Copy data from Access to SQLCookey2009-11-23T11:15:41Z2009-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#9082613Answer by Cookey for If IE8 is installed, how can I test IE6 and IE7 compatibility? Cookey2009-05-25T22:26:43Z2009-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-processors10Detecting the number of processorsCookey2008-10-09T18:18:24Z2009-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#593525Answer by Cookey for In SQL, what's the difference between count(column) and count(*)?Cookey2008-09-12T15:41:27Z2009-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#9658001Answer by Cookey for Installing the .NET reference source code (RSCC)Cookey2009-06-08T16:36:33Z2009-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#9520762Answer by Cookey for In C# .net, How does one access a control from a static method?Cookey2009-06-04T17:43:40Z2009-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#9066190Answer by Cookey for Why is modulus operator not working for double in c#?Cookey2009-05-25T12:52:19Z2009-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#9043559Answer by Cookey for How do I add code to the exit button in a c# form?Cookey2009-05-24T18:18:19Z2009-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#8975780Answer by Cookey for Visual C# 2008 Express connection to SQL Server 2008 Express problemCookey2009-05-22T12:21:35Z2009-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#3581500Answer by Cookey for Are there any 'ok' Image Recognition libraries for .NET?Cookey2008-12-11T00:55:20Z2009-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#4613115Answer by Cookey for Pros and cons of appSettings vs applicationSettings (.NET app.config)Cookey2009-01-20T13:42:29Z2009-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#5392670Answer by Cookey for Getting an object back from my GridView rowsCookey2009-02-11T23:03:01Z2009-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#5302513Answer by Cookey for ASP.net application can't connect to sql server 2005 database.Cookey2009-02-09T22:10:23Z2009-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#5082240Answer by Cookey for Should we select VB.NET or C# when upgrading our legacy apps?Cookey2009-02-03T18:02:27Z2009-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#4377590Answer by Cookey for Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on.Cookey2009-01-13T02:13:35Z2009-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-vs20052How do I get the assembler output from a C file in VS2005Cookey2008-08-29T16:25:58Z2008-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#2225761Answer by Cookey for How to deal with XML in C#Cookey2008-10-21T16:41:01Z2008-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#575481Answer by Cookey for Converting vb.net to c# tipsCookey2008-09-11T20:32:59Z2008-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#592350Answer by Cookey for In Python, how can you easily retrieve sorted items from a dictionary?Cookey2008-09-12T15:11:00Z2008-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#327830Answer by Cookey for How do you back up your development machine?Cookey2008-08-28T16:49:33Z2008-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#243881Answer by Cookey for Who actually uses DataGrid/GridView/FormVIew/etc in production apps?Cookey2008-08-23T17:07:07Z2008-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#243671Answer by Cookey for Starting with .NETCookey2008-08-23T16:48:43Z2008-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#164590Answer by Cookey for Input Validation - What are some top issues to look out for, and lessons you have learned?Cookey2008-08-19T15:57:38Z2008-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-possibleComment by Cookey on C# HTMLDecode without System.Web possible?Cookey2009-11-28T20:36:27Z2009-11-28T20:36:27ZThis 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#1782497Comment by Cookey on Copy data from Access to SQLCookey2009-11-23T11:42:33Z2009-11-23T11:42:33ZIts 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#94Comment by Cookey on Good branch/merge tutorials for Tortoise SVN?Cookey2009-11-21T01:10:59Z2009-11-21T01:10:59ZWorth 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#908261Comment by Cookey on If IE8 is installed, how can I test IE6 and IE7 compatibility? Cookey2009-11-04T13:26:01Z2009-11-04T13:26:01ZNo its just a static screen shot.http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/961946#961946Comment by Cookey on What is the worst programming language you ever worked with?Cookey2009-06-08T16:48:54Z2009-06-08T16:48:54ZI 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#906619Comment by Cookey on Why is modulus operator not working for double in c#?Cookey2009-05-25T21:40:45Z2009-05-25T21:40:45ZNot sure why this "should" 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#106010Comment by Cookey on How to record window position in WinForms application settingsCookey2009-04-01T17:07:44Z2009-04-01T17:07:44ZGreat sample code!http://stackoverflow.com/questions/496817/do-you-find-that-programmers-generally-get-half-way-through-a-project-and-then-sl/496861#496861Comment 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?Cookey2009-01-30T23:07:42Z2009-01-30T23:07:42Z+1 its about time estimation.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406848#406848Comment by Cookey on What's your most controversial programming opinion?Cookey2009-01-14T14:34:38Z2009-01-14T14:34:38ZLearning 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#78781Comment by Cookey on What do you use to keep notes as a developer?Cookey2008-10-07T11:57:40Z2008-10-07T11:57:40ZI 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#48334Comment by Cookey on What is your solution to the FizzBuzz problem?Cookey2008-09-12T16:44:55Z2008-09-12T16:44:55ZSo simple and elegant!http://stackoverflow.com/questions/58640/great-programming-quotes/58854#58854Comment by Cookey on Great programming quotesCookey2008-09-12T16:00:12Z2008-09-12T16:00:12ZSo true, its painfull.