User Pondidum - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T03:41:07Zhttp://stackoverflow.com/feeds/user/1500http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1929238/asynchronous-control-validation/1929293#19292931Answer by Pondidum for Asynchronous control validationPondidum2009-12-18T16:29:57Z2009-12-18T16:29:57Z<p>You might find a <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx" rel="nofollow">BackgroundWorker</a> a good method of doing this.</p>
<p>One thing to consider is the user trying to submit the form before your validation has finished running.</p>
http://stackoverflow.com/questions/1859435/create-a-list-of-pairs-in-net/1859446#18594466Answer by Pondidum for Create a List of pairs in .netPondidum2009-12-07T11:31:30Z2009-12-07T11:31:30Z<p>I just use this:</p>
<pre><code>var list = List<KeyValuePair<String, String>>;
</code></pre>
<p>or any other data type of course. It means you are accessing it like <code>list(0).Key</code> and <code>list(0).Value</code> but this doesn't bother me unless I am exposing the list externally.</p>
http://stackoverflow.com/questions/1838807/winforms-treeview-how-to-manually-highlight-node-like-it-was-clicked/1838897#18388970Answer by Pondidum for WinForms TreeView - how to manually "highlight" node (like it was clicked)Pondidum2009-12-03T09:59:36Z2009-12-03T09:59:36Z<p>The reason it does not show as highlighted is due to the tree view not having focus. This is in a button click event on my test form:</p>
<pre><code>TreeView1.SelectedNode = TreeView1.Nodes(2);
TreeView1.Focus();
</code></pre>
<p>Which highlights the node properly. if you remove the <code>Focus();</code> call it doesn't highlight until you click into the tree view (anywhere in the tree view, not necessarily on to the node that you want to be selected).</p>
http://stackoverflow.com/questions/934257/how-to-use-webdav-to-match-davhref-to-outolook-interop-href-value/1819850#18198501Answer by Pondidum for How to use WebDav to match dav:href to Outolook Interop href valuePondidum2009-11-30T13:33:03Z2009-11-30T14:19:17Z<p>This is quite long winded, but I have yet to find a better way of doing this:</p>
<p>The Outlook.MailItem.EntryID contains 4 Guids, although I am not sure what they all map to. The last guid contains the information you are after.</p>
<p>00000000E6053DD369FAB340B6B8C4D77A0<br>
B37D30700173A23D2AA06A3488E75E759DD<br>
1ACBBB00000A6F78CC00007B9F3D877B316<br>
4499DE695FBB7FCDE5F00000 <strong>EBD83B9</strong> 0000 </p>
<p>The bold part is the Messages ID that we can use (Of all the messages in my inbox, only these 7 digits were different between their entry IDs).</p>
<p>Next, modify your webDAV query to bring back the <code>DAV:permanenturl</code> property. This will look like the following:</p>
<p><a href="https://SERVER%5FNAME/exchange/MAILBOX@DOMAIN" rel="nofollow">https://SERVER%5FNAME/exchange/MAILBOX@DOMAIN</a>>COM/-FlatUrlSpace-/173a23d2aa06a3488e75e759dd1acbbb-a6f78cc/7b9f3d877b3164499de695fbb7fcde5f-<strong>ebd83b9</strong></p>
<p>So all you need to do for matching is to do a webDAV query for all the items in the specified mailbox, loop through comparing the <strong>PermanentURL</strong> with part of the <strong>EntryID</strong> to find your match.</p>
<p>I would be happier if there was an EntryID on the webDAV, but there does not seem to be a directly accessible one.</p>
http://stackoverflow.com/questions/1808243/how-does-one-calculate-the-minimum-client-size-of-a-net-windows-form/1808270#18082701Answer by Pondidum for how does one calculate the minimum _client_ size of a .net windows form?Pondidum2009-11-27T11:43:56Z2009-11-27T11:49:23Z<p>The only way i have found of accurately working it out is to do something like:</p>
<pre><code>int delta = this.Height - this.ClientRectangle.Height;
</code></pre>
<p>and then use that when ever i need to base something off the client are of the form
(I used it when i wanted a form to auto size to some buttons and have an equal border around them).</p>
<p>So for you:</p>
<pre><code>int delta = this.Height - this.ClientRectangle.Height;
int actualMinHeight = this.MinimumSize.Height - delta;
</code></pre>
<p>HTH</p>
<p>Edit: I did try using the <code>SystemInformation.Border3DSize</code> and <code>SystemInformation.BorderSize</code> properties but they also did not give the correct widths for me.</p>
http://stackoverflow.com/questions/673907/repository-folder-structure-and-automated-building-from-that-structure0Repository folder structure and automated building from that structurePondidum2009-03-23T15:44:02Z2009-11-19T11:57:52Z
<p>We are upgrading our source control (most likely to <strong>Vault</strong>) at work and are moving to the branch methodology, and are having some problems with working out the folder structure to use.</p>
<p>We intend to use the Trunk as the development line, and a branch will be a release and bug fixes to that release.</p>
<p>We have come up with two folder structures, and I wanted to know what the advantages and disadvantages of each were:</p>
<pre><code>Projects
|-> Trunk
|-> Data Access
|-> Business
|-> Desktop
|-> Website
|-> Branches
|-> Branch 01
|-> Data Access
|-> Business
|-> Desktop
|-> Website
</code></pre>
<p>and</p>
<pre><code>Projects
|-> Data Access
|-> Trunk
|-> Branches
|-> Branch 01
|-> Business
|-> Trunk
|-> Branches
|-> Branch 01
|-> Desktop
|-> Trunk
|-> Branches
|-> Branch 01
|-> Website
|-> Trunk
|-> Branches
|-> Branch 01
</code></pre>
<p>If we use a source control block on the build machine (<strong>cruisecontrol.net</strong>) with the first solution we can say:</p>
<pre><code><path>$\Projects\trunk\</path>
</code></pre>
<p>To build a branch would be fairly similar, but is it possible to pick up the newest branch in the <code>branches</code> folder? otherwise we would have to edit the ccnet config for every release.</p>
<p>If the second methodology were to be used (a lot of people suggest this method) how would the build machine pick up all the relevent projects? somthing like this maybe:</p>
<pre><code><path>$\Projects\*\trunk\</path>
</code></pre>
<p>if some projects have been branched but others have not, how can i make it get the trunk when no branch exists (if this is possible).</p>
<p>would getting all the trunks, followed by overwriting with the branches work? would it just error if it tried to access a non-existant branch?</p>
http://stackoverflow.com/questions/909786/solution-explorer-project-context-menu0Solution Explorer Project Context MenuPondidum2009-05-26T09:26:49Z2009-11-16T14:13:01Z
<p>Is there a way of adding other options (specifically Add Interface) to the projects right click context menu (<code>Right Click a project > Add > [Class, new Item, new form,...]</code>)?</p>
<p>I found one option in the customize dialog to place an 'Add Interface...' item in, but this is always disabled. I found that one under the Projects category of menu customization, so i assumed it would work...</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/262116/cruisecontrol-sourcesafe-block1cruisecontrol sourcesafe blockPondidum2008-11-04T15:16:42Z2009-11-16T14:11:47Z
<p>The build machine at work has many projects, but we are only experiencing a problem with one. </p>
<p>Two projects are very similar, one builds in debug mode, the other in release mode. They both clear out the projects directory, and then does a full Get from source safe. The debug build gets the source fine and fairly quickly, but the release build takes ages to get the source (It pauses for a long time on the CheckingModifications part, whereas the debug build does not pause for nearly as long). The sourcecontrol blocks are identical (included from a single file), and are as follows:</p>
<pre><code><sourcecontrol type="vss" autoGetSource="true" applyLabel="false">
<executable>C:\Program Files\Microsoft Visual Studio\VSS\win32\SS.EXE</executable>
<project>$/Projects</project>
<username>####</username>
<password>####</password>
<ssdir>\\####\SourceCode\VSS</ssdir>
<workingDirectory>D:\Projects\</workingDirectory>
<culture>en-GB</culture>
<cleanCopy>True</cleanCopy>
</sourcecontrol>
</code></pre>
<p>Any one have any ideas on why the release builds source control block is slower?</p>
http://stackoverflow.com/questions/262116/cruisecontrol-sourcesafe-block/1742403#17424030Answer by Pondidum for cruisecontrol sourcesafe blockPondidum2009-11-16T14:11:47Z2009-11-16T14:11:47Z<p>In the end we have switched from SourceSafe to SourceGear Vault (mainly for branching features, but speed and reliability were also large factors).</p>
<p>We have also moved our build machine from an old pc to a server which has a 1Gb/s connection to the source server, rather than 100Mb/s, which has helped considerably.</p>
<p>In the end when I was installing and testing Vault on the same machine (well, a clone) as the old build machine, it was cutting the source get operation from around 10 mins to 5. Once it was installed on the build server source get time is now around 1min.</p>
<p>My advice to anyone is just to switch from SourceSafe to anything else...you wont regret it.</p>
http://stackoverflow.com/questions/1665832/get-date-of-first-day-of-week/1665856#16658569Answer by Pondidum for Get date of first day of weekPondidum2009-11-03T07:54:38Z2009-11-03T07:54:38Z<p>This is what i use (probably not internationalised): </p>
<pre><code>DateTime input = //...
int delta = DayOfWeek.Monday - input.DayOfWeek;
DateTime monday = input.AddDays(delta);
</code></pre>
http://stackoverflow.com/questions/1661798/cruisecontrolhow-to-view-the-build-results/1661866#16618660Answer by Pondidum for Cruisecontrol:how to view the build resultsPondidum2009-11-02T15:15:02Z2009-11-02T15:15:02Z<p>Open your <code>ccnet.exe.config</code> (NOT <code>ccnet.config</code>) and look for this section:</p>
<pre><code><xslFiles>
<file name="xsl\header.xsl" />
<file name="xsl\modifications.xsl" />
<file name="xsl\msbuild2ccnet.xsl" /> <!-- This is our build results transform-->
</xslFiles>
</code></pre>
<p>add the XSL transform for your build results (if your not sure which, look for the <code> <xslFileNames></code> section in your <code>dashboard.config</code>)</p>
http://stackoverflow.com/questions/1652775/vb-net-object-on-top-of-another/1652777#16527772Answer by Pondidum for Vb.Net Object on top of anotherPondidum2009-10-30T23:29:34Z2009-10-30T23:29:34Z<p>right click the picturebox in the designer and select 'Sent To Back'</p>
<p>Alternatly, right click the webbrowser control an select 'Bring To Front'</p>
http://stackoverflow.com/questions/1637844/problem-with-set-related-property-in-designer-at-first-time/1637886#16378861Answer by Pondidum for Problem with set related property in designer at first timePondidum2009-10-28T15:07:10Z2009-10-28T23:44:51Z<p>There are attributes you can apply to your properties such as <code>ReadOnly</code> that will stop the designer from setting your property too.</p>
<p>I cant find the link at the moment, but there is also a method of telling the forms designer that it should set properties in a certain order.</p>
<p><hr /></p>
<p><strong>Edit:</strong></p>
<p>Ok, not quite what i remembered it as, but i think something like the <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.isupportinitialize.aspx" rel="nofollow">ISupportInitialize</a> interface.</p>
<p>Something like:</p>
<pre><code>Public Class Test
Implements ISupportInitalise
private _numberOne as integer
private _numberTwo as integer
private _initalised as boolean
Public Property NumberOne() as Integer
Get
return _numberOne
End Get
Set(value as Integer)
if _initalised then
'perform checks here'
end if
_numberOne = value
End Set
End Property
Public Property NumberTwo() as Integer
Get
return _numberTwo
End Get
Set(value as IntegeR)
if _initalised then
'perform checks here'
end if
_numberTwo = value
End Set
End Property
Public Sub BeginInit Implements ISupportInitalise.BeginInit
_initalised = false
End Sub
Public Sub EndInit Implements ISupportInitalise.EndInit
_initalised = true
'perform all checks here'
End Sub
End Class
</code></pre>
<p>This way all your checking can be disabled until your object is fully initialised.</p>
http://stackoverflow.com/questions/1567429/efficient-flicker-free-syntax-highligher-for-vb-net-which-works-as-well-as-the-o/1568810#15688100Answer by Pondidum for Efficient, flicker-free syntax highligher for vb.net which works as well as the one in the IDEPondidum2009-10-14T20:31:58Z2009-10-14T20:31:58Z<p>You might want to take a look at the source code for <a href="http://www.icsharpcode.net/OpenSource/SD/" rel="nofollow">Sharp Develop</a>, their editor is fully functional and highlights without flicker.</p>
<p>Also if you can get hold of a copy of their book called "Dissecting a C# Application - Inside Sharp Develop", that has a few chapters dedicated to to the editor - data structures, highlighting, ui</p>
http://stackoverflow.com/questions/1565263/how-to-determine-maximum-number-of-characters-given-a-fixed-width-font-and-a-maxi/1565400#15654002Answer by Pondidum for How to determine maximum number of characters given a fixed width font and a maximum width in pixelsPondidum2009-10-14T10:14:43Z2009-10-14T10:14:43Z<p>There is also <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.textrenderer.measuretext.aspx" rel="nofollow">TextRenderer.MeasureText()</a>, which produces a different result (this is what is used when drawing windows controls, so it is generally more accurate). </p>
<p>There is a discussion on SO somewhere about it, but I cannot find it at the moment.</p>
<p><strong>Edit:</strong> <a href="http://msdn.microsoft.com/en-gb/magazine/cc751527.aspx" rel="nofollow">This MSDN Article</a> goes a little more in depth.</p>
http://stackoverflow.com/questions/1520196/c-how-to-add-an-eventhandler-to-many-menus-in-a-foreach-loop/1520227#15202271Answer by Pondidum for c# How to add an eventhandler to many menus in a foreach loop?Pondidum2009-10-05T13:55:51Z2009-10-05T13:55:51Z<p>The constructor for <code>MenuItem</code> has what you are after (<code>onClick</code>)</p>
<p>You can modify your loop code slightly to put some identifier into each items <code>.Tag</code> property, and then in your event handler, cast the <code>sender</code> parameter back to a <code>MenuItem</code>.</p>
<p>HTH</p>
http://stackoverflow.com/questions/1492203/how-do-you-use-commercial-libraries-in-a-continuous-integration-build/1504190#15041900Answer by Pondidum for How do you use commercial libraries in a continuous integration build?Pondidum2009-10-01T14:08:50Z2009-10-01T14:08:50Z<p>Our libraries are kept on the build machine (although a network share works just as well) and are copied to the output folder as the first step after getting all the source out of source control. MSBuild quite happily picks up the dlls from the output folder and this ways we also avoid having many binaries in the source control.</p>
http://stackoverflow.com/questions/1485745/flip-coordinates-when-drawing-to-control/1485808#1485808-1Answer by Pondidum for flip coordinates when drawing to controlPondidum2009-09-28T07:15:22Z2009-09-28T07:15:22Z<p>in short no, however if i am drawing on controls a lot i have a few functions that help me:</p>
<pre><code>Point GraphFromRaster(Point point) {...}
Point RasterFromGraph(Point point) {...}
</code></pre>
<p>this way i keep all the conversion in one place, no worrying about things like <code>y - this.Height</code> scattered about the code.</p>
http://stackoverflow.com/questions/1475769/changing-images-in-picturebox-of-windows-form-using-c/1475798#14757980Answer by Pondidum for changing images in picturebox of windows form using c#Pondidum2009-09-25T06:49:04Z2009-09-25T06:49:04Z<p>have you set breakbpoints on the <code>PB.Image == bits</code> of code? to verify they are actually being hit?</p>
<p>Bear in mind that a stright string comparison (<code>variable == "Test"</code>) is case sensitive, a better way of comparing the strings would be:</p>
<pre><code>if ( String.Compare(variable, "Test", True) == 0 ) { ... }
</code></pre>
http://stackoverflow.com/questions/1411313/add-a-break-line-between-concatenated-strings-in-vb-net/1411318#14113181Answer by Pondidum for Add a break line between concatenated strings in VB.netPondidum2009-09-11T14:43:15Z2009-09-11T14:44:58Z<pre><code>Me.TextBox.text = output1 & Environment.NewLine & output2
</code></pre>
<p>Also use & to concat strings vb.net, + is legacy support</p>
http://stackoverflow.com/questions/1346910/why-are-many-designer-classes-in-system-design-marked-as-internal1Why are many Designer classes in System.Design marked as internal?Pondidum2009-08-28T13:16:17Z2009-09-11T13:59:41Z
<p>I have been developing some components for our products at work, and one of them is based off the flow layout panel.</p>
<p>What i would like to do is provide a custom designer for it, but without loosing the features provided by it's default designer (<code>System.Windows.Forms.Design.FlowLayoutPanelDesigner</code>) which is marked as <code>internal</code>.</p>
<p>Using Reflector i thought i would just implement it again myself, seeing as it inherits from 'FlowPanelDesigner<code> and that from </code>PanelDesigner` all of which are internal.</p>
<p>Why would these classes be specifically marked as internal? Is it due to them being specifically for Visual Studio use, and thus not 'framework' code?</p>
<p>Also, is there an easier option that re-implementing all the functionality?</p>
http://stackoverflow.com/questions/1409910/cruisecontrol-net-emails-not-containing-build-results-or-errors/1409966#14099661Answer by Pondidum for CruiseControl.NET Emails not containing build results or errorsPondidum2009-09-11T09:34:08Z2009-09-11T10:19:07Z<p>I had a similar problem yesterday with a new install of cruisecontrol as a service. </p>
<p>Make sure you have specified the correct xsl files in the <code>ccnetservice.exe.config</code> (if you are running the service) and <code>ccnet.exe.config</code> if you running the console version.</p>
<p>you need to restart the service/console app once these are updated.</p>
<p>HTH</p>
<p><strong>Edit:</strong></p>
<p>Are you using the standard msbuild logger, or Rodemeyer's one? If you are using Rodemeyer's, you need to use diffrent XSL transforms (<code>msbuild2ccnet.xsl</code>) to normal (<code>compile.xsl</code>, <code>msbuild.xsl</code>). There is a guide for that <a href="http://confluence.public.thoughtworks.org/display/CCNETCOMM/Improved+MSBuild+Integration" rel="nofollow">here</a></p>
<p>Check that your output is making it to the build log, located in <code>server\<projectName>\artifacts</code>.</p>
<p>If you have modified the xsl, make sure its in the correct folder (<code>webdashboard\xsl</code> and <code>server\xsl</code>). You can test the xsl works fine by copying the build log file (see <code>server\<projectName>\artifacts</code> directory). to a file, and adding the relevant XSL includes to the header then opening the XML file in a web browser)</p>
<p><strong>EDIT:</strong></p>
<p>in the <code><xslFiles></code> section of ccservice.exe.config, add another line like this:</p>
<pre><code><file name="xsl\compile-msbuild.xsl" />
</code></pre>
<p>or </p>
<pre><code><file name="xsl\msbuild.xsl" />
</code></pre>
<p>as i am not using the standard logger (you are though), i am uncertain as to which of those is needed. try one, then if that doesnt work, try the other!</p>
http://stackoverflow.com/questions/438968/design-time-tutorials0Design-Time TutorialsPondidum2009-01-13T13:40:22Z2009-09-03T10:46:44Z
<p>I am looking for some (preferably) online tutorials on making controls with 'Rich design-time support'</p>
<p>By Rich design time support i mean like how the menustrip works on a form and such.</p>
<p>Any links to websites, good books or code samples (c# or vb.net) would be great.</p>
http://stackoverflow.com/questions/1367328/a-bunch-of-logged-exceptions-in-microsoft-visualbasic-dll/1367366#13673661Answer by Pondidum for A bunch of logged exceptions in Microsoft.VisualBasic.dllPondidum2009-09-02T12:22:34Z2009-09-02T12:22:34Z<p>I am not sure of what exactly is causing your exceptions, but if it is in your code and surrounded by catch blocks (that probably do nothing, other than swallow the exception), you can set Visual Studio to break on all errors, which should help you track the problems down.</p>
<p>In VS, go <code>Debug > Exceptions...</code> and you can check what type of exceptions it will break on.</p>
<p>Hope that is of help</p>
http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/294106#294106166Answer by Pondidum for What's Your Biggest Visual Studio 2008 Annoyance?Pondidum2008-11-16T17:01:42Z2009-08-28T11:55:50Z<p>The length of time the Help dialog takes to appear (locking up the IDE in the process)...</p>
<p>It is quicker for me to open Firefox, type what I'm after into Google, click on the relevant MSDN link, read my solution/search again and make a cup of tea, than it is for help to load.</p>
http://stackoverflow.com/questions/1245471/how-can-i-create-a-fluent-interface-for-defining-dialog-boxes/1251412#12514123Answer by Pondidum for How can I create a fluent interface for defining Dialog Boxes?Pondidum2009-08-09T13:48:13Z2009-08-12T07:55:13Z<p>I built a fluent interface for my dialog boxes, something along the lines of:</p>
<pre><code>var result = Dialog
.Buttons(buttons.Ok, buttons.Cancel)
.Title("")
.Text("")
.Show();
if ( result == DialogResult.Ok) {
//...
}
</code></pre>
<p>I also had one for taking in an enum something like this:</p>
<pre><code>var result = Dialog(of EnumName)
.Text("")
.Title("")
.Show();
if ( result == EnumName.Value1 ) {
//...
}
</code></pre>
<p>Which generated the buttons from the enum, and returned the selected buttons enum value.</p>
<p>Edit: Added from comments:</p>
<p>The form it shows has its width calculated to fit all the buttons in one row.
It has an method for adding extra controls.
The layout is made from flow layout panels (one horizontal for buttons. one vertical for text and other controls)
The general layout is of a standard messagebox.
It has another option for Auto Accelerating the buttons.</p>
<p>Summary of Methods:</p>
<pre><code>.Buttons(paramarray of DialogResult)
.FromEnum<T>(enum)
.Title(text)
.Text(text)
.Control(control)
.AutoAccelerate
.Icon(image)
.Show() as T
</code></pre>
http://stackoverflow.com/questions/1243822/threading-nested-foreach-loops/1243880#12438801Answer by Pondidum for Threading nested foreach-loops?Pondidum2009-08-07T09:41:43Z2009-08-07T15:26:57Z<p>I'm pretty sure this will do it, not having any test data or a compiler to hand makes me not 100% confident:</p>
<pre><code>private void BestItems()
{
_bestHead = GetBestItem(_heads);
_bestChest = GetBestItem(_chests);
_bestLeg = GetBestItem(_legs);
_bestFeet = GetBestItem(_feets);
}
private Stats GetBestItem(List<Stats> items)
{
double best = 0.0;
Stats result = null;
foreach stats item in items
{
double total = item.stamina * _scaleSta + item.power * _scalePower + item.armor * _scaleArmor;
if (total > best)
{
result = item;
}
}
return result;
}
</code></pre>
<p><strong>Edit:</strong></p>
<p>Steps:</p>
<ol>
<li>Create a list for each slot in order of most important stat (smallest first)</li>
<li>Loop through using some kind of weighting to find the smallest values of hit that satisfy your hit rating. (yuo will need this per slot for my next step)</li>
<li>For each slot pick item with best stats that meets that slots min-hit rating.</li>
</ol>
<p>you will need a lot of loops one after the other, but its better than 2^28 i think :p</p>
<p><strong>Edit2:</strong> Again, still no compiler here... but this might work. You will end up with a bucket load of threads though...</p>
<p>For thread joining and waiting <a href="http://msdn.microsoft.com/en-us/library/system.threading.aspx" rel="nofollow">see here (msdn)</a> (look at mutex, monitor, ManualResetEvent, AutoResetEvent)</p>
<pre><code>private void BruteForce()
{
var threads = new List<Thread>;
foreach (Stats head in _heads)
foreach (Stats chest in _chests)
foreach (Stats leg in _legs)
foreach (Stats feet in _feets)
{
if (threads.Count <= 2)
thread worker = new thread(addressof Process, new object() {head, chest, leg, feet, ...});
worker.start();
threads.add(worker);
}
foreach (Thread t in threads)
t.join(); //this might not be the best as it might make the main thread wait for each thread one after the other, not when all finished. A manual/auto reset is probably better here.
}
private void Process(params...)
{
int stamina = head.sta + chest.sta + leg.sta + feet.sta;
int power = head.power + chest.power + leg.power + feet.power;
int armor = head.armor + chest.armor + leg.armor + feet.armor;
int hit = head.hit + chest.hit + leg.hit + feet.hit;
double total = stamina * _scaleSta + power * _scalePower + armor * _scaleArmor;
lock _bestscore
{
if (total > _bestScore && hit >= 100)
{
_bestScore = total;
// Store best setup for output when done with bruteforce
_bestHead = head;
_bestChest = chest;
_bestLeg = leg;
_bestFeet = feet;
}
}
}
</code></pre>
<p><strong>EDIT 4:</strong> Guess who still doesnt have a compiler near him?
Something along the lines of this should make sure you only have 2 threads alive at any point.</p>
<pre><code>var threads = new Dictionary<Guid, Thread>;
private void BruteForce()
{
foreach (Stats head in _heads)
foreach (Stats chest in _chests)
foreach (Stats leg in _legs)
foreach (Stats feet in _feets)
{
while (threads.Count >= 2) {} //im sure thread.join or equivelent can do this instead of a nasty loop :p
var guid = Guid.NewGuid();
thread worker = new thread(addressof Process, new object() {guid, head, chest, leg, feet, ...});
worker.start();
threads.add(guid, worker);
}
foreach (Thread t in threads)
t.join(); //this might not be the best as it might make the main thread wait for each thread one after the other, not when all finished. A manual/auto reset is probably better here.
}
private void Process(params...)
{
int stamina = head.sta + chest.sta + leg.sta + feet.sta;
int power = head.power + chest.power + leg.power + feet.power;
int armor = head.armor + chest.armor + leg.armor + feet.armor;
int hit = head.hit + chest.hit + leg.hit + feet.hit;
double total = stamina * _scaleSta + power * _scalePower + armor * _scaleArmor;
lock _bestscore
{
if (total > _bestScore && hit >= 100)
{
_bestScore = total;
// Store best setup for output when done with bruteforce
_bestHead = head;
_bestChest = chest;
_bestLeg = leg;
_bestFeet = feet;
}
}
_threads.remove(guid)
}
</code></pre>
http://stackoverflow.com/questions/1221287/ratings-to-the-items-based-on-user-click/1221299#12212992Answer by Pondidum for Ratings to the items based on user clickPondidum2009-08-03T08:55:14Z2009-08-03T08:55:14Z<p>It would probably be better to have a <code>CreateDate</code> column, and then in client side code do something along the lines of:</p>
<pre><code>int days = Date.Now.Subtract(hotel.CreateDate).Days;
</code></pre>
<p>This will cause less updates to your database too, as the date only needs to be set on create.</p>
http://stackoverflow.com/questions/1206931/expandable-winforms-textbox/1207067#12070671Answer by Pondidum for Expandable WinForms TextBoxPondidum2009-07-30T14:42:45Z2009-07-30T14:42:45Z<p>Same kind of idea as others have posted, put this in your textChanged event:</p>
<pre><code>Dim s As SizeF = TextRenderer.MeasureText(txt.Text, txt.Font, txt.ClientRectangle.Size, TextFormatFlags.WordBreak)
txt.Height = CInt(s.Height)
</code></pre>
<p>You will need some kind of minimum height, and possibly to specify some padding, but this does work.</p>
http://stackoverflow.com/questions/1201077/how-should-i-manage-different-incompatible-formts-of-xml-based-documents/1201106#12011060Answer by Pondidum for How should I manage different incompatible formts of Xml based documentsPondidum2009-07-29T15:28:16Z2009-07-29T15:28:16Z<p>Could you add an attribute to the root element specifying version?</p>
<p>That way older versions wont be broken, and newer versions of your software will see the attribute and switch to a different loading method appropriately.</p>
<p>Version numbering itself would depend on your frequency of release. I would personally go with the major build number from your software, unless you foresee the format changing more often than that.</p>
<p><strong>Edit</strong>: just noticed the bit about code duplication:</p>
<p>For that i would use the Factory Pattern, something like this:</p>
<pre><code>LoadDocument
DoNonVersionDependingLoading
VersionSpecificLoaderFactory(VersionNumber)
</code></pre>
http://stackoverflow.com/questions/1907434/tiny-mce-not-working-properly-in-google-chromeComment by Pondidum on tiny mce not working properly in google chromePondidum2009-12-15T13:26:19Z2009-12-15T13:26:19Zany code for this? or shall we just guess?http://stackoverflow.com/questions/1887284/does-svn-switch-ever-delete-locally-added-files/1887328#1887328Comment by Pondidum on does svn switch ever delete locally-added files?Pondidum2009-12-11T11:04:18Z2009-12-11T11:04:18Zhadn't thought of that :)http://stackoverflow.com/questions/1870139/windows-aero-what-color-to-paint-to-make-glass-appear/1872832#1872832Comment by Pondidum on Windows Aero: What color to paint to make "glass" appear?Pondidum2009-12-09T10:03:03Z2009-12-09T10:03:03ZWould doing <code>e.Graphics.Clear(Color.FromArgb(0, 0, 0, 0));</code> not work also?http://stackoverflow.com/questions/1859902/in-3-minutes-what-is-reflection/1859931#1859931Comment by Pondidum on In 3 minutes, What is Reflection?Pondidum2009-12-07T13:24:14Z2009-12-07T13:24:14Zoh naval as i ships...the only thing i could think of was belly-buttons...http://stackoverflow.com/questions/1859902/in-3-minutes-what-is-reflection/1859931#1859931Comment by Pondidum on In 3 minutes, What is Reflection?Pondidum2009-12-07T13:19:57Z2009-12-07T13:19:57Zdo i even want to know what naval-gazzing is?http://stackoverflow.com/questions/1859070/which-is-collection-or-list-is-fastest-for-too-many-additions-deletions/1859098#1859098Comment by Pondidum on which is collection or list is fastest for too many additions & deletions ? Pondidum2009-12-07T10:35:53Z2009-12-07T10:35:53ZA SortedDictionary is also slower to insert items into in my research.http://stackoverflow.com/questions/1853583/modified-preorder-tree-traversal-finding-the-next-nodeComment by Pondidum on Modified preorder tree traversal - finding the next nodePondidum2009-12-05T21:48:39Z2009-12-05T21:48:39Zwhat have you tried so far?http://stackoverflow.com/questions/1636114/how-can-i-force-multiple-projects-from-one-project-in-cruisecontrol-net/1846454#1846454Comment by Pondidum on How can I force multiple projects from one project in cruisecontrol.netPondidum2009-12-04T11:54:45Z2009-12-04T11:54:45Zplease edit your question with this extra information rather than posting an 'answer' http://stackoverflow.com/questions/1845646/vb-net-doesnt-anyone-use-the-dictionary-member-access-expression-a-k-a-the-bComment by Pondidum on VB.NET: Doesn't anyone use the dictionary member access expression? (a.k.a. the bang operator)Pondidum2009-12-04T11:53:57Z2009-12-04T11:53:57Zplease forget that it has survived...http://stackoverflow.com/questions/966457/what-is-allowed-in-visual-basic-thats-prohibited-in-c-or-vice-versa/966546#966546Comment by Pondidum on What is allowed in Visual Basic that's prohibited in C# (or vice versa)?Pondidum2009-12-04T11:51:33Z2009-12-04T11:51:33ZVB's ability to do <code>Select Case</code> on pretty much anything is nice toohttp://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/266609#266609Comment by Pondidum on What's your first program that you were proud of?Pondidum2009-12-03T16:19:59Z2009-12-03T16:19:59ZI still chew it >.<http://stackoverflow.com/questions/1838807/winforms-treeview-how-to-manually-highlight-node-like-it-was-clicked/1838845#1838845Comment by Pondidum on WinForms TreeView - how to manually "highlight" node (like it was clicked)Pondidum2009-12-03T09:59:51Z2009-12-03T09:59:51ZThat also seems very hacky.http://stackoverflow.com/questions/901320/anti-joel-test/901631#901631Comment by Pondidum on Anti-Joel TestPondidum2009-12-03T08:46:36Z2009-12-03T08:46:36Zi have been told this before: "Dont refactor too much - it makes the source diffs hard to read"http://stackoverflow.com/questions/1832681/when-trying-to-run-exe-file-without-its-dlls-there-is-no-error-message-c/1832700#1832700Comment by Pondidum on When trying to run exe file without its dlls, there is no error message c#Pondidum2009-12-02T13:18:22Z2009-12-02T13:18:22Zalso possible that the DLL has been found elsewhere by the CLRhttp://stackoverflow.com/questions/1825297/is-there-a-syntactic-sugar-c-property-syntax-to-instantiate-generic-collections/1825328#1825328Comment by Pondidum on Is there a syntactic sugar C# property syntax to instantiate generic collections?Pondidum2009-12-01T10:35:53Z2009-12-01T10:35:53Zthe long answer is Nooooooooooooooooooooooooooooooo