User ManiacZX - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T07:29:01Z http://stackoverflow.com/feeds/user/18148 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1729622/select-from-sql/1730373#1730373 0 Answer by ManiacZX for SELECT from SQL ManiacZX 2009-11-13T16:36:27Z 2009-11-13T16:36:27Z <p>To deal with the 0 population division by zero, I'd suggest using a <a href="http://www.4guysfromrolla.com/webtech/102704-1.shtml" rel="nofollow">CASE statement</a></p> <pre><code>SELECT Name, CASE IsNull(population,0) WHEN 0 THEN 0 ELSE THEN gdp/population END AS 'PerCapitaGDP' FROM Countries </code></pre> <p>This will work on MS SQL Server, you may need to look up syntax for which DBMS you are using (for example, it looks like MySQL uses END CASE instead of just END)</p> http://stackoverflow.com/questions/1632876/problem-created-by-load-balancing/1632877#1632877 1 Answer by ManiacZX for Problem created by load balancing ManiacZX 2009-10-27T18:21:43Z 2009-10-27T18:48:24Z <p>If you are splitting the web servers but have a common database server, then writing that information to the database is an option.</p> <p>You can create a name/value table to store the variables that you commonly are storing in the application.</p> http://stackoverflow.com/questions/1629205/windows-forms-create-the-main-application-after-login-which-form-to-run/1629359#1629359 1 Answer by ManiacZX for Windows Forms: create the main application after login, which form to run? ManiacZX 2009-10-27T08:06:01Z 2009-10-27T08:06:01Z <p>You can call your authentication form before starting up your main application form inside of Program.cs (default name), such as:</p> <pre><code> static void Main() { Form1 f1 = new Form1(); DialogResult dr = f1.ShowDialog(); if (dr == DialogResult.OK) { Application.Run(new Form2()); } else { Application.Exit(); } } </code></pre> <p>Inside of Form1 if they properly authenticate then you just need to end with:</p> <pre><code> this.DialogResult = DialogResult.OK; this.Close(); </code></pre> <p>If the authentication fails, you can allow them to re-attempt authentication, give them a max number of attempts, etc. Then when you decide they have had too much just call</p> <pre><code> Application.Exit(); </code></pre> http://stackoverflow.com/questions/353795/inherited-a-php-nightmare-where-to-start/353909#353909 1 Answer by ManiacZX for Inherited a PHP nightmare, where to start? ManiacZX 2008-12-09T19:24:04Z 2008-12-09T19:24:04Z <p>I think all 5 of your points hit on some classic ASP projects I've inherited, and a PHP one too...</p> <p>I completely agree with the others on get it in source control ASAP and use VMWare, VirtualBox, etc for a test environment.</p> <p>Make sure to get your database versioned too, especially if the procedures have extra logic in them (not just straight insert, update, delete). DB versioning takes more attention then the php pages. You need to generate all of the objects to sql scripts and put those scripts into source control. Then as you change db structure, procedures, etc you need to update the scripts so you have a history of those changes too.</p> <p>As for figuring out what is using what on the database side I would suggest looking at <a href="http://www.apexsql.com/sql_tools_clean.asp" rel="nofollow">ApexSQL Clean</a>. I used this on a project with several hundred ASP files, 200+ tables and about 400 stored procedures. I was able to identify 20 or so tables that were not in use and about 25% of the stored procedures. With ApexSQL Clean you can add all of your php files into the dependency check along with the tables, views and stored procs. Grab the 30 day trial and check it out, it will save you a lot of time.</p> <p>For what files were in use for the website, I had web server logs for the previous month and ran searches against them for anything I was unsure on. I do also like a variation on what Aistina suggested on modifying the files to log when they are accessed. Maybe have it go to a table in the database you setup that is filename and access count and for every time that file is loaded it increments the count. Then after a period of time you can look over the counts and determine what can go.</p> http://stackoverflow.com/questions/292551/modifying-excel-spreadsheet-with-net/292725#292725 0 Answer by ManiacZX for Modifying Excel spreadsheet with .NET ManiacZX 2008-11-15T16:25:53Z 2008-11-15T16:25:53Z <p>You may want to take a look at <a href="http://www.gemboxsoftware.com/GBSpreadsheetFree.htm" rel="nofollow">http://www.gemboxsoftware.com/GBSpreadsheetFree.htm</a>.</p> <p>They have a free version with all features but limited to 150 rows per sheet and 5 sheets per workbook, if that falls within your needs, otherwise the paid version starts at $425 for a 1 Developer License.</p> <p>There are additional answers that may apply to your question at <a href="http://stackoverflow.com/questions/151005/create-excel-xls-and-xlsx-file-from-c">StackOverflow: Create Excel (.XLS and .XLSX) file from C#</a>.</p> http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/238128#238128 1 Answer by ManiacZX for The funniest/weirdest error message you've got from a development environment/application ManiacZX 2008-10-26T15:05:56Z 2008-10-26T15:05:56Z <p>I can't remember where it was, but I've gotten something along the lines of</p> <p>"An error occurred while trying to display the error message."</p> http://stackoverflow.com/questions/169497/best-dual-hd-set-up-for-development/169536#169536 1 Answer by ManiacZX for Best Dual HD Set up for Development ManiacZX 2008-10-04T01:55:15Z 2008-10-04T01:55:15Z <p>I would suggest if 160gb total capacity will cover your needs (plenty of space for OS, Applications and source code, just depends on what else you plan to put on it), then you should mirror the drives in a RAID 1 unless you will have a server that data is backed up to, an external hard drive, an online backup solution, or some other means of keeping a copy of data on more then one physical drive.</p> <p>If you need to use all of the drive capacity, I would suggest using the first drive for OS and Applications and second drive for data. Purely for the fact of, if you change computers at some point, the OS on the first drive doesn't do you much good and most Applications would have to be reinstalled, but you could take the entire data drive with you.</p> <p>As for dividing off the OS, a big downfall of this is not giving the partition enough space and eventually you may need to use partitioning software to steal some space from the other partition on the drive. It never seems to fail that you allocate a certain amount of space for the OS partition, right after install you have several gigs free space so you think you are fine, but as time goes by, things build up on that partition and you run out of space.</p> <p>With that in mind, I still typically do use an OS partition as it is useful when reloading a system, you can format that partition blowing away the OS but keep the rest of your data. Ways to keep the space build up from happening too fast is change the location of your my documents folder, change environment variables for items such as temp and tmp. However, there are some things that just refuse to put their data anywhere besides on the system partition. I used to use 10gb, these days I go for 20gb.</p> <p>Dividing your swap space can be useful for keeping drive fragmentation down when letting your swap file grow and shrink as needed. Again this is an issue though of guessing how much swap you need. This will depend a lot on the amount of memory you have and how much stuff you will be running at one time.</p> http://stackoverflow.com/questions/165571/sql-query-for-cumulative-frequency-of-list-of-datetimes/165631#165631 1 Answer by ManiacZX for SQL query for cumulative frequency of list of datetimes ManiacZX 2008-10-03T03:54:07Z 2008-10-03T03:54:07Z <p>Create a table containing what intervals you want to be getting totals at then join the two tables together.</p> <p>Such as:</p> <pre><code>time_entry.time_entry ----------------------- 2008-10-02 09:01:00.000 2008-10-02 09:04:00.000 2008-10-02 09:11:00.000 2008-10-02 09:13:00.000 2008-10-02 09:22:00.000 2008-10-02 09:24:00.000 2008-10-02 09:28:00.000 time_interval.time_end ----------------------- 2008-10-02 09:05:00.000 2008-10-02 09:15:00.000 2008-10-02 09:25:00.000 2008-10-02 09:30:00.000 SELECT ti.time_end, COUNT(*) AS 'interval_total' FROM time_interval ti INNER JOIN time_entry te ON te.time_entry &lt; ti.time_end GROUP BY ti.time_end; time_end interval_total ----------------------- ------------- 2008-10-02 09:05:00.000 2 2008-10-02 09:15:00.000 4 2008-10-02 09:25:00.000 6 2008-10-02 09:30:00.000 7 </code></pre> <p>If instead of wanting cumulative totals you wanted totals within a range, then you add a time_start column to the time_interval table and change the query to</p> <pre><code>SELECT ti.time_end, COUNT(*) AS 'interval_total' FROM time_interval ti INNER JOIN time_entry te ON te.time_entry &gt;= ti.time_start AND te.time_entry &lt; ti.time_end GROUP BY ti.time_end; </code></pre> http://stackoverflow.com/questions/165408/what-programming-acronyms-do-you-frequently-use-without-knowing-the-meaning-of/165564#165564 2 Answer by ManiacZX for What Programming acronyms do you frequently use without knowing the meaning of ManiacZX 2008-10-03T03:17:28Z 2008-10-03T03:17:28Z <p>There are many acronyms that I've used that I didn't know the long version of the name.</p> <p>However, I think there is a large difference between not knowing what the acronym means and what it is.</p> <p>POP3 (Post Office Protocol v3) - I didn't know that, and if someone asks me what POP3 is, I wouldn't tell them that, I would tell them it is a communication protocol used for retrieving e-mail from an e-mail server.</p> http://stackoverflow.com/questions/165383/optimal-raid-setup-for-sql-server/165444#165444 10 Answer by ManiacZX for Optimal RAID setup for SQL server ManiacZX 2008-10-03T02:32:49Z 2008-10-03T02:48:05Z <p>Your concept of using independent RAID 1 mirrors is the correct strategy.</p> <p>We have implemented similar scenarios at my work and they work very well.</p> <p><strong>RAID 1</strong></p> <p>RAID 1 gives you the speed of 1 disk for writing but 2 disks for reading.</p> <p>When you write data to a RAID 1 array, it has to write that data to both disks, so you do not gain any performance increase, however this is where you get your data security.</p> <p>When reading from a RAID 1 array the controller will read from both disks as they have the same data on them.</p> <p><strong>RAID 5</strong></p> <p>This is useful for protecting larger amounts of data. The cost of RAID 5 increases a lot slower than RAID 1 (or RAID 0+1 once you are doing capacities beyond the size of the individual disks) for the same amount of data.</p> <p>If you want to protect 600gb in with RAID 5 you can achieve that with 4x200gb drives or 3x300gb drives, requiring 800-900gb of total purchased drive space. RAID 1 would be 2x600gb drives requiring 1,200gb of purchased space (with 600gb drives being quite more expensive) or RAID 0+1 allowing you to use less expensive capacity drives (ie: 4x300gb or 6x200gb) but still requires a total of 1,200gb of purchased space.</p> <p><strong>RAID 0+1</strong></p> <p>Offers similar advantages as RAID 1 taking it up another notch with the striping across disks. I am assuming that if you are concerned about higher simultaneous reads, you will also be using multi-processors/multi-cores. You will be processing multiple queries at once and so the striping isn't going to help as much. You would see a better advantage on a RAID 0+1 for single applications using large data files, such as video editing.</p> <p>When I was researching this same issue a while ago for a customer I found this article to be very interesting <a href="http://blogs.zdnet.com/Ou/?p=484" rel="nofollow">http://blogs.zdnet.com/Ou/?p=484</a>. On the second page he dicusses the change from a RAID 0+1 to independent RAID 1 arrays creating a lot of performance improvements. This was on a much larger scale (a 20 disk and 16 disk SAN) but same concepts. The ability for SQL Server to load balance the data between multiple volumes instead of using just basic uninformed striping of RAID 0+1 is a great concept.</p> http://stackoverflow.com/questions/160567/programming-contests-with-prizes/160613#160613 2 Answer by ManiacZX for Programming Contests (with prizes) ManiacZX 2008-10-02T02:24:24Z 2008-10-02T02:24:24Z <p>There is an eternity 2 project, although it has been out for a bit and the first solutions are being checked on Dec 31.</p> <p><a href="http://www.eternityii.com/" rel="nofollow">http://www.eternityii.com/</a></p> http://stackoverflow.com/questions/160082/what-is-the-big-deal-with-building-64-bit-versions-of-binaries/160353#160353 3 Answer by ManiacZX for What is the big deal with BUILDING 64-bit versions of binaries? ManiacZX 2008-10-02T00:18:45Z 2008-10-02T00:18:45Z <p>Another reason that a lot of companies have not gone through the effort of creating 64 bit versions is simply they don't need to.</p> <p>Windows has WoW64 (Windows on Windows 64 bit) and Linux can have the 32 bit libraries available alongside the 64 bit. Both of these allow us to run 32 bit applications in 64 bit environments.</p> <p>As long as the software is able to run in this way, there is not a major incentive to convert to 64 bit.</p> <p>Exceptions to this are things such as device drivers as they are tied in deeper with the operating systems and cannot run in the 32 bit layer that the x86-64/AMD64 based 64-bit operating systems offer (IA64 is unable to do this from what I understand).</p> <p>I agree with you on flash player though, I am very disappointed in Adobe that they have not updated this product. As you have pointed out, it does not work properly in 64 bit requiring you to run the 32 bit version of Internet Explorer.</p> <p>I think it is a strategic mistake on Adobe's part. Having to run the 32 bit browser for flash player is an inconvenience for users, and many will not understand this solution. This could lead to developers being apprehensive about using flash. The most important thing for a web site is to make sure everyone can view it, solutions that alienate users are typically not popular ones. Flash's popularity was fed by its own popularity, the more sites that used it, the more users had it on their systems, the more users that had it on their systems, the more sites were willing to use it.</p> <p>The retail market pushes these things forward, when a general consumer goes to buy a new computer, they aren't going to know they don't need a 64 bit OS they are going to get it either because they hear it is the latest and greatest thing, the future of computing, or just because they don't know the difference.</p> <p>Vista has been out for about 2 years now, and Windows XP 64-bit was out before that. In my mind that is too long for a major technology such as Flash to not be upgraded if they want to hold on to their market. It may have to do with Adobe taking over Macromedia and this is a sign that Adobe does not feel Flash is part of their future, I find it hard to believe as I think Flash and Dreamweaver were the top parts of what they got out of Macromedia, but then why have they not updated it yet?</p> http://stackoverflow.com/questions/151448/response-write-vs/151646#151646 2 Answer by ManiacZX for Response.Write vs <%= %> ManiacZX 2008-09-30T03:24:54Z 2008-09-30T03:24:54Z <p>I prefer the &lt;%= %> method in most situations for several reasons.</p> <ol> <li>The HTML is exposed to the IDE so that it can be processed giving you tooltips, tag closing, etc.</li> <li>Maintaining indentation in the output HTML is easier which can be very helpful with reworking layout.</li> <li>New lines without appending vbCrLf on everything and again for reviewing output source.</li> </ol> http://stackoverflow.com/questions/151079/name-web-pdf-for-better-default-save-filename-in-acrobat/151458#151458 0 Answer by ManiacZX for "name" web pdf for better default save filename in Acrobat? ManiacZX 2008-09-30T01:54:04Z 2008-09-30T01:54:04Z <p>Instead of attachment you can try inline:</p> <pre><code>Response.AddHeader("content-disposition", "inline;filename=MyFile.pdf"); </code></pre> <p>I used inline in a previous web application that generated Crystal Reports output into PDF and sent that in browser to the user.</p> http://stackoverflow.com/questions/151005/create-excel-xls-and-xlsx-file-from-c/151075#151075 0 Answer by ManiacZX for Create Excel (.XLS and .XLSX) file from C# ManiacZX 2008-09-29T22:48:00Z 2008-09-29T22:48:00Z <p>You may want to take a look at <a href="http://www.gemboxsoftware.com/GBSpreadsheetFree.htm" rel="nofollow">http://www.gemboxsoftware.com/GBSpreadsheetFree.htm</a>.</p> <p>They have a free version with all features but limited to 150 rows per sheet and 5 sheets per workbook, if that falls within your needs.</p> <p>I haven't had need to use it myself yet, but does look interesting.</p> http://stackoverflow.com/questions/150471/datagridviews-bound-table-only-generates-one-rowchanged-event-on-a-double-click/150889#150889 1 Answer by ManiacZX for DataGridView's bound table only generates one RowChanged event on a double-click. How do I make it do two? ManiacZX 2008-09-29T21:52:51Z 2008-09-29T21:52:51Z <p>The reason that making an empty DoubleClick event method would not help would be that is executed in addition to the other operations that happen when a double click occurs.</p> <p>If you look at the windows generated code or examples of programatically adding event handlers, you use += to assign the event handler. This means you are adding that event handler in addition to the others that already exist, you could have multiple event handlers being triggered on the save event.</p> <p>My instinct would have been to override the DataGridView class, then override the OnDoubleClick method and not call the base OnDoubleClick method.</p> <p>However, I have tested this real quick and am seeing some interesting results.</p> <p>I put together the following test class:</p> <pre><code>using System; using System.Windows.Forms; namespace TestApp { class DGV : DataGridView { private string test = ""; protected override void OnDoubleClick(EventArgs e) { MessageBox.Show(test + "OnDoubleClick"); } protected override void OnCellMouseDoubleClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) { MessageBox.Show(test + "OnCellMouseDoubleClick"); } protected override void OnCellMouseClick(System.Windows.Forms.DataGridViewCellMouseEventArgs e) { if (e.Clicks == 1) { // Had to do this with a variable as using a MessageBox // here would block us from pulling off a double click test = "1 click "; base.OnCellMouseClick(e); } else { MessageBox.Show("OnCellMouseClick"); } } } } </code></pre> <p>Then inserted this into a windows form, adding a checkbox column and ran the program.</p> <p>On a fresh run, double clicking on the checkbox causes the messagebox display to say "1 click OnDoubleClick".</p> <p>This means that OnCellMouseClick executed on the first part of the double click and then OnDoubleClick executed on the second click.</p> <p>Also, unfortunately, the removal of the call to the base methods doesn't seem to be preventing the checkbox from getting the click passed to it.</p> <p>I suspect that for this approach to work it may have to be taken further and override the DataGridViewCheckBoxColumn and DataGridViewCheckBoxCell that ignores the double click. Assuming this works, you would be able to stop double click on the checkbox but allow it still on your other column controls.</p> <p>I have posted an answer on another question that talks about creating custom DataGridView columns and cells at <a href="http://stackoverflow.com/questions/121274/is-it-possible-to-bind-complex-type-properties-to-a-datagrid#128909">here</a>.</p> http://stackoverflow.com/questions/136798/is-it-ethical-to-monitor-users/136869#136869 1 Answer by ManiacZX for Is it ethical to monitor users? ManiacZX 2008-09-25T23:28:37Z 2008-09-25T23:28:37Z <p>Something that would help on clarification would be is this an internal company application or something that will be on user's personal computers.</p> <p>Typically when it comes to computers that are owned by the company, if the company decides to do monitoring, it is their choice. Disclosure of the monitoring is often encouraged in an effort to be open and honest, but is not mandatory. A user should not have any expectation of privacy when using equipment owned and managed by the company.</p> <p>This is not just a matter of custom built applications, but also web browsing, email, phone conversations, etc. If you are using company resources then you are releasing your privacy.</p> <p>If this is an application going to users outside of the company, then yes it is wrong without permission by the users.</p> http://stackoverflow.com/questions/132403/which-language-should-i-pick-up-vb-net-or-c/133153#133153 0 Answer by ManiacZX for Which language should I pick up: VB.Net or C# ManiacZX 2008-09-25T12:54:43Z 2008-09-25T12:54:43Z <p>As stated already, it is very subjective.</p> <p>Since you have worked with VB6 you will have an easier time with syntax in VB.Net. However, they had to make changes between VB6 and VB.Net to make it work as a .Net language and play nice with C#.</p> <p>I have used both and always prefer to work with C#, but I came to .Net from Java.</p> <p>The biggest reason I would suggest C# is the similarity to other languages, this isn't an advantage just when you already know one of the other languages, but if you decide to expand beyond C#.</p> http://stackoverflow.com/questions/131282/would-it-make-sense-to-use-version-control-if-im-the-only-developer/131353#131353 2 Answer by ManiacZX for Would it make sense to use version control if I'm the only developer? ManiacZX 2008-09-25T03:36:28Z 2008-09-25T03:36:28Z <p>Source Control should absolutely be used. It is not only a tool for collaboration between multiple developers.</p> <p>One of the biggest advantages I would say for a single developer will be the ability to do differentials between versions of your files. You can do a comparison of version 4 and version 6 of SampleClass.cs to see what changes you made if you are trying to find what may have caused the introduction of a bug or many other things.</p> <p>Along with the open source solutions, as a single developer, I would suggest taking a look at SourceGear's Vault product at <a href="http://www.sourcegear.com/vault/index.html" rel="nofollow">http://www.sourcegear.com/vault/index.html</a>. It is free for use as a single user, with all features enabled. You only have to begin licensing if you need to introduct multiple users.</p> <p>I would recommend taking a read through <a href="http://www.ericsink.com/scm/source_control.html" rel="nofollow">http://www.ericsink.com/scm/source_control.html</a>. It is a very good article in general about source control although it is mainly focused on SourceGear's product.</p> <p>I work primarily on projects by myself, although I do have collaborative projects too, and in either case, I would never approach them without source control in place.</p> http://stackoverflow.com/questions/121274/is-it-possible-to-bind-complex-type-properties-to-a-datagrid/128909#128909 0 Answer by ManiacZX for Is it possible to bind complex type properties to a datagrid? ManiacZX 2008-09-24T18:26:53Z 2008-09-24T18:26:53Z <p>The way that I approached this in a recent application was to create my own DataGridViewColumn and DataGridViewCell classes inheriting off of one of the existing ones such as DataGridViewTextBoxColumn and DataGridViewTextBoxCell.</p> <p>Depending on the type of cell you want, you could use others such as Button, Checkbox, ComboBox, etc. Just take a look at the types available in System.Windows.Forms.</p> <p>The cells deal with their value's as objects so you will be able to pass your Car class into the cell's value.</p> <p>Overriding SetValue and GetValue will allow you to have any additional logic you need to handle the value.</p> <p>For example:</p> <pre><code>public class CarCell : System.Windows.Forms.DataGridViewTextBoxCell { protected override object GetValue(int rowIndex) { Car car = base.GetValue(rowIndex) as Car; if (car != null) { return car.Maker.Name; } else { return ""; } } } </code></pre> <p>On the column class the main thing you need to do is set the CellTemplate to your custom cell class.</p> <pre><code>public class CarColumn : System.Windows.Forms.DataGridViewTextBoxColumn { public CarColumn(): base() { CarCell c = new CarCell(); base.CellTemplate = c; } } </code></pre> <p>By using these custom Column/Cells on the DataGridView it allows you to add a lot of extra functionality to your DataGridView.</p> <p>I used them to alter the displayed formatting by overriding GetFormattedValue to apply custom formatting to the string values.</p> <p>I also did an override on Paint so that I could do custom cell highlighting depending on value conditions, altering the cells Style.BackColor to what I wanted based on the value.</p> http://stackoverflow.com/questions/1632876/problem-created-by-load-balancing Comment by ManiacZX on Problem created by load balancing ManiacZX 2009-10-27T18:23:39Z 2009-10-27T18:23:39Z I don't have access to do so, but this is probably more of a stackoverflow question as the solutions are more likely to be within your application and .Net than server infrastructure wise. http://stackoverflow.com/questions/65116/whats-your-favorite-harmless-computer-practical-joke/65137#65137 Comment by ManiacZX on What's Your Favorite Harmless Computer Practical Joke? ManiacZX 2008-11-21T03:26:07Z 2008-11-21T03:26:07Z I've done this to a co-worker, very entertaining. http://stackoverflow.com/questions/294622/c-how-do-i-catch-an-exception-and-check-if-it-contains-a-string/294637#294637 Comment by ManiacZX on C# How do I catch an exception and check if it contains a string? ManiacZX 2008-11-17T13:56:04Z 2008-11-17T13:56:04Z With doing a catch on the base Exception type but only taking action when that if statement is true, there is a big gap for other exceptions to go unnoticed. If you do have to catch Exception, there should be an else statement that either handles all other exceptions or re throws the exception. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/38450#38450 Comment by ManiacZX on What non-programming books should programmers read? ManiacZX 2008-11-10T19:05:42Z 2008-11-10T19:05:42Z This is quite a dilemma, I want to help get it back to 42, but it really does deserve to be upvoted... http://stackoverflow.com/questions/218507/suggestions-please-for-a-home-version-control-system/218514#218514 Comment by ManiacZX on Suggestions please for a home version control system ManiacZX 2008-10-20T14:54:28Z 2008-10-20T14:54:28Z I use SourceGear and recommend it, I give a couple reasons why and links in <a href="http://stackoverflow.com/questions/131282/would-it-make-sense-to-use-version-control-if-im-the-only-developer#131353" rel="nofollow" title="would it make sense to use version control if im the only developer%23131353">stackoverflow.com/questions/131282/&hellip;</a> http://stackoverflow.com/questions/72791/trigger-update-on-datatable-bound-to-datagridview/78521#78521 Comment by ManiacZX on Trigger update on DataTable bound to DataGridView ManiacZX 2008-10-07T18:29:00Z 2008-10-07T18:29:00Z I used the form's Validate method for a DataGridView bound to a DataSet, thanks for the info, I was hunting all through the DataGridView methods and the DataSet for something. http://stackoverflow.com/questions/165408/what-programming-acronyms-do-you-frequently-use-without-knowing-the-meaning-of/165564#165564 Comment by ManiacZX on What Programming acronyms do you frequently use without knowing the meaning of ManiacZX 2008-10-03T04:03:56Z 2008-10-03T04:03:56Z POP is Point of Presence, POP3 is a mail protocol. http://stackoverflow.com/questions/165571/sql-query-for-cumulative-frequency-of-list-of-datetimes/165610#165610 Comment by ManiacZX on SQL query for cumulative frequency of list of datetimes ManiacZX 2008-10-03T03:55:48Z 2008-10-03T03:55:48Z This would not give the cumulative totals that was asked for, dropping the &quot;period.start &lt;= times.time&quot; statement would achieve this, as my answer showed.