User Sakkle - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T06:36:32Z http://stackoverflow.com/feeds/user/45704 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1378606/create-keyboard-shortcut-to-regionate-method/1433721#1433721 0 Answer by Sakkle for Create keyboard shortcut to regionate method Sakkle 2009-09-16T15:29:34Z 2009-09-16T15:29:34Z <p>I am not sure about the GhostDoc auto documentation, but to regionate selected text you can use the "surround with" function in Visual Studio. </p> <p>Select a portion of code and press <strong>Ctrl+K, S</strong>. This brings up the "surround with" context menu. Select "region" in the menu, type in your region name and you're all set.</p> <p>This function can be used for a bunch of other stuff as well. If, for, while and try statements and so on.</p> http://stackoverflow.com/questions/1379720/custom-sorting-on-a-datagridview 2 Custom Sorting on a DataGridView Sakkle 2009-09-04T14:46:37Z 2009-09-07T15:28:29Z <p>I found a few questions similar to this one here on SO, but none that matched this problem, so here we go.</p> <p>I've got a DataGridView showing members of a team. All the team members have an assigned role within the team listed in one of the columns. Examples could something like be "Legal Representative", "Account Manager", "Assistant Account Manager" or "Accountant".</p> <p>Now here's where it gets interesting. I basically want to sort the grid on this column alphabetically, with a couple of exceptions. The "Account Manager" should always be listed at the top, followed by the "Assistant Account Manager" if there is one.</p> <p>The objects and grid are all operational at this point, and have been in production release for some time, so I don't want to do more work on this than strictly necessary.</p> <p>Is there an easy way to do this? I assume I have to do it programatically... </p> <p>Some pseudo-code to clarify:</p> <pre><code>if (memberRole == 'Account Manager') { //put in top row } else if (memberRole == 'Assistant Account Manager') { //put in second row } else { //sort remaining rows alphabetically } </code></pre> <p>I do my work in C# .NET using Visual Studio 2008.</p> http://stackoverflow.com/questions/1379720/custom-sorting-on-a-datagridview/1389183#1389183 0 Answer by Sakkle for Custom Sorting on a DataGridView Sakkle 2009-09-07T12:29:11Z 2009-09-07T12:29:11Z <p>An other solution that may not appeal to some but is fast to implement and works well is to introduce a new property on the object for sorting purposes. Make the new property contain a sorting character as the first character (a number works well) and the actual sorting value as the rest of the characters. Implement some easy if-else statements to set the appropriate value of the sorting property.</p> <p>When adding this column to the grid just make it hidden and sort on that column.</p> <p>Possibly a less elegant solution than the one proposed by najmeddine, but it works.</p> http://stackoverflow.com/questions/1373596/fixed-panel-height-in-a-splitcontainer 0 Fixed Panel Height in a SplitContainer Sakkle 2009-09-03T14:06:14Z 2009-09-04T07:46:43Z <p>I have a WinForm containing a bindingNavigator at the top and a splitContainer with two horisontal panels below it. The splitContainer fills the space not occupied by the bindingNavigator.</p> <p><em>I would like to set the bottom panel to a fixed height of, say 100 pixels, and have the top panel fill the rest of the space.</em></p> <p>This is my current code:</p> <pre><code>kundeteamSplitContainer.SplitterDistance = kundeteamSplitContainer.Height - 100; </code></pre> <p>I would have thought that this would set the splitter distance dynamically to 100 pixels less than the total height at all times, making the bottom panel occupy the remaining 100 pixels. This does not work as intended though as the bottom panel keeps changing size when I re-size the form at run-time.</p> <p>EDIT: I am sticking with the splitContainer if at all possible. Got a bunch of functionality related to hiding/showing the bottom panel already implemented and I don't want to do that work again.</p> http://stackoverflow.com/questions/1373596/fixed-panel-height-in-a-splitcontainer/1373758#1373758 0 Answer by Sakkle for Fixed Panel Height in a SplitContainer Sakkle 2009-09-03T14:30:40Z 2009-09-04T07:46:43Z <p>As pointed out by Lee:</p> <blockquote> <p>Set the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.splitcontainer.fixedpanel%28VS.100%29.aspx" rel="nofollow">FixedPanel</a> property to the panel you want to remain the same size.</p> </blockquote> <p>This works like this:</p> <pre><code>teamSplitContainer.SplitterDistance = teamSplitContainer.Height - 100; teamSplitContainer.FixedPanel = FixedPanel.Panel2; </code></pre> http://stackoverflow.com/questions/457482/virtual-member-call-in-constructor 5 Virtual member call in constructor Sakkle 2009-01-19T12:51:05Z 2009-09-03T15:15:20Z <p>In my application I am running the same winform in different contexts to control visibility of buttons, enabeling of text fields and the winform header text. The way I decided to do this is simply by passing a string to the form constructor and check it with a couple of if statements that in turn contain the desired winform tweaks.</p> <pre><code>if (formContext == "add") { Text = "Add member"; } if (formContext == "edit") { Text = "Change role"; userTextBox.Enabled = false; searchButton.Visible = false; } </code></pre> <p>This works fine, however the "Text" keywords get a blue squigly line added by ReSharper with the following message: Viritual member call in constructor. Is this a potential problem or just some sort of overly enthusiastic ReSharper message. </p> <p>Any clarification or suggestions for improvement of my implementation would be much appreciated.</p> http://stackoverflow.com/questions/661389/tfs-vs-svn/661393#661393 4 Answer by Sakkle for TFS vs SVN Sakkle 2009-03-19T08:00:59Z 2009-09-03T15:13:52Z <p>Check out this article before you decide: <a href="http://haacked.com/archive/2007/03/02/A%5FComparison%5Fof%5FTFS%5Fvs%5FSubversion%5Ffor%5FOpen%5FSource%5FProjects.aspx" rel="nofollow">A Comparison of TFS vs Subversion for Open Source Projects </a></p> http://stackoverflow.com/questions/838862/minimizing-or-closing-a-program-with-batch-script 0 Minimizing or closing a program with batch script Sakkle 2009-05-08T08:47:57Z 2009-05-08T10:01:04Z <p>I am writing a batch script intended for hanelding some tasks in my (and a few colleagues) windows startup. The main thing that needs to happen is the killing of a few processes that du to this beeing a large corporate environment are started as default. They interfere with our work so we have to kill them... I know it's stupid but thats beside the point. This is can not be changed and we have to make due.</p> <p>I thought about adding some more useful functionality to the script, like starting up certains programs and so on. This all works decently well but the problem i have is that the OUClient won't start minimized. It doesn't open a window (so it is minimized to some extent) but it still appears in the alt-tab list, witch it doesnt when i minimize or close it manually. This is the script:</p> <pre><code>@echo off C: cd "C:\Program Files\SysInternals\" pskill flxps12.exe pskill flxps17.exe start /minimized "" "C:\Program Files\Osiris Data\OUClient\OUClient.exe" start "Outlook" "C:\Program Files\Microsoft Office\OFFICE11\OUTLOOK.EXE" start "Explorer" "C:\Program Files\Internet Explorer\iexplore.exe" cls @exit </code></pre> <p>So the question is: <b>How can I make the OUClient minimize, or even better close</b> to the sytem tray (like if you clicked the red x in the upper right) after it is started.</p> <p>We are running this on Windows XP SP2.</p> <p><b>EDIT: </b>Everything works fine exept the /minimize on OUClient.</p> http://stackoverflow.com/questions/834167/replace-text-from-line-above-in-vim/834209#834209 0 Answer by Sakkle for Replace text from line above in Vim Sakkle 2009-05-07T11:50:13Z 2009-05-07T11:50:13Z <p>You could use search and replace:</p> <pre><code>:7,9 s/foo/bar/c </code></pre> <p>This example searches from line 7 to 9 for each occurrence of 'foo', and replaces it with 'bar', asking for a confirm on each hit. If you don't want to confirm, drop the c at the end. Pick the range as you see fit and this should get you where you want </p> http://stackoverflow.com/questions/446474/how-do-you-write-code-at-home/446708#446708 4 Answer by Sakkle for How do you write code at home? Sakkle 2009-01-15T13:27:40Z 2009-05-05T17:48:45Z <p>I for one would never pay for development software at home. I use VS2008 with ReSharper at work and I love it for what we do there. However I have chosen to abandon .NET and microsoft altogether for my home projects. I'm not going to get into the whole linux/c/java/open source vs. microsoft discussion here, but I would not pay upwards of 500 EUR for development software, It's as easy as that.</p> <p>If I did have to or wanted to do .NET code at home I would certainly go with one of the free alternatives such as VS Express and NUnit. I have colleagues that do, and are reasonably happy with it. I'm sure I would miss some of the functionality and full integration though...</p> <p>As for the ownership of code, I'm aware of the practise with companies claiming ownership af all code written while employed, however I find this unacceptable, and luckily it is not the normal practise where I live and work.</p> <p><b>EDIT:</b> When I was a student I had the option of getting Microsoft software free or very cheap from the MSDN Accademic Alliance and took advantage of this several times. I don't remember them having vs2008 however and I can't check since I've lost (forgotten) my MSDNAA login. Often the software availlable there is an older version than the current availlable release. Still... it's a very good deal and a great initiative from Microsoft.</p> <p><b>EDIT:</b> For school kids and students the Microsoft <a href="http://www.dreamspark.com" rel="nofollow">Dreamspark</a> program could provide Visual Studio 2008 SP1 (and other software: VS2005, SQL Server 2008 Developer, Win Server 2008) free of charge. You log on using your Windows Live ID and verify your student connection to see if you qualify for the service. I was not aware of this option but I just dowloaded it myself, completely free and legal :D</p> <p><b>EDIT:</b> As pc1oad1etter pointed out there may be restrictions on the Dreamspark license, non-commercial use etc. So if you plan to make monney on what you produce read the license greement carefully before you decide.</p> http://stackoverflow.com/questions/658807/visual-studio-always-on-top-when-debugging 3 Visual Studio always on top when debugging Sakkle 2009-03-18T15:36:34Z 2009-05-05T11:48:51Z <p>When I start debugging the project we are currently working on, the program window is not given proper focus in windows but is stacked behind the Visual Studio window. I don't think this problem occurs on any of my team members computers, so it looks like it's a problem on my system.</p> <p>Is there a setting in VS2008 for always on top or something like that? I can't seem to find one...</p> <p>Any idea what could be causing this? Visual Studio? The program code?</p> <p>I know this is sort of a vague issue but I'll concider adding more detail if no one recognizes the problem.</p> <p><b>EDIT: </b> I am using Visual Studio 2008 with ReSharper, GhostDoc and Resource Refactoring Tool.</p> <p><b>EDIT: </b> I've looked through every single option I can find in VS and I can not find anything that would explain this behaviour.</p> <p><b>EDIT: </b> I am running this on a dual monitor setup Lenovo Thinkpad Tseries laptop. The monitors are connected through a docking station. Monitor 1 is connected with a DVI cable and monitor 2 is connected vith a VGA cable.</p> http://stackoverflow.com/questions/658807/visual-studio-always-on-top-when-debugging/824533#824533 1 Answer by Sakkle for Visual Studio always on top when debugging Sakkle 2009-05-05T11:48:06Z 2009-05-05T11:48:06Z <p>This is just a theory, but after I recently upgraded to ReSharper 4.5 this problem looks to be resolved. It could be a coincidence but I'm inclined to think it isn't... :P</p> http://stackoverflow.com/questions/805939/datagridview-fullrowselect-and-focus 0 DataGridView: FullRowSelect and Focus Sakkle 2009-04-30T08:35:30Z 2009-05-05T11:42:03Z <p>I've got a DataGridView in a modal window with a list of options for my program. The grid has two collumns. The first one contains a checkbox for selecting that option, the seccond is the name/description of that option. The winform also contains OK and cancel buttons but that's beside the point. The code below does what I want it to. Because of the FullRowSelect property the checkbox is checked/unchecked in you click anywhere withint that row. It does however not show a blue background or a dotted line around the current row anymore. How would I be able to add this without loosing any of the current functionality?</p> <p><strong><em>EDIT:</em></strong> To elaborate; what I want is to once again enable the dotted line and/or blue background on the selected row/cells. It looks like the code I have currently somehow disables this...</p> <p><em>Relevant current code:</em></p> <pre><code>public OptionsForm() { InitializeComponent(); OptionsRoot = Options.GetReadOnlyRoot(OptionsBannersNameValueList.GetNameValueList(Settings.Default.OptionsBanners)); optionsBannersDataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect; optionsBannersDataGridView.MultiSelect = false; optionsBannersDataGridView.RowPrePaint += new DataGridViewRowPrePaintEventHandler(optionsBannersDataGridView_RowPrePaint); InitUI(); Closing += MyFormClosing; BindingSourceTree = BindingSourceHelper.InitializeBindingSourceTree(components, rootBindingSource); } private void optionsBannersDataGridView_RowPrePaint(object sender, DataGridViewRowPrePaintEventArgs e) { e.PaintParts &amp;= ~DataGridViewPaintParts.Focus; } </code></pre> http://stackoverflow.com/questions/805939/datagridview-fullrowselect-and-focus/824507#824507 0 Answer by Sakkle for DataGridView: FullRowSelect and Focus Sakkle 2009-05-05T11:42:03Z 2009-05-05T11:42:03Z <p>What I finally ened up doing was remove most of the code mentioned above, as it really didn't do much. for some reason when I set the properties in visual studio it did not work, but now it does. I don't know what happened there but thats beside the point.</p> <p>The constructor now looks like this:</p> <pre><code>public OptionsForm() { InitializeComponent(); AlternativerRoot = Alternativer.GetReadOnlyRoot(AlternativerFanerNameValueList.GetNameValueList(Settings.Default.AlternativerFaner)); InitUI(); Closing += MyFormClosing; _bindingSourceTree = BindingSourceHelper.InitializeBindingSourceTree(components, rootBindingSource); } </code></pre> <p>The properties are set in the visual studio GUI instead. SelectionMode is set to FullRowSelect and MultiSelect is set to false. </p> <p>I still didn't get the focus I wanted so I set the backcolor of of the selected row to blue and the forecolor to white in visual studio. This now works like I wanted it to.</p> <p>I still don't know why the properties were not getting set properly earlier, but at least it works now :P</p> http://stackoverflow.com/questions/824385/how-can-i-use-ajax-perl-and-json-easy-together/824483#824483 2 Answer by Sakkle for How can I use Ajax, perl and JSON easy together? Sakkle 2009-05-05T11:34:48Z 2009-05-05T11:34:48Z <p>If your main goal is to avoid refreshing to update the page you could try remote scripting by using the XMLHttpRequest object in XML.</p> <p>More on this <a href="http://www.mousewhisperer.co.uk/ajax%5Fpage.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/336394/disable-dragdrop-in-solution-explorer/416479#416479 3 Answer by Sakkle for Disable drag&drop in solution explorer Sakkle 2009-01-06T13:20:03Z 2009-03-27T08:17:39Z <p>Sadly, turning off the drag and drop function in the Sollution Explorer is not possible.</p> <p><b>Edit:</b> The third post (by a Microsoft employee) in this <a href="http://social.microsoft.com/Forums/en-US/csharpide/thread/5c20d208-ac72-4f05-9ad2-de3ac5fd5ac1" rel="nofollow">Microsoft Forum</a> thread confirms this.</p> <p><b>Edit:</b> Judging from this <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=110852" rel="nofollow">entry</a> on Microsoft connect it also looks like this is something they have no intention of improving.</p> http://stackoverflow.com/questions/619028/enable-disable-bindingnavigatoritems-based-on-selected-row 0 Enable/Disable BindingNavigatorItems based on selected row Sakkle 2009-03-06T14:28:25Z 2009-03-12T14:00:20Z <p>I have a winForm with a dataGridView containging members of a team. These members each have an assigned role and other properties that are listed in a column in the grid but for the purpose of what I want to achieve they are irrelevant. I've also added a bindingNavigator with add, edit and delete buttons.</p> <p>What I would like to implement is that the edit/delete button should be disabled when I select a row containing a team member in a certain role (Key Account Manager and some others) and be enabled when the selected member has no such role.</p> <p>So, how can I set this up? Is there an event for the current selected row or selecting a new row I can add my code to?</p> <p>I'm thinking something along he lines of this <i>pseudocode</i>:</p> <pre><code>if (SelectedRow.DataboundObject.Role == "KEY_ACCOUNT_MANAGER") { bindingNavigatorChangeItem.Enabled() = false; bindingNavigatordeleteItem.Enabled() = false; } </code></pre> http://stackoverflow.com/questions/630069/datagrid-colorchange-c/630165#630165 1 Answer by Sakkle for datagrid colorchange + c# Sakkle 2009-03-10T13:28:09Z 2009-03-10T13:58:23Z <p>I suspect what you are looking for in .NET 1.1 is something like this:</p> <pre><code>DataGridTest.Rows(1).Cells(1).Style.Backcolor = Color.Red </code></pre> <p><hr /></p> <p>The .NET2 equivalent would be something like:</p> <pre><code>DataGridViewCellStyle MakeItGreen = new DataGridViewCellStyle; MakeItGreen.BackColor = Color.Green; DataGridViewRow row2 = myGrid.Rows(2); row2.Cells(2).Style = MakeItGreen </code></pre> <p>Or simply:</p> <pre><code>this.myDataGridView[2,3].Style.BackColor = Color.Green; </code></pre> <p>If this is not what you were looking for please provide more information in your question...</p> http://stackoverflow.com/questions/626192/how-can-i-synchronize-two-database-tables-with-php/626261#626261 1 Answer by Sakkle for How can i synchronize two database tables with PHP? Sakkle 2009-03-09T13:36:36Z 2009-03-09T13:36:36Z <p>I'm not a 100% sure this is what you're looking for but I used to do a little database maintenance a while back. We needed a way to make sure the devDB and the prodDB were identical in structure and I tracked down this nifty little tool. The tool creates a sql-alter-script that can be run on the database you would like to patch. It written in perl so I guess it should work cross platform but I have only tried it on linux. </p> <p>The tool is called mySQLdiff, is freeware and can be downloaded at <a href="http://www.mysqldiff.org" rel="nofollow">www.mysqldiff.org</a>.</p> http://stackoverflow.com/questions/626059/teammember-over-estimating-abilities-how-to-help-him-grow/626091#626091 7 Answer by Sakkle for Teammember over-estimating abilities. How to help him grow? Sakkle 2009-03-09T12:54:08Z 2009-03-09T13:03:12Z <p>Hm... this is a tough one. It sounds like you've all been both helpful and patient with this guy. I have to say it doesn't sound like he's been programming for 20 years if he has trouble setting up a for loop etc. but setting that asside there are two things that needs to be adressed in this situation:</p> <ol> <li>His attitude</li> <li>His skills</li> </ol> <p>I think changing his attitude is by far the most important since then the skill will probably follow. My only advice is to either get the boss or someone he trusts talk to him. And by this I mean a sit-down in a separate room so he gets the signal that this is an "official" mesage and not just a chat. He needs to be made aware that no matter what he thinks his skills are lacking and his attitude needs to change. If he is not able to absorb this and change his attitude and in turn absorb some knowledge on the subject, I'm sorry to say I see no other solution than to send him off to do something he is better at...</p> http://stackoverflow.com/questions/619028/enable-disable-bindingnavigatoritems-based-on-selected-row/626020#626020 0 Answer by Sakkle for Enable/Disable BindingNavigatorItems based on selected row Sakkle 2009-03-09T12:27:32Z 2009-03-09T12:27:32Z <p>I finally figured this out and it's working perfectly. What I had to do was add some code to the SelectionChanged event on my DataGridView:</p> <pre><code>var member = teamRoleBindingSource.Current as TeamRole; if (member != null &amp;&amp; member.RoleCode == "KEY_ACCOUNT_MANAGER") { bindingNavigatorDeleteItem.Enabled = false; bindingNavigatorChangeItem.Enabled = false; } </code></pre> http://stackoverflow.com/questions/615106/setting-the-contents-of-a-textbox-to-upper-case-on-currentitemchanged 0 Setting the contents of a textBox to upper-case on CurrentItemChanged Sakkle 2009-03-05T14:53:24Z 2009-03-05T15:18:17Z <p>I would like the text in my textBox to be set to upper-case whenever currentItemChanged is triggered. In other words, whenever the text in the box changes I'd like to make the contents upper-case. Here is my code:</p> <pre><code>private void rootBindingSource_CurrentItemChanged(object sender, System.EventArgs e) { toUserTextBox.Text.ToUpper(); readWriteAuthorization1.ResetControlAuthorization(); } </code></pre> <p>The event triggers for sure, I've tested with a messageBox. So I know I've done something wrong here... the question is what.</p> http://stackoverflow.com/questions/610710/validate-on-text-change-in-textbox 0 Validate on text change in TextBox Sakkle 2009-03-04T14:08:00Z 2009-03-04T16:29:45Z <p>I have implemented validation rules on a textBox in my WinForm and it works well. However it checks the validation only when I tab out of the field. I would like it to check as soon as anything is entered in the box and everytime the content changes. Also I'd like it to check validation as soon as the WinForm opens. </p> <p>I remember doing this fairly recently by setting some events and whatnot, but I can't seem to remember how.</p> http://stackoverflow.com/questions/610714/what-linux-distro-am-i-on/610729#610729 3 Answer by Sakkle for what linux distro am I on? Sakkle 2009-03-04T14:10:54Z 2009-03-04T14:17:54Z <p>Here are a few ways to find out which linux distro you are using. I prefer the first one :)</p> <p><b>Using /proc/version</b></p> <pre><code>cat /proc/version </code></pre> <p>The output would be like:</p> <p><i>Linux version 2.6.13-15-default (geeko@buildhost) (gcc version 4.0.2 20050901 (prerelease) (SUSE Linux)) #1 Tue Sep 13 14:56:15 UTC 2005 </i></p> <p><b>Using /etc/issue</b></p> <pre><code>cat /etc/issue </code></pre> <p>The output should be like:</p> <p><i>Welcome to SUSE LINUX 10.0 (i586) - Kernel \r (\l). </i></p> <p><b>From the Boot Time messages</b></p> <pre><code>dmesg | head -1 </code></pre> <p>The output would be something like:</p> <p><i>Linux version 2.6.13-15-default (geeko@buildhost) (gcc version 4.0.2 20050901 (prerelease) (SUSE Linux)) #1 Tue Sep 13 14:56:15 UTC 2005 </i></p> http://stackoverflow.com/questions/602876/changing-the-acceptbutton-depending-on-active-control 2 Changing the AcceptButton depending on active control Sakkle 2009-03-02T16:03:29Z 2009-03-03T12:25:34Z <p>I have a working WinForm that handles the search functionality in my customer database. It contains the following controls:</p> <ul> <li>A textBox where you type your search string (A)</li> <li>A "search" button (B)</li> <li>A DataGridView (C) that returns the result of the search</li> <li>An "OK" button (D) and a "Cancel" button (E)</li> </ul> <p>What I am trying to accieve next is this:</p> <ol> <li>When A is active the AcceptButton (enter) should be linked to B</li> <li>When B or enter is pressed C should become active</li> <li>When C is active the AcceptButton should be linked to D</li> </ol> <p>I realise this is a somewhat big question so don't hesitate to answer just one of the bullet marks if you know the answer.</p> <p>EDIT: I have solved the implementation of requirement 1 and 3 above, but I am still looking for an answer to the second one. To clarify, when the search is initiated (meaning i have pressed enter on the keyboard or the search button with the mouse) I want focus to shift to the first line in the DataGridView.</p> http://stackoverflow.com/questions/589737/replacing-foreach-with-linq-query 2 Replacing foreach with LINQ query Sakkle 2009-02-26T09:09:03Z 2009-02-26T13:50:13Z <p>I have the following code in one of my methods:</p> <pre><code>foreach (var s in vars) { foreach (var type in statusList) { if (type.Id == s) { Add(new NameValuePair(type.Id, type.Text)); break; } } } </code></pre> <p>This seems sort of ineffective to me, and I was wondering if there was a way to substitute at least one of the foreaches wih a LINQ query. Any suggestions?</p> <p><b>EDIT:</b> vars is an array of strings and the Add method adds an item to a CSLA NameValueList.</p> http://stackoverflow.com/questions/467389/code-suggestions-by-resharper-making-code-less-readable/586489#586489 0 Answer by Sakkle for Code suggestions by Resharper making code less readable? Sakkle 2009-02-25T15:31:29Z 2009-02-25T15:31:29Z <p>Being a noob at C# and more used to C and Java I still can't get used to the placement of angle brackets in C# .NET and VS. Putting all that aside, I agree with Andrey in that inverting the 'if' is even more readable. On the other hand I personally find that omitting the 'else' reduces readability (slightly). I would go with this personally:</p> <pre><code>static public string ToNonNullString(this XmlAttribute attr) { if (attr == null) return string.Empty; else return attr.Value; } </code></pre> http://stackoverflow.com/questions/582297/separating-a-string-into-substrings 0 Separating a string into substrings Sakkle 2009-02-24T15:53:35Z 2009-02-25T07:44:41Z <p>I want to separate a string consisting of one or more two-letter codes separated by commas into two-letter substrings and put them in a string array or other suitable data structure. The result is at one point to be databound to a combo box so this needs to be taken into account.</p> <p>The string I want to manipulate can either be empty, consist of two letters only or be made up by multiple two-letter codes separated by commas (and possibly a space).</p> <p>I was thinking of using a simple string array but I'm not sure if this is the best way to go.</p> <p>So... what data structure would you recommend that I use and how would you implement it?</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/487527#487527 72 Answer by Sakkle for What non-programming books should programmers read? Sakkle 2009-01-28T12:57:16Z 2009-02-20T11:04:35Z <p>The Art of War - Sun Tzu</p> <p><img src="http://bloggingexperiment.com/wp-content/uploads/2007/09/art-of-war.jpg" alt="The Art of War" /></p> <p>Wikipedia: Much of the text is about how to fight wars without actually having to do battle: it gives tips on how to outsmart one's opponent so that physical battle is not necessary. As such, it has found application as a training guide for many competitive endeavors that do not involve actual combat.</p> <p>This knowledge would surely be useful in the everyday "battles" we have to fight in and out of the office. It's also filled with quotes you can impress your fellow programmers with... :)</p> http://stackoverflow.com/questions/561864/disabling-a-textbox-in-c-net-using-csla 1 Disabling a TextBox in c# .NET using CSLA Sakkle 2009-02-18T16:38:24Z 2009-02-20T10:45:42Z <p>I am trying to disable a number of text boxes intended for displaying data (not edit) in one of my UserControls. However, for some reason I can not get the textBoxes to disable properly.</p> <p>I've set "ApplyAuthorization on readWriteAuthorization" to true and the textBoxes are databound to the correct properties.</p> <p>I've also added the following lines to the CanWriteProperty of my object:</p> <pre><code>if (propertyName == OpeningDateProperty.Name) return false; if (propertyName == ChangeDateProperty.Name) return false; if (propertyName == CloseDateProperty.Name) return false; return base.CanWriteProperty(propertyName); </code></pre> <p>I can't figure out what I'm doing wrong here. I've implemented pretty much the same thing recently in other UserControls without any problems...</p> <p>I am using WinForms in C# .NET (vs2008)</p> <p><b>EDIT : </b> The code snippets and the properties are taken from my customer object. The date represent opening, last change and closure of the customer account. They are never supposed to be edited at all and in fact in the old sollution they are represented by textLabels, however we now want to use a text box and make the property's CanWriteProperty false.</p> <p>I realise that the info might be sort of scarce, but I am looking for what I might have forgotten in this process.</p> <p><b>EDIT :</b> We are using <strong><em>CSLA</em></strong> as well and I guess (I'm new at this whole thing) this has something to do with why we want to do it like this.</p> <p><b>EDIT (Sollution): </b> As you can see in my answer below, the problem was that I had not set up the CurrentItemChanged event like I should have.</p> http://stackoverflow.com/questions/1378606/create-keyboard-shortcut-to-regionate-method Comment by Sakkle on Create keyboard shortcut to regionate method Sakkle 2009-09-16T11:08:13Z 2009-09-16T11:08:13Z I am wondering the same thing... especially the first part, regionating selected code http://stackoverflow.com/questions/1379720/custom-sorting-on-a-datagridview/1381126#1381126 Comment by Sakkle on Custom Sorting on a DataGridView Sakkle 2009-09-07T11:20:10Z 2009-09-07T11:20:10Z I'm a little unsure of what you are suggesting here. If you are suggesting I implement something on the server side that is not an option, unfortunately. Server side solutions are rock solid non-changeable solutions (made in KOBOL like 20 years ago) that we have to work with as they are. http://stackoverflow.com/questions/1373785/add-silverlight-player-in-php Comment by Sakkle on Add Silverlight player in php Sakkle 2009-09-04T08:22:11Z 2009-09-04T08:22:11Z @Rajasekar: It's meant to insinuate that the question has few details and more or less asks for the finished code. Like a student asking someone to do his homework for him... http://stackoverflow.com/questions/1373785/add-silverlight-player-in-php Comment by Sakkle on Add Silverlight player in php Sakkle 2009-09-03T14:37:08Z 2009-09-03T14:37:08Z You should probably fill in a little more info and come up with a more precise question or you question will likely get closed... http://stackoverflow.com/questions/1373596/fixed-panel-height-in-a-splitcontainer/1373665#1373665 Comment by Sakkle on Fixed Panel Height in a SplitContainer Sakkle 2009-09-03T14:27:55Z 2009-09-03T14:27:55Z Thanks... this put me on the right track http://stackoverflow.com/questions/1373596/fixed-panel-height-in-a-splitcontainer/1373632#1373632 Comment by Sakkle on Fixed Panel Height in a SplitContainer Sakkle 2009-09-03T14:16:17Z 2009-09-03T14:16:17Z Well.. that may very well be, but I'm not changing at this point. My more experienced colleagues told me to use a splitter, so I'll stick to it for now. http://stackoverflow.com/questions/838862/minimizing-or-closing-a-program-with-batch-script/838931#838931 Comment by Sakkle on Minimizing or closing a program with batch script Sakkle 2009-05-08T09:34:47Z 2009-05-08T09:34:47Z Hm... this is what I was afraid of. I'll take a look at the ShowWindow function. Thanks http://stackoverflow.com/questions/838862/minimizing-or-closing-a-program-with-batch-script/838883#838883 Comment by Sakkle on Minimizing or closing a program with batch script Sakkle 2009-05-08T09:33:44Z 2009-05-08T09:33:44Z sorry for the confusion... The pskill part works fine. Its the OUClinet that is the problem http://stackoverflow.com/questions/838862/minimizing-or-closing-a-program-with-batch-script/838879#838879 Comment by Sakkle on Minimizing or closing a program with batch script Sakkle 2009-05-08T09:31:55Z 2009-05-08T09:31:55Z Yes that was a typo... corrected it now :) http://stackoverflow.com/questions/834167/replace-text-from-line-above-in-vim/834210#834210 Comment by Sakkle on Replace text from line above in Vim Sakkle 2009-05-07T11:52:38Z 2009-05-07T11:52:38Z Hm... interesting... http://stackoverflow.com/questions/658807/visual-studio-always-on-top-when-debugging/824533#824533 Comment by Sakkle on Visual Studio always on top when debugging Sakkle 2009-05-07T07:27:43Z 2009-05-07T07:27:43Z Oh... exelent. Guess that confirms it :) http://stackoverflow.com/questions/658807/visual-studio-always-on-top-when-debugging Comment by Sakkle on Visual Studio always on top when debugging Sakkle 2009-05-06T07:44:15Z 2009-05-06T07:44:15Z I have no idea if this was the case tbh... I'll try to make a note of what programs are open if it happens again. As it stands now I havent had problems for a while. http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84710#84710 Comment by Sakkle on What's your favorite "programmer" cartoon? Sakkle 2009-05-05T14:26:38Z 2009-05-05T14:26:38Z I'm just getting a dead link... :( http://stackoverflow.com/questions/658807/visual-studio-always-on-top-when-debugging Comment by Sakkle on Visual Studio always on top when debugging Sakkle 2009-05-05T13:06:32Z 2009-05-05T13:06:32Z I'm not sure i uderstand the question... could you please elaborate? http://stackoverflow.com/questions/819818/international-sms-forwarding Comment by Sakkle on International SMS Forwarding Sakkle 2009-05-04T12:43:50Z 2009-05-04T12:43:50Z You'll probably need to add some more information before this question can be answered, mate...