User Brian Ensink - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T08:23:09Zhttp://stackoverflow.com/feeds/user/1254http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1785854/how-do-you-divide-integers-and-get-a-double-in-c/1785870#178587031Answer by Brian Ensink for How do you divide integers and get a double in C#?Brian Ensink2009-11-23T20:52:10Z2009-11-23T20:52:10Z<p>Because the division is done with integers then converted to a double. Try this instead:</p>
<pre><code>double pct = (double)x / (double)y;
</code></pre>
http://stackoverflow.com/questions/1776794/is-it-possible-to-extract-some-structured-information-from-the-exception-stacktra/1776806#17768063Answer by Brian Ensink for Is it possible to extract some structured information from the Exception.StackTrace?Brian Ensink2009-11-21T21:14:19Z2009-11-21T21:14:19Z<p>Check out the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.stacktrace.aspx" rel="nofollow">System.Diagnostics.StackTrace</a> class. You can create the object and walk over the frames.</p>
<pre><code>StackTrace st = new StackTrace();
foreach (var frame in st.GetFrames())
{
Console.WriteLine(frame.GetFileName().ToString()
+ ":"
+ frame.GetFileLineNumber().ToString());
}
</code></pre>
http://stackoverflow.com/questions/1774428/coming-from-making-windows-only-programs-in-c-what-steps-are-there-for-developi/1774463#17744630Answer by Brian Ensink for Coming from making Windows-only programs in C#, what steps are there for developing for Linux AND Windows?Brian Ensink2009-11-21T04:00:03Z2009-11-21T04:00:03Z<p>You could try Java and run the same compiled bytecode in both places. Or try C++ with <a href="http://qt.nokia.com/products" rel="nofollow">Qt</a> or <a href="http://www.wxwidgets.org/" rel="nofollow">wxWidgets</a>. With C++ though you will have to compile for each platform. Another possibility is <a href="http://www.tcl.tk/" rel="nofollow">Tcl/Tk</a></p>
http://stackoverflow.com/questions/1748870/twitter-one-time-password/1748956#17489560Answer by Brian Ensink for Twitter one time passwordBrian Ensink2009-11-17T13:40:01Z2009-11-17T13:40:01Z<p>I'm annoyed when I have to not only type my password twice but more and more often type my email twice. If I cant proofread my own email address then I shouldn't be using the internets.</p>
http://stackoverflow.com/questions/1705547/is-it-a-good-idea-to-run-unit-tests-of-a-library-as-part-of-the-msi-that-installs/1705563#17055630Answer by Brian Ensink for Is it a good idea to run unit tests of a library as part of the MSI that installs it?Brian Ensink2009-11-10T04:10:37Z2009-11-10T04:10:37Z<p>Doing some kind of post-install testing to check the install status seems like a very reasonable thing to do. Whether you call it or treat it like unit testing might confuse the subject. Unless of course your are installing 3rd part components for developers and you want to test the build.</p>
http://stackoverflow.com/questions/1698750/best-gui-for-managing-mysql-5-1/1698762#16987622Answer by Brian Ensink for Best GUI for managing MySQL 5.1?Brian Ensink2009-11-09T02:04:09Z2009-11-09T02:04:09Z<p>Check out MySQL Administrator and other <a href="http://dev.mysql.com/downloads/gui-tools/5.0.html" rel="nofollow">GUI tools here</a>.</p>
http://stackoverflow.com/questions/1688468/microsoft-access-required-for-c-database-access-on-end-user-machines/1688522#16885223Answer by Brian Ensink for Microsoft Access required for C# database access on end-user machines?Brian Ensink2009-11-06T16:00:21Z2009-11-06T16:00:21Z<p>Try downloading the Office Connectivity Components <a href="http://www.microsoft.com/downloads/details.aspx?familyid=7554F536-8C28-4598-9B72-EF94E038C891&displaylang=en" rel="nofollow">here</a>. This will let you read and create Access databases without having Access installed.</p>
http://stackoverflow.com/questions/1683036/c-screenshot-program-cannot-see-adobe-air-programs/1683153#16831531Answer by Brian Ensink for C# screenshot program cannot "see" Adobe AIR programsBrian Ensink2009-11-05T20:00:01Z2009-11-05T20:00:01Z<p>This doesn't help you but I just threw together a quick WinForms app to try it and I was able to take a screenshot of TweetDeck using the <code>CopyFromScreen</code> function.</p>
http://stackoverflow.com/questions/1637171/how-to-keep-an-engineering-log/1637203#16372031Answer by Brian Ensink for How to keep an Engineering LogBrian Ensink2009-10-28T13:21:23Z2009-10-28T13:21:23Z<p>I use Google documents to keep notes for all of my personal projects as well as a list of project ideas or topics to explore. Its searchable, is copy/pastable for sharing and I could share entire documents if needed, and best of all its available everywhere.</p>
http://stackoverflow.com/questions/1622530/what-exactly-is-a-register-machine/1622544#16225441Answer by Brian Ensink for what exactly is a "register machine" ?Brian Ensink2009-10-25T23:59:02Z2009-10-25T23:59:02Z<p>A register machine uses a fixed number of registers or buckets for storing intermediate values for computation. For example the "add" instruction could add the values in two specific registers and store the result in another register.</p>
<p>A stack based machine uses a stack for storing intermediate values during computation. For example, to add two numbers the "add" instructions pops off two values from the stack, adds them, and pushes the result back onto the stack.</p>
http://stackoverflow.com/questions/1607107/how-do-i-prevent-other-programmers-from-wrapping-my-assembly/1607298#16072982Answer by Brian Ensink for How do I prevent other programmers from wrapping my assembly?Brian Ensink2009-10-22T13:42:26Z2009-10-22T13:42:26Z<p>Short of "not distributing them" there is no 100% sure way to prevent unauthorized access.</p>
<p>You could look into hardware or software licensing devices. Sprinkle license checks throughout your code and if the device is not present simply abort everything.</p>
<p>Another idea and is to declare all your types in the assembly as <code>internal</code> then setup your main application EXE as a friend assembly with the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.compilerservices.internalsvisibletoattribute.aspx" rel="nofollow"><code>InternalsVisibleTo</code></a> assembly attribute. This is typically used for unit-testing internal members and I have no idea how secure it would be in practice. This would not prevent people from disassembly your assembly so you may still want to obfuscate and this doesn't work at all if you are selling the library and intend only for licenses customers to use it (because you would have to provide custom builds to every customer).</p>
http://stackoverflow.com/questions/1565898/app-config-vs-custom-xml-file/1565931#15659311Answer by Brian Ensink for App.Config vs Custom XML fileBrian Ensink2009-10-14T12:25:23Z2009-10-14T12:25:23Z<p>In my opinion I consider app.config to be good for deployment-time settings such as the location of the database, or an IP address or location of critical data file, etc. User settings like font, color, behavior preferences should go in a different file which you can easily create and save with Xml serialization.</p>
http://stackoverflow.com/questions/1562830/cant-set-breakpoints-on-closing-brackets-in-visual-studio-2005/1562836#15628361Answer by Brian Ensink for Can't set breakpoints on closing brackets in Visual Studio 2005Brian Ensink2009-10-13T20:54:23Z2009-10-13T20:54:23Z<p>Set the breakpoint on the line above it, instead of a closing brace.</p>
<p>If the breakpoint turns from a solid circle to an empty circle it indicates that the breakpoint could not be set usually because of a mismatch between the code and the actual binary module being loaded. This can be fixed by building or rebuilding suspect modules.</p>
http://stackoverflow.com/questions/118528/horrible-redraw-performance-of-the-datagridview-on-one-of-my-two-screens/1506066#15060660Answer by Brian Ensink for Horrible redraw performance of the DataGridView on one of my two screens.Brian Ensink2009-10-01T19:49:51Z2009-10-01T19:49:51Z<p>Here is some code that sets the property using reflection, without subclassing as Benoit suggests.</p>
<pre><code>typeof(DataGridView).InvokeMember(
"DoubleBuffered",
BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.SetProperty,
null,
myDataGridViewObject,
new object[] { true });
</code></pre>
http://stackoverflow.com/questions/1461383/c-string-replacement-not-working/1461404#14614041Answer by Brian Ensink for C# string replacement , not workingBrian Ensink2009-09-22T17:19:15Z2009-09-22T17:19:15Z<p><code>System.String</code> is immutable. Operations such as <code>Replace</code> return a new string rather than modifying <code>this</code> string. Use <code>System.Text.StringBuilder</code> if you truly need a mutable string or just assign the result of the <code>Replace</code> call to a variable.</p>
http://stackoverflow.com/questions/1428265/solution-file-vs-project-file-in-visual-studio/1428281#14282811Answer by Brian Ensink for Solution file vs. Project file in Visual StudioBrian Ensink2009-09-15T16:40:18Z2009-09-15T16:40:18Z<p>A project file typically corresponds to a single module: EXE or DLL or LIB. A solution manages a collection of project files.</p>
http://stackoverflow.com/questions/1358075/winforms-controls-get-dislocated-everytime-the-form-is-viewed0WinForms controls get dislocated everytime the form is viewedBrian Ensink2009-08-31T15:45:53Z2009-08-31T18:58:15Z
<p>I'm stumped by some bizarre behavior in Visual Studio's forms editor. I have seen this on a couple of different forms in my application. Each time I open the form in Visual Studio's layout editor some controls will be in a different location than when I left them. Typically some buttons move up just a little bit from the lower right corner. But its not just buttons, in one case its a container panel that moves. I have to reposition them then save and close the form. I've confirmed that it is the layout editor actually changing the <code>Location</code> property when the form is opened because if I save and close the form with the buttons in the correct position they will be correct at runtime.</p>
<p>This is not a problem with the <code>Anchor</code> or <code>Dock</code> properties not being set correctly. The editor is actually changing the <code>Location</code> property of my control(s). I've looked at the .designer.cs file and I do not see anything unusual. I've tried deleting and recreating these controls but the problem persists.</p>
<p>Any ideas what I can do?</p>
<p>Its not a show stopper I just have to be very careful to fix the controls manually every time I open it in the winforms layout editor.</p>
<p>Edit: Visual Studio will actually checkout the file automatically to set the <code>Location</code> to what it stubbornly thinks it should be.</p>
http://stackoverflow.com/questions/1351860/most-unreasonable-development-assignment/1352043#13520432Answer by Brian Ensink for Most unreasonable development assignmentBrian Ensink2009-08-29T18:20:55Z2009-08-29T18:20:55Z<p>Here is one that comes back to haunt my coworkers occasionally.</p>
<p>Due to a history of acquisitions and subsequent product discontinuations by my company, one day we were given the task to implement a custom data export for a large number of customers. We wanted to transition these customers from an acquired and discontinued product onto our main product. These customers need the custom data export to submit orders to some other third party company lets call it Company T who required this custom data format.</p>
<p>Despite our repeated attempts no one from Company T would give us a spec for their data format. No one from Company T would give us a testing account to test their order entry so we could at least, you know, test our eventual software. In fact I don't recall anyone from Company T even returning our calls.</p>
<p>There was no code from the discontinued product to look at. The only way to guess at the data format was to reverse engineer it from doing a hundreds of exports and trying to surmise patterns.</p>
<p>You can imagine how well this data export worked the day shipped it.</p>
<p>(It wouldn't be fair to end the story there. Company T now works more closely with us but we still don't have a spec. I don't think they even have a spec ...)</p>
http://stackoverflow.com/questions/1273026/limit-size-of-queuet-in-c/1273034#12730347Answer by Brian Ensink for limit size of Queue<T> in C++Brian Ensink2009-08-13T16:18:06Z2009-08-13T16:18:06Z<p>Make a new class that encapsulates the queue and enforce a size limit in the new class.</p>
http://stackoverflow.com/questions/1258055/is-it-ok-to-use-delete-this-to-delete-the-current-object/1258087#12580874Answer by Brian Ensink for Is it OK to use "delete this" to delete the current object?Brian Ensink2009-08-11T01:37:46Z2009-08-11T01:37:46Z<p>No you should not <code>delete this</code> from the destructor. The destructor gets called because of a delete statement (or goes out of scope) and this would most likely lead to some sort of crash.</p>
<p>You also have a couple problems in the DoublyLinkedList desturctor. One, you delete temp then access temp after its been deleted. Second, the code will not actually delete the last element in the linked list.</p>
http://stackoverflow.com/questions/1256034/how-to-read-partial-data-from-large-text-file-in-c/1256058#12560580Answer by Brian Ensink for How to read partial data from large text file in C++Brian Ensink2009-08-10T17:09:46Z2009-08-10T17:09:46Z<p>If these lines are all the same length you could compute an offset for a given line and read just those bytes.</p>
<p>If the lines are varying length then you really have to read the entire file to count how many lines there are. Line terminating characters are just arbitrary bytes in the file.</p>
http://stackoverflow.com/questions/1250400/c-why-isnt-my-app-closing-its-file-handles/1250415#12504151Answer by Brian Ensink for C#: Why isn't my app closing its file handles?Brian Ensink2009-08-09T02:30:33Z2009-08-09T02:30:33Z<p>Once you load an assembly into your process you cannot unload it. Instead you can you create an app domain for each assembly you want to load, get the assemblies properties, then close the app domain.</p>
http://stackoverflow.com/questions/28363/database-compare-tools2Database compare toolsBrian Ensink2008-08-26T15:25:16Z2009-08-08T09:25:12Z
<p>My company has a number of relatively small Access databases (2-5MB) that control our user assisted design tools. Naturally these databases evolve over time as data bugs are found and fixed and as the schema changes to support new features in the tools. Can anyone recommend a database diff tool to compare both the data and schema from one version of the database to the next? Any suggestions will be appreciated: free, open source, or commercial.</p>
http://stackoverflow.com/questions/1246781/do-i-need-asp-net-mvc/1246800#12468005Answer by Brian Ensink for Do I need ASP.NET MVC?Brian Ensink2009-08-07T20:19:45Z2009-08-07T20:59:46Z<p>No you don't strictly need MVC but are you asking whether you should learn something new or use what you already know for an internal project? An internal project might be the perfect place to try out something new.</p>
http://stackoverflow.com/questions/1239922/whats-the-most-efficient-way-to-convert-several-win-forms-in-vb2008-to-a-tabbed/1239976#12399761Answer by Brian Ensink for What's the most efficient way to convert several win forms in VB2008 to a tabbed form?Brian Ensink2009-08-06T16:18:27Z2009-08-06T16:18:27Z<p>Recreate each form as a UserControl. You should be able to mostly just copy and paste the controls and code. Once you get to that point you can easily stick each UserControl on its own tab.</p>
http://stackoverflow.com/questions/1236209/what-real-life-analogies-do-you-use-when-explaining-threading-related-problems-to/1236235#12362351Answer by Brian Ensink for What real-life analogies do you use when explaining threading related problems to co-workers?Brian Ensink2009-08-05T23:14:18Z2009-08-05T23:14:18Z<p>There is an intersection near my house that I've seen get into a deadlock state. A line of cars in one direction gets backed up trying to make a left turn but they can't make progress because they are blocked by another line of cars in the opposite direction also trying to make left turns. Every time I get stuck in that I think about deadlock and I'm the only person laughing about it while everyone else is quickly getting frustrated.</p>
http://stackoverflow.com/questions/1212929/is-there-a-form-method-i-can-override-after-all-controls-are-created-but-visible/1212979#12129791Answer by Brian Ensink for Is there a Form method I can override after all controls are created but visible at design time in .NET?Brian Ensink2009-07-31T14:50:21Z2009-07-31T14:50:21Z<p>Try handling the <code>Load</code> event and check whether <code>DesignMode</code> is true then run the code you want for the designer.</p>
http://stackoverflow.com/questions/1208643/how-to-deserialize-into-a-liststring-using-the-xmlserializer-in-c/1208702#12087022Answer by Brian Ensink for How to deserialize into a List<String> using the XmlSerializer in C#Brian Ensink2009-07-30T19:12:35Z2009-07-30T19:28:09Z<p>Add a property like this to hold the list of Components:</p>
<pre><code>[XmlArray()]
public List<Component> Components { get; set; }
</code></pre>
<p>Edit: Sorry I misread that. You want to read it into a collection of strings. I just tried this below and it worked on your sample. The key is just to setup the correct xml serialization attributes.</p>
<pre><code>public class ArsAction
{
[XmlArray]
[XmlArrayItem(ElementName="Component")]
public List<string> Components { get; set; }
}
</code></pre>
http://stackoverflow.com/questions/1204194/embed-the-content-from-an-external-file-when-compiling/1204277#12042772Answer by Brian Ensink for Embed the content from an external file when compiling.Brian Ensink2009-07-30T03:15:58Z2009-07-30T03:15:58Z<p>Add the file to your project, right click on the file and select its properties. Under "Build Action" change it to "Embedded Resource". Now when you compile the file is automatically embedded as a resource.</p>
<p><a href="http://stackoverflow.com/questions/154262/example-code-required-for-how-to-access-embedded-net-image-resources-in-c">Here is an example showing how to access an embedded bitmap resource</a>.</p>
http://stackoverflow.com/questions/1200021/small-question-about-precompiled-headers/1200058#12000582Answer by Brian Ensink for Small question about precompiled headersBrian Ensink2009-07-29T12:56:29Z2009-07-29T12:56:29Z<p>Compilers that don't support precompiled headers would just include StableHeaders.h and reparse it every time (rather than using the precompiled file). It won't cause any problems neither does it fix any problems for certain compilers as you asked. I think its just a minor 'mistake' that probably happened over time during development.</p>
http://stackoverflow.com/questions/1785854/how-do-you-divide-integers-and-get-a-double-in-c/1785870#1785870Comment by Brian Ensink on How do you divide integers and get a double in C#?Brian Ensink2009-11-23T20:55:14Z2009-11-23T20:55:14Z@schnaader You are absolutely correct.http://stackoverflow.com/questions/1748870/twitter-one-time-password/1748956#1748956Comment by Brian Ensink on Twitter one time passwordBrian Ensink2009-11-17T19:10:58Z2009-11-17T19:10:58ZI can understand the password twice, but plain text not-obscured fields? I don't think it adds much.http://stackoverflow.com/questions/1688470/for-what-reason-does-an-ide-not-check-to-see-if-it-can-create-a-binary-before-com/1688548#1688548Comment by Brian Ensink on For what reason does an IDE not check to see if it can create a binary before compiling?Brian Ensink2009-11-06T16:19:29Z2009-11-06T16:19:29ZPoor Poor Peter Turner. Building the Minority Report IDE is very difficult. It either builds completely or it errors out immediately with the same error: "Build not started due to future failure of build." You never know if its because of a syntax error or a missing header file or anything. Took me 3 months just to get it to build.http://stackoverflow.com/questions/1645615/what-is-the-use-of-brainfuck/1645639#1645639Comment by Brian Ensink on What Is The Use Of BrainfuckBrian Ensink2009-10-29T18:37:52Z2009-10-29T18:37:52ZThat is nothing. I once ported the linux kernal to a single tape turing machine.http://stackoverflow.com/questions/1637652/find-the-week-number-of-a-given-dateComment by Brian Ensink on Find the week-number of a given dateBrian Ensink2009-10-28T14:44:07Z2009-10-28T14:44:07Z@roosteronacid brings new meaning to exact duplicate question. ;)http://stackoverflow.com/questions/1567066/errors-in-visualstudio-when-opening-usercontrol-in-designer/1567098#1567098Comment by Brian Ensink on Errors in VisualStudio when opening UserControl in designerBrian Ensink2009-10-14T16:04:53Z2009-10-14T16:04:53Z@wilpeck You're welcome. I remember having problems with this when I started with .NET forms before I fully understood Load and DesignMode.http://stackoverflow.com/questions/1567066/errors-in-visualstudio-when-opening-usercontrol-in-designer/1567101#1567101Comment by Brian Ensink on Errors in VisualStudio when opening UserControl in designerBrian Ensink2009-10-14T15:52:32Z2009-10-14T15:52:32Z+1, This is a much better solution than a global variable.http://stackoverflow.com/questions/1567066/errors-in-visualstudio-when-opening-usercontrol-in-designer/1567098#1567098Comment by Brian Ensink on Errors in VisualStudio when opening UserControl in designerBrian Ensink2009-10-14T15:48:11Z2009-10-14T15:48:11ZThe DesignMode property is not unreliable ... you just can't check it in the constructor. Think about it: the VS designer is going to instantiate your form class, then in perhaps the very next line of code its going to set DesignMode=true.http://stackoverflow.com/questions/1567066/errors-in-visualstudio-when-opening-usercontrol-in-designer/1567098#1567098Comment by Brian Ensink on Errors in VisualStudio when opening UserControl in designerBrian Ensink2009-10-14T15:44:36Z2009-10-14T15:44:36ZInstead of this, handle the Load event, move your code into it and check the DesignMode property. Much better solution than some tightly coupled global variable.http://stackoverflow.com/questions/1565898/app-config-vs-custom-xml-file/1565931#1565931Comment by Brian Ensink on App.Config vs Custom XML fileBrian Ensink2009-10-14T13:03:09Z2009-10-14T13:03:09ZIf UI messages are something the user directly configures then sure. But if you are thinking about UI messages in terms of language translation then you should look into satellite assemblies and .NET's support for localization. http://stackoverflow.com/questions/1554750/c-const-keyword-use-liberally/1554822#1554822Comment by Brian Ensink on C++ const keyword - use liberally?Brian Ensink2009-10-12T14:18:26Z2009-10-12T14:18:26ZForcing the programmer to use another local variable name instead of reusing the formal input parameter is a good thing. Reusing the parameter for a new purpose by assigning a new value to it makes the code less readable by giving that name multiple purposes. Some languages don't allow this, example C#.http://stackoverflow.com/questions/1551842/why-are-most-of-the-biggest-open-source-projects-in-c/1551868#1551868Comment by Brian Ensink on Why are most of the biggest open source projects in C?Brian Ensink2009-10-11T21:45:26Z2009-10-11T21:45:26ZCrappy developers will write crappy code in every language, its hardly C++'s fault when they write crappy C++. I'll counter your experience by saying that every C++ project I've worked on has been successful, the current one about 750,000 lines of code.
http://stackoverflow.com/questions/1477935/best-tell-tale-sign-on-their-first-day-that-a-programmer-might-not-work-out/1477974#1477974Comment by Brian Ensink on Best tell-tale sign on their first day that a programmer might not work out?Brian Ensink2009-09-25T15:43:29Z2009-09-25T15:43:29Z@Beta You did the right thing and supported your assertion and proved the bug existed. The opposite is something like disabling all optimizations for an entire shipping product because of "many compiler bugs". (I wish I was making that up.)http://stackoverflow.com/questions/1473132/how-to-pause-garbage-collection-in-netComment by Brian Ensink on How to pause Garbage Collection in .NET?Brian Ensink2009-09-24T17:41:22Z2009-09-24T17:41:22Z@Ed Swangren, well said, I was going to make the same point.http://stackoverflow.com/questions/1358075/winforms-controls-get-dislocated-everytime-the-form-is-viewed/1358889#1358889Comment by Brian Ensink on WinForms controls get dislocated everytime the form is viewedBrian Ensink2009-08-31T20:30:57Z2009-08-31T20:30:57ZI neglected to mention it but I tried that.