Patrik

2,183
Reputation
165 views

Registered User

Name Patrik
Member for 1 year
Seen 2 days ago
Website
Location Sweden
Age 27
My name is Patrik. I live in Göteborg, Sweden, where I work as a product developer for Wipcore - a company focusing on e-commerce solutions. My main area of expertise is .NET, but I take a great deal of interest in exploring new (and old) technologies. Everything from esoteric programming languages to the software running my coffee machine is worth taking a closer look at.
Nov
16
comment Form changes size between constructor exit and begining of Load C#
There's a list of the events being fired in the Form class at stackoverflow.com/questions/1575508/…. Maybe that can be of help examining the problem.
Nov
12
comment How can I take a dump file for Winforms application
He asked for a dump file. If you want to be notified about exceptions, AppDomain.UnhandledException is a better choice.
Nov
7
awarded  Nice Answer
Nov
2
comment What elements of .NET are missing in Mono?
Not quite. If you look at the Mono status page, C# 3.0 is "mostly done".
Oct
15
answered In what order do .NET Windows forms events fire?
Oct
15
comment Working with AVI files in C#
I love the AForge.NET framework. The only downside with it, is that it is using DirectShow that has been deprecated by Microsoft (without giving us a good replacement).
Oct
15
comment Multithreaded Syncronised List<T>
@Codebrain; but then there is no need for a synchronized list in the first place if you'd have to use an external lock to alter it. You should expose the internal lock to make sure that everyone uses the same synchronization mechanism.
Oct
8
comment What is the best Laptop for programmers?
Update: There is now 64-bit drivers that works perfect with Windows 7 and Vista.
Oct
8
comment Normalizing .net generics
Are you wondering if you will get a performance benefit by generating specialized types instead of generic ones (like how templates in C++ works)?
Oct
8
comment C# Antipatterns
Isn't this more of a subjective opinion than a C# anti pattern?
Oct
8
comment C# Antipatterns
I've actually seen a person do this. Horrible...
Oct
1
revised BinaryFormatter picking up events
deleted 35 characters in body
Oct
1
answered BinaryFormatter picking up events
Sep
29
comment C# Not Disposing controls like I told it to…
Or you can use panel.Controls.Clear() if you want to remove them all. Control.ControlCollection will take care of clean up if necessary.
Sep
21
asked How should I manage toolbars, menus and context sensitive elements in a sound way?
Sep
18
accepted Get external IP address over remoting in C#
Sep
16
revised Application is not shown. Why?
Fixed some grammar.
Sep
14
comment Is there a tool for .Net that creates a programme / dependency flow chart from IL / source?
nDepend is an excellent tool.
Sep
14
awarded  Favorite Question
Sep
11
comment What is your best programmer joke?
Same here. Laughed out loud.
Sep
11
revised Is there anything magic about ReadOnlyCollection
Fixed styling. Removed namespace to make; added 10 characters in body
Sep
11
answered Anyone know a good workaround for the lack of an enum generic constraint?
Sep
10
accepted Finding cursor location in a textbox in vb.net
Sep
10
revised Finding cursor location in a textbox in vb.net
added 146 characters in body; added 64 characters in body
Sep
10
answered Finding cursor location in a textbox in vb.net
Sep
10
comment C#: IPAddress.GetAddressBytes() method - what byte order?
Are you sure this applies to IPAddress.GetAddressBytes? I've always thought that it always return the byte array as big endian.
Sep
8
comment How i do left side navigation in windows application in .net?
Can you elaborate a little more?
Sep
5
revised Eclipse-like formatting for Visual Studio
Fixed tag.
Aug
31
accepted File Exists in WPF
Aug
31
answered File Exists in WPF
Aug
26
revised Fluent NHibernate mapping
Added tag ".net".
Aug
26
accepted Is there a built-in C#/.NET System API for HSV to RGB?
Aug
26
answered Is there a built-in C#/.NET System API for HSV to RGB?
Aug
25
revised C# Winforms Irregular Windows
Improved question a little.
Aug
24
comment Why choose a static class over a singleton implementation?
This is a duplicate question. See stackoverflow.com/questions/46541/…
Aug
24
answered C# PropertyInfo (Generic)
Aug
23
answered Get external IP address over remoting in C#
Aug
19
comment Post order traversal of binary tree without recursion
S.Lott: OK. So you mean that there are no need for StackOverflow? I mean; everything must be obvious to someone, right? The algorithm was not obvious for me, so please don't be condensending.
Aug
18
revised Post order traversal of binary tree without recursion
edited tags
Aug
18
comment Post order traversal of binary tree without recursion
This is not a homework question.
Aug
18
comment Post order traversal of binary tree without recursion
S.Lott? Did you read my question? Bob Kaufman: Yes
Aug
18
comment Post order traversal of binary tree without recursion
Thank you for your help.
Aug
18
asked Post order traversal of binary tree without recursion
Aug
18
accepted Drop-Down Image List in Winforms
Aug
17
comment Latency between SQL Server 2005 and .NET
Try to open the connection once instead of doing it each iteration.
Aug
17
answered how to load all assemblies from within your /bin directory
Aug
17
answered How can I correctly prefix a word with “a” and “an”?
Aug
17
comment Can you embed meta data into a .NET Class?
Check out stackoverflow.com/questions/20346/… for more information.
Aug
17
answered Drop-Down Image List in Winforms
Aug
11
answered .NET Multithreading - Do I need to synchronise access to a variable of primitive type?