Brian Ensink

3,433
Reputation
216 views

Registered User

Name Brian Ensink
Member for 1 year
Seen 2 hours ago
Website
Location US
Age 31
Applications Software Developer
C#/C++
Michigan, USA.
Nov
23
accepted How do you divide integers and get a double in csharp
Nov
23
awarded  Nice Answer
Nov
23
comment How do you divide integers and get a double in csharp
@schnaader You are absolutely correct.
Nov
23
answered How do you divide integers and get a double in csharp
Nov
21
answered Is it possible to extract some structured information from the Exception.StackTrace?
Nov
21
answered Coming from making Windows-only programs in C#, what steps are there for developing for Linux AND Windows?
Nov
17
comment Twitter one time password
I can understand the password twice, but plain text not-obscured fields? I don't think it adds much.
Nov
17
answered Twitter one time password
Nov
10
answered Is it a good idea to run unit tests of a library as part of the MSI that installs it?
Nov
9
answered Best GUI for managing MySQL 5.1?
Nov
6
comment For what reason does an IDE not check to see if it can create a binary before compiling?
Poor 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.
Nov
6
answered Microsoft Access required for C# database access on end-user machines?
Nov
5
answered C# screenshot program cannot “see” Adobe AIR programs
Oct
29
comment What Is The Use Of Brainfuck
That is nothing. I once ported the linux kernal to a single tape turing machine.
Oct
28
comment Find the week-number of a given date
@roosteronacid brings new meaning to exact duplicate question. ;)
Oct
28
answered How to keep an Engineering Log
Oct
27
awarded  Civic Duty
Oct
27
awarded  Nice Answer
Oct
25
answered what exactly is a “register machine” ?
Oct
22
answered How do I prevent other programmers from wrapping my assembly?
Oct
14
comment Errors in VisualStudio when opening UserControl in designer
@wilpeck You're welcome. I remember having problems with this when I started with .NET forms before I fully understood Load and DesignMode.
Oct
14
comment Errors in VisualStudio when opening UserControl in designer
+1, This is a much better solution than a global variable.
Oct
14
comment Errors in VisualStudio when opening UserControl in designer
The 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.
Oct
14
comment Errors in VisualStudio when opening UserControl in designer
Instead 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.
Oct
14
comment App.Config vs Custom XML file
If 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.
Oct
14
answered App.Config vs Custom XML file
Oct
13
answered Can’t set breakpoints on closing brackets in Visual Studio 2005
Oct
13
revised Is using a singleton for the connection a good idea in ASP.NET website
add closing brace
Oct
12
comment C++ const keyword - use liberally?
Forcing 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#.
Oct
11
comment Why are most of the biggest open source projects in C?
Crappy 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.
Oct
1
answered Horrible redraw performance of the DataGridView on one of my two screens.
Sep
28
accepted How to deserialize into a List<String> using the XmlSerializer in C#
Sep
25
comment Best tell-tale sign on their first day that a programmer might not work out?
@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.)
Sep
24
comment How to pause Garbage Collection in .NET?
@Ed Swangren, well said, I was going to make the same point.
Sep
22
answered C# string replacement , not working
Sep
15
answered Solution file vs. Project file in Visual Studio
Sep
1
awarded  
Aug
31
comment WinForms controls get dislocated everytime the form is viewed
I neglected to mention it but I tried that.
Aug
31
comment WinForms controls get dislocated everytime the form is viewed
It was already set to AutoScaleMode = Font, the same as all of my other forms.
Aug
31
revised WinForms controls get dislocated everytime the form is viewed
added 134 characters in body
Aug
31
comment WinForms controls get dislocated everytime the form is viewed
Yes SP1 is installed. Its VS2008 Team Edition + SP1.
Aug
31
asked WinForms controls get dislocated everytime the form is viewed
Aug
29
answered Most unreasonable development assignment
Aug
21
accepted What’s the most efficient way to convert several win forms in VB2008 to a tabbed form?
Aug
14
awarded  Yearling
Aug
13
accepted limit size of Queue<T> in C++
Aug
13
answered limit size of Queue<T> in C++
Aug
11
answered Is it OK to use “delete this” to delete the current object?
Aug
10
answered How to read partial data from large text file in C++
Aug
9
comment C#: Why isn’t my app closing its file handles?
I don't think using the ShadowCopy is a good idea. Judging from the code this app would end up copying a very large number of assemblies, including many of the standard system assemblies. Plus the program would have no way of refreshing the properties of the assemblies because subsequent calls to load the assembly would return the already loaded assembly and not the one presumably just rebuilt.