Neil Barnwell
|
Registered User
|
I’m currently a C# developer for a logistics firm in the UK. I’ve been through a lot of different technologies during my career, and after starting out on VB, narrowly missing C++ and subsequently getting right into Java and web development, I made the move to .NET. C# is what I do now, and I’m here to stay.
|
|
1d |
answered | Adding/Editing master-children entities in a single Windows forms |
|
1d |
comment |
Creating a hotmail account from C# Y'know, if I were cynical, I'd wonder why you want to do that? |
|
Nov 23 |
revised |
.NET application very slow to start - cryptnet.dll trying to access IP in Bermuda added 457 characters in body |
|
Nov 23 |
comment |
.NET application very slow to start - cryptnet.dll trying to access IP in Bermuda Could it be that your installer app is compromised and is the way-in for the virus? Try building a new installer for your console app and try that on a new, clean PC build. |
|
Nov 23 |
answered | .NET application very slow to start - cryptnet.dll trying to access IP in Bermuda |
|
Nov 19 |
comment |
Wrapping Controls from System.Windows.Forms in System.Windows.UIElement Well, really I'm referring to the look-and-feel. Unless an amount of care is paid, the look-and-feel of the winforms controls will be jarring against the wpf stuff. |
|
Nov 19 |
revised |
C# - Hiding all methods of the UserControl class from a derived one Code formatted. |
|
Nov 19 |
comment |
C# - Hiding all methods of the UserControl class from a derived one He wouldn't get designer support out of the box, which is one reason. |
|
Nov 18 |
answered | C# - Hiding all methods of the UserControl class from a derived one |
|
Nov 18 |
comment |
Invoking an instance method without invoking constructor Yes I know, but it's a fine line on whether something is possible, versus whether it should be done. If someone asked if it were possible to survive a fall from a 2nd-floor window, you could say yes, but you'd still recommend highly that they don't do it. You might consider a white-lie and tell them no. :) I had no idea this was possible, and said as much in my answer. To all intents and purposes, it is impossible. |
|
Nov 18 |
comment |
Invoking an instance method without invoking constructor Whoa, that is crossing the streams quite a bit, or else you'd get +1 just for being such an evil genius. :) |
|
Nov 18 |
comment |
Invoking an instance method without invoking constructor @johnnyg Well, not necessarily always. If your objects are loaded via IoC, then you won't be able to initialise them because the interface might not have an Initialise() method, and you can't guarantee it would be called even if it did. If classes do lazy-initialisation when methods etc are called, that helps, but really it's not all that bad to do some work in the ctor. The issue is if the things it does cause actual proper side-effects and therefore cause trouble elsewhere. |
|
Nov 18 |
comment |
Invoking an instance method without invoking constructor @programminghero +1 for lolz. Give him the benefit of the doubt, though. It might be that it's a 3rd-party class that he really wants the functionality of C.M() for, and he has no control over it. :) |
|
Nov 18 |
answered | Invoking an instance method without invoking constructor |
|
Nov 18 |
comment |
C#: Do I need to dispose a BackgroundWorker created at runtime? @henk it is for now. MS make no guarantee than one day it won't be, which is exactly why they recommend always calling Dispose() on things that implement IDisposable. |
|
Nov 18 |
answered | C#: Do I need to dispose a BackgroundWorker created at runtime? |
|
Nov 18 |
revised |
Why does adding two shorts return an int? added 172 characters in body |
|
Nov 18 |
comment |
Why does adding two shorts return an int? Oh dear, this really has been done already, hasn't it? Sorry for the dupe (I even had a quick look first, oh well). |
|
Nov 18 |
comment |
Why does adding two shorts return an int? Yeah, I thought that just before you posted your comment and updated the question to be a bit more about the technical reasons of how it works. I am an idiot - not had my first coffee yet, today. :) |
|
Nov 18 |
revised |
Why does adding two shorts return an int? added 162 characters in body; added 204 characters in body; added 39 characters in body |
|
Nov 18 |
asked | Why does adding two shorts return an int? |
|
Nov 18 |
revised |
Measure a process CPU and RAM usage added 157 characters in body |
|
Nov 18 |
comment |
Measure a process CPU and RAM usage You can save to a performance log from performance monitor: technet.microsoft.com/en-us/library/… |
|
Nov 18 |
answered | Wrapping Controls from System.Windows.Forms in System.Windows.UIElement |
|
Nov 18 |
answered | Measure a process CPU and RAM usage |
|
Nov 17 |
answered | How to log exceptions in Windows Forms Application |
|
Nov 16 |
accepted | Modeling Workflow in C# Application |
|
Nov 16 |
comment |
How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? Are you setting AutoGenerateColumns before setting DataSource or DataMember, as per the docs? |
|
Nov 16 |
comment |
How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? Is this ASP.NET or WinForms? |
|
Nov 16 |
comment |
How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? Is this ASP.NET or WinForms? |
|
Nov 16 |
revised |
How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? added 521 characters in body; added 101 characters in body |
|
Nov 16 |
answered | How to bind dataGridView predefined columns with columns from sql statement (without adding new columns)? |
|
Nov 16 |
revised |
C# - Linq to XML edited tags; edited title |
|
Nov 15 |
accepted | Window is not maxinizing/being brought to front after being in tray, why?/help |
|
Nov 15 |
answered | Window is not maxinizing/being brought to front after being in tray, why?/help |
|
Nov 13 |
awarded | ● Nice Answer |
|
Nov 13 |
accepted | How to cancel an asynchronous calls? |
|
Nov 13 |
comment |
Keeping one window in front of another The clipping issue was where the listbox needs to not be clipped by the boundry of the form. If you put a combo box right at the bottom of a form, and drop it down, you'll see the drop-list extends below the form, because it's actually another form in itself. |
|
Nov 13 |
accepted | Keeping one window in front of another |
|
Nov 13 |
revised |
Keeping one window in front of another added 195 characters in body; added 267 characters in body |
|
Nov 13 |
comment |
Keeping one window in front of another Eek - oops. The form is being disposed (and therefore closed) immediately. I'll change the example... |
|
Nov 13 |
answered | Keeping one window in front of another |
|
Nov 13 |
comment |
How to cancel an asynchronous calls? Ahh yes - I will plagarise your QueueUserWorkItem point. It's largely the same, but I have to admit I always use TP.QUWI rather than managing threads myself. |
|
Nov 13 |
revised |
How to cancel an asynchronous calls? added 189 characters in body; added 222 characters in body |
|
Nov 13 |
answered | How to cancel an asynchronous calls? |
|
Nov 13 |
accepted | Data committed even though System.Transactions.TransactionScope.Commit() not called |
|
Nov 13 |
accepted | How to setup feedback link on Windows Forms caption using C# ? |
|
Nov 13 |
revised |
How to setup feedback link on Windows Forms caption using C# ? added 92 characters in body; deleted 10 characters in body; added 57 characters in body |
|
Nov 13 |
answered | How to setup feedback link on Windows Forms caption using C# ? |
|
Nov 13 |
comment |
date format yyyy-MM-ddTHH:mm:ssZ Oh of course, UTC doesn't have timezones. D'oh. He is asking for timezone info in his output. Maybe the DateTimeOffset is what he's looking for? |
