User Patrik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T02:58:05Zhttp://stackoverflow.com/feeds/user/936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1456303/how-should-i-manage-toolbars-menus-and-context-sensitive-elements-in-a-sound-way0How should I manage toolbars, menus and context sensitive elements in a sound way?Patrik2009-09-21T19:17:38Z2009-11-29T16:00:03Z
<p>Hello fellow developers,</p>
<p>I'm currently developing a WinForms application in C#, and need some input on how to manage toolbar buttons, menus and other context sensitive elements. What is the best practice for this?</p>
<p>I've found the article '<a href="http://msdn.microsoft.com/en-us/magazine/cc188928.aspx" rel="nofollow">Use Design Patterns to Simplify the Relationship Between Menus and Form Elements in .NET</a>' on MSDN but I'm not sure if there is a better way since the article is pretty old (it's published in 2002). </p>
<p>Grateful for any constructive help.</p>
http://stackoverflow.com/questions/349062/possible-to-override-null-coalescing-operator10Possible to override null-coalescing operator?Patrik2008-12-08T10:10:19Z2009-11-19T13:46:21Z
<p>Is it possible to override the null-coalescing operator for a class in C#? </p>
<p>Say for example I want to return a default value if an instance is null and return the instance if it's not. The code would look like something like this:</p>
<pre><code> return instance ?? new MyClass("Default");
</code></pre>
<p>But what if I would like to use the null-coalescing operator to also check if the MyClass.MyValue is set?</p>
<p>Of course there is no real need for this (at least I think so) - so before you answer "why would you want to do that" - <strong>I am just curious if it's possible</strong>.</p>
http://stackoverflow.com/questions/11464/what-is-the-worst-interview-question37What is the worst interview question?Patrik2008-08-14T18:30:58Z2009-10-21T15:02:56Z
<p>What is the absolutely worst job interview question that you've been asked?<br />
What did you answer? Did you get the job?</p>
http://stackoverflow.com/questions/1575508/in-what-order-do-net-windows-forms-events-fire/1575573#15755731Answer by Patrik for In what order do .NET Windows forms events fire?Patrik2009-10-15T22:54:07Z2009-10-15T22:54:07Z<p><strong>Showing a form:</strong></p>
<ol>
<li>Control.HandleCreated</li>
<li>Control.BindingContextChanged</li>
<li>Form.Load</li>
<li>Control.VisibleChanged</li>
<li>Control.GotFocus</li>
<li>Form.Activated</li>
<li>Form.Shown</li>
</ol>
<p><strong>Closing a form:</strong></p>
<ol>
<li>Form.Closing</li>
<li>Form.FormClosing</li>
<li>Form.Closed</li>
<li>Form.FormClosed</li>
<li>Form.Deactivate</li>
<li>Control.LostFocus</li>
<li>Control.HandleDestroyed</li>
<li>Component.Disposed</li>
</ol>
http://stackoverflow.com/questions/1503187/binaryformatter-picking-up-events/1503224#15032241Answer by Patrik for BinaryFormatter picking up eventsPatrik2009-10-01T10:48:38Z2009-10-01T10:53:58Z<p>Maybe you can implement the ISerializable interface.</p>
<pre><code>public class MyClass : ISerializable
{
private int m_shouldBeSerialized;
private int m_willNotBeSerialized;
protected MyClass(SerializationInfo info, StreamingContext context)
{
info.AddValue("MyValue", m_shouldBeSerialized);
}
#region ISerializable Members
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
m_shouldBeSerialized = info.GetInt32("MyValue");
}
#endregion
}
</code></pre>
http://stackoverflow.com/questions/7244/anyone-know-a-good-workaround-for-the-lack-of-an-enum-generic-constraint/1409844#14098441Answer by Patrik for Anyone know a good workaround for the lack of an enum generic constraint?Patrik2009-09-11T09:03:19Z2009-09-11T09:03:19Z<p>Jon Skeet actually blogged about this yesterday:</p>
<p><a href="http://msmvps.com/blogs/jon%5Fskeet/archive/2009/09/10/generic-constraints-for-enums-and-delegates.aspx" rel="nofollow">http://msmvps.com/blogs/jon_skeet/archive/2009/09/10/generic-constraints-for-enums-and-delegates.aspx</a></p>
http://stackoverflow.com/questions/1408005/finding-cursor-location-in-a-textbox-in-vb-net/1408035#14080351Answer by Patrik for Finding cursor location in a textbox in vb.netPatrik2009-09-10T22:21:04Z2009-09-10T22:34:38Z<p>If you mean WinForms, use the <code>SeletionStart</code> property to access the current position of the carret. Here is code to get the index, current line and current column.</p>
<pre><code>int index = myTextBox.SelectionStart;
int currentLine = myTextBox.GetLineFromCharIndex(index);
int currentColumn = index - myTextBox.GetFirstCharIndexFromLine(currentLine);
</code></pre>
http://stackoverflow.com/questions/1356427/file-exists-in-wpf/1356536#13565362Answer by Patrik for File Exists in WPFPatrik2009-08-31T08:58:03Z2009-08-31T08:58:03Z<p>Try this to get the file in the executables directory.</p>
<pre><code>string directory = Path.GetDirectoryName(Assembly.GetEntryAssembly().Location);
string filePath = Path.Combine(directory, "SomeFile.exe");
if (!File.Exists(filePath))
{
// 1337 code here plx.
}
</code></pre>
http://stackoverflow.com/questions/1335426/is-there-a-built-in-c-net-system-api-for-hsv-to-rgb/1335465#13354653Answer by Patrik for Is there a built-in C#/.NET System API for HSV to RGB?Patrik2009-08-26T15:13:12Z2009-08-26T15:13:12Z<p>I don't think there's a method doing this in the .NET framework.<br />
Check out <a href="http://splinter.com.au/blog/?p=29" rel="nofollow">Converting HSV to RGB colour using C#</a></p>
http://stackoverflow.com/questions/1320934/c-propertyinfo-generic/1320968#13209680Answer by Patrik for C# PropertyInfo (Generic)Patrik2009-08-24T07:46:01Z2009-08-24T07:46:01Z<p>This should do it more or less. I have no access to Visual Studio right now, but it might give you some clue how to instantiate the generic type and set the property.</p>
<pre><code>// Define the generic type.
var generic = typeof(Test123<>);
// Specify the type used by the generic type.
var specific = generic.MakeGenericType(new Type[] { typeof(int)});
// Create the final type (Test123<int>)
var instance = Activator.CreateInstance(specific, true);
</code></pre>
<p>And to set the value:</p>
<pre><code>// Get the property info of the property to set.
PropertyInfo property = instance.GetType().GetProperty("Test");
// Set the value on the instance.
property.SetValue(instance, 1 /* The value to set */, null)
</code></pre>
http://stackoverflow.com/questions/66363/get-external-ip-address-over-remoting-in-c7Get external IP address over remoting in C#Patrik2008-09-15T20:02:29Z2009-08-23T20:53:17Z
<p>I need to find out the <strong>external</strong> IP of the computer a C# application is running on. </p>
<p>In the application I have a connection (via .NET remoting) to a server. Is there a good way to get the address of the client on the server side?</p>
<p><em>(I have edited the question, to be a little more clear. I'm apologize to all kind people who did their best to respond to the question, when I perhaps was a little too vague)</em></p>
<p><strong>Solution:</strong><br />
I found a way that worked great for me. By implementing a custom IServerChannelSinkProvider and IServerChannelSink where I have access to CommonTransportKeys.IPAddress, it's easy to add the client ip on the CallContext.</p>
<pre><code>public ServerProcessing ProcessMessage(IServerChannelSinkStack sinkStack,
IMessage requestmessage, ITransportHeaders requestHeaders,
System.IO.Stream requestStream, out IMessage responseMessage,
out ITransportHeaders responseHeaders, out System.IO.Stream responseStream)
{
try
{
// Get the IP address and add it to the call context.
IPAddress ipAddr = (IPAddress)requestHeaders[CommonTransportKeys.IPAddress];
CallContext.SetData("ClientIP", ipAddr);
}
catch (Exception)
{
}
sinkStack.Push(this, null);
ServerProcessing srvProc = _NextSink.ProcessMessage(sinkStack, requestmessage, requestHeaders,
requestStream, out responseMessage, out responseHeaders, out responseStream);
return srvProc;
}
</code></pre>
<p>And then later (when I get a request from a client) just get the IP from the CallContext like this.</p>
<pre><code>public string GetClientIP()
{
// Get the client IP from the call context.
object data = CallContext.GetData("ClientIP");
// If the data is null or not a string, then return an empty string.
if (data == null || !(data is IPAddress))
return string.Empty;
// Return the data as a string.
return ((IPAddress)data).ToString();
}
</code></pre>
<p>I can now send the IP back to the client.</p>
http://stackoverflow.com/questions/66363/get-external-ip-address-over-remoting-in-c/1319527#13195270Answer by Patrik for Get external IP address over remoting in C#Patrik2009-08-23T20:53:17Z2009-08-23T20:53:17Z<p>I found a way that worked great for me. By implementing a custom IServerChannelSinkProvider and IServerChannelSink where I have access to CommonTransportKeys.IPAddress, it's easy to add the client ip on the CallContext.</p>
<pre><code>public ServerProcessing ProcessMessage(IServerChannelSinkStack sinkStack,
IMessage requestmessage, ITransportHeaders requestHeaders,
System.IO.Stream requestStream, out IMessage responseMessage,
out ITransportHeaders responseHeaders, out System.IO.Stream responseStream)
{
try
{
// Get the IP address and add it to the call context.
IPAddress ipAddr = (IPAddress)requestHeaders[CommonTransportKeys.IPAddress];
CallContext.SetData("ClientIP", ipAddr);
}
catch (Exception)
{
}
sinkStack.Push(this, null);
ServerProcessing srvProc = _NextSink.ProcessMessage(sinkStack, requestmessage, requestHeaders,
requestStream, out responseMessage, out responseHeaders, out responseStream);
return srvProc;
}
</code></pre>
<p>And then later (when I get a request from a client) just get the IP from the CallContext like this.</p>
<pre><code>public string GetClientIP()
{
// Get the client IP from the call context.
object data = CallContext.GetData("ClientIP");
// If the data is null or not a string, then return an empty string.
if (data == null || !(data is IPAddress))
return string.Empty;
// Return the data as a string.
return ((IPAddress)data).ToString();
}
</code></pre>
<p>I can now send the IP back to the client.</p>
http://stackoverflow.com/questions/302418/cant-add-object-to-velocity-cache0Can't add object to Velocity cachePatrik2008-11-19T16:10:43Z2009-08-22T11:44:28Z
<p>I've just installed <a href="http://msdn.microsoft.com/sv-se/library/cc645013(en-us).aspx" rel="nofollow">Velocity</a> on my computer and everything seems to work fine except that I can't add any objects to a cache. I have no trouble retrieving the cache itself, but when I try to add an object, everything just freezes for five minutes, and then I get a time out.</p>
<p><strong>My code to connect to the cache host (works fine):</strong></p>
<pre><code>// Define Array for 1 cache host.
ServerEndPoint[] servers = new ServerEndPoint[1];
// Specify Cache Host Details
servers[0] = new ServerEndPoint(
"COMPUTERNAME" /* Host */,
22233 /* Port */,
"DistributedCacheService" /* Service name */);
// Pass configuration settings to CacheFactory constructor.
m_cacheFactory = new CacheFactory(servers,
true /* Use routing client */,
false /* No local cache */);
// Get the cache (works fine).
Cache cache = m_cacheFactory.GetCache("MyCache");
</code></pre>
<p><strong>My code to add an object to the cache (don't work):</strong></p>
<pre><code>// Get the cache.
Cache cache = m_cacheFactory.GetCache("MyCache");
// Create the item to put in the cache.
Product product = new Product();
product.Sku = "10000";
product.Name = "My Product";
// Put the object in the cache (The add method doesn't work either).
cache.Put(product.Sku /* Key */, product /* Value */);
</code></pre>
<p>Via the cluster administrator interface, I've verified that the cache-host is running and that the cache itself exists. </p>
<p>Anyone have an idea what the problem might be?</p>
<p><strong>EDIT:</strong></p>
<p>I attached a log sink provider to the cache factory, and I've verified that there are some kind of time-out. The cache host is on my local machine and the firewall is turned off.</p>
<blockquote>
<p>CASClient - Timed out trying to talk
to
net.tcp://l1441gbg:22233/distributedcacheservice,Velocity.DRM.SendReceive,Warning,2008-11-20
11:06:29.988</p>
</blockquote>
http://stackoverflow.com/questions/1294701/post-order-traversal-of-binary-tree-without-recursion4Post order traversal of binary tree without recursionPatrik2009-08-18T15:37:14Z2009-08-18T15:47:08Z
<p>Hello fellow coders,</p>
<p>Does anyone know the algorithm for doing a post order traversal of a binary tree <strong>WITHOUT</strong> using recursion.</p>
<p>Any information would be greatly appreciated.</p>
http://stackoverflow.com/questions/1288288/how-to-load-all-assemblies-from-within-your-bin-directory/1288465#12884650Answer by Patrik for how to load all assemblies from within your /bin directoryPatrik2009-08-17T15:00:31Z2009-08-17T15:00:31Z<p>You can do it like this, but you should probably not load everything into the current appdomain like this, since assemblies might contain harmful code.</p>
<pre><code>public IEnumerable<Assembly> LoadAssemblies()
{
DirectoryInfo directory = new DirectoryInfo(@"c:\mybinfolder");
FileInfo[] files = directory.GetFiles("*.dll", SearchOption.TopDirectoryOnly);
foreach (FileInfo file in files)
{
// Load the file into the application domain.
AssemblyName assemblyName = AssemblyName.GetAssemblyName(file.FullName);
Assembly assembly = AppDomain.CurrentDomain.Load(assemblyName);
yield return assembly;
}
yield break;
}
</code></pre>
<p>EDIT: I have not tested the code (no access to Visual Studio at this computer), but I hope that you get the idea.</p>
http://stackoverflow.com/questions/1288291/how-can-i-correctly-prefix-a-word-with-a-and-an/1288384#12883843Answer by Patrik for How can I correctly prefix a word with "a" and "an"?Patrik2009-08-17T14:48:22Z2009-08-17T14:48:22Z<p>Since "a" and "an" is determined by phonetic rules and not spelling conventions, I would probably do it like this:</p>
<ol>
<li>If the first letter of the word is a consonant -> 'a'</li>
<li>If the first letter of the word is a vowel-> 'an'</li>
<li>Keep a list of exceptions (heart, x-ray, house) as <a href="http://stackoverflow.com/questions/1288291/how-can-i-correctly-prefix-a-word-with-a-and-an/1288331#1288331">rjumnro says</a>.</li>
</ol>
http://stackoverflow.com/questions/1286248/drop-down-image-list-in-winforms/1286852#12868521Answer by Patrik for Drop-Down Image List in WinformsPatrik2009-08-17T08:51:36Z2009-08-17T08:51:36Z<p>You can inherit your class from <code>System.Windows.Forms.ComboBox</code> and override the protected method <code>OnDrawItem(DrawItemEventArgs e)</code></p>
<p><strong>Example code:</strong></p>
<pre><code>public class ImageComboBox : ComboBox
{
protected override void OnDrawItem(DrawItemEventArgs e)
{
// Get the item.
var item = this.Items[e.Index] as string;
if(item == null)
return;
// Get the coordinates to where to draw the image.
int imageX = e.Bounds.X + 5;
int imageY = (e.Bounds.Height - image.Height) / 2;
// Draw image
e.Graphics.DrawImage(image, new Point(imageX, imageY));
// Draw text
e.Graphics.DrawString(item, this.Font, new SolidBrush(Color.Black),
new PointF(textX, textY);
}
}
</code></pre>
<p>The code above is only a quick and dirty example, and should not be used as it is (should not for example create a new SolidBrush each time the item is drawn), but I hope it will give you an idea of how to do it.</p>
http://stackoverflow.com/questions/1259494/net-multithreading-do-i-need-to-synchronise-access-to-a-variable-of-primitive/1260193#12601930Answer by Patrik for .NET Multithreading - Do I need to synchronise access to a variable of primitive type?Patrik2009-08-11T13:00:43Z2009-08-11T13:00:43Z<p>You could as people already written mark the variable with <code>volatile</code> or <code>lock</code> it.</p>
<p><strong>However</strong>, what you're trying to accomplish (allowing threads to communicate with each other by signaling) is already built into the .NET framework.</p>
<p>Take a look at <a href="http://msdn.microsoft.com/en-us/library/system.threading.manualresetevent.aspx" rel="nofollow"><code>ManualResetEvent</code> at MSDN</a>.</p>
http://stackoverflow.com/questions/887044/question-about-ambiguous-calls-in-c5Question about ambiguous calls in C#.Patrik2009-05-20T09:30:53Z2009-07-07T08:09:57Z
<p>Hi fellow coders,</p>
<p>I have a question that's not really a problem, but something that made me a little curious.</p>
<p>I have a class with two methods in it. One is a static method and the other one is an instance method. The methods have the same name. </p>
<pre><code>public class BlockHeader
{
public static BlockHeader Peek(BinaryReader reader)
{
// Create a block header and peek at it.
BlockHeader blockHeader = new BlockHeader();
blockHeader.Peek(reader);
return blockHeader;
}
public virtual void Peek(BinaryReader reader)
{
// Do magic.
}
}
</code></pre>
<p>When I try to build my project I get an error saying:</p>
<blockquote>
<p>The call is ambiguous between the
following methods or properties:
'MyApp.BlockHeader.Peek(System.IO.BinaryReader)'
and
'MyApp.BlockHeader.Peek(System.IO.BinaryReader)'</p>
</blockquote>
<p><strong>I know that the method signatures are virtually the same, but I can't see how I possibly could call a static method directly from an instance member.</strong> </p>
<p>I assume that there is a very good reason for this, but does anyone know what that reason is?</p>
http://stackoverflow.com/questions/469445/last-words-of-a-programmer/470500#4705003Answer by Patrik for Last words of a ??? programmerPatrik2009-01-22T19:33:34Z2009-06-23T19:37:37Z<p>C#:</p>
<pre><code>base.Dispose();
</code></pre>
http://stackoverflow.com/questions/901319/apple-ipod-and-c/901358#9013580Answer by Patrik for Apple Ipod and C#Patrik2009-05-23T11:21:08Z2009-05-23T11:21:08Z<p>A quick google search gave me:</p>
<ul>
<li><a href="http://www.kbcafe.com/juice/?guid=20050507072047" rel="nofollow">http://www.kbcafe.com/juice/?guid=20050507072047</a></li>
<li><a href="http://projects.gnome.org/hipo/" rel="nofollow">http://projects.gnome.org/hipo/</a></li>
</ul>
http://stackoverflow.com/questions/844412/convert-stringcollection-to-liststring/844438#8444381Answer by Patrik for Convert StringCollection to List<String>Patrik2009-05-10T00:43:02Z2009-05-10T00:43:02Z<p>Why not keep it simple and just iterate though it and add the items to the list, or have i misunderstood something?</p>
<pre><code>public static List<string> Convert(StringCollection collection)
{
List<string> list = new List<string>();
foreach (string item in collection)
{
list.Add(item);
}
return list;
}
</code></pre>
http://stackoverflow.com/questions/817376/looking-for-a-tool-that-will-let-me-store-and-insert-text-fragments-code-snippet/818090#8180901Answer by Patrik for Looking for a tool that will let me store and insert text fragments (code snippets) into Visual StudioPatrik2009-05-03T21:48:42Z2009-05-03T21:48:42Z<p>Maybe this is what you're looking for.</p>
<p><a href="http://www.csharper.net/blog/new%5Fversion%5Fof%5Fclipboard%5Fmanager%5F%5F1%5F0%5F0%5F6%5F.aspx" rel="nofollow">http://www.csharper.net/blog/new_version_of_clipboard_manager__1_0_0_6_.aspx</a></p>
http://stackoverflow.com/questions/669088/embedding-view-files-as-resource-inside-binary/804723#8047230Answer by Patrik for Embedding View files as resource inside BinaryPatrik2009-04-29T23:13:41Z2009-04-29T23:13:41Z<p>You can probably use a <a href="http://msdn.microsoft.com/en-us/library/system.web.hosting.virtualpathprovider.aspx" rel="nofollow">VirtualPathProvider</a> for this.</p>
http://stackoverflow.com/questions/804453/using-inner-classes-in-c/804474#8044741Answer by Patrik for Using Inner classes in C#Patrik2009-04-29T22:01:19Z2009-04-29T22:22:03Z<p>I think this is rather subjective, but I would probably split them up in separate code files by making the "host" class partial.</p>
<p>By doing like this, you can get even more overview by <a href="http://aspnetresources.com/blog/partial%5Fclass%5Ffiles%5Fin%5Fvs2k5.aspx" rel="nofollow">editing the project file</a> to make the files group just like designer classes in Windows Forms. I think I've seen a Visual Studio addin that does this automagically for you, but I don't remember where.</p>
<p><strong>EDIT:</strong><br />
After some looking I found the Visual Studio addin for doing this at <a href="http://mokosh.co.uk/page/VsCommands.aspx" rel="nofollow">http://mokosh.co.uk/page/VsCommands.aspx</a>.</p>
http://stackoverflow.com/questions/804196/in-c-where-do-you-use-ref-in-front-of-a-parameter/804439#8044390Answer by Patrik for In C#, where do you use "ref" in front of a parameter?Patrik2009-04-29T21:52:22Z2009-04-29T21:52:22Z<p>The obvious reason for using the "ref" keyword is when you want to pass a variable by reference. For example passing a value type like System.Int32 to a method and alter it's actual value. A more specific use might be when you want to swap two variables.</p>
<pre><code>public void Swap(ref int a, ref int b)
{
...
}
</code></pre>
<p>The main reason for using the "out" keyword is to return multiple values from a method. Personally I prefer to wrap the values in a specialized struct or class since using the out parameter produces rather ugly code. Parameters passed with "out" - is just like "ref" - passed by reference.</p>
<pre><code>public void DoMagic(out int a, out int b, out int c, out int d)
{
...
}
</code></pre>
http://stackoverflow.com/questions/654858/problem-with-excluding-namespace-from-xmlwriter-writestartelement1Problem with excluding namespace from XmlWriter.WriteStartElement.Patrik2009-03-17T15:54:00Z2009-03-17T16:37:30Z
<p>Hello fellow coders,<br />
I have a little problem that perhaps you can help me with. </p>
<p>I try to use the <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.aspx" rel="nofollow">XmlWriter</a> to write an XML-tag that looks like this (<a href="http://validator.w3.org/feed/docs/warning/MissingAtomSelfLink.html" rel="nofollow">w3c feed recommendation</a>):</p>
<pre><code><atom:link href="http://localhost" rel="self" type="application/rss+xml" />
</code></pre>
<p>The problem is that I can't use the <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmlwriter.writestartelement.aspx" rel="nofollow">WriteStartElement</a>-method as I would want to (atom as a prefix and link as the element name), since this gives me a "<em>ArgumentException: Cannot use a prefix with an empty namespace</em>".</p>
<p><strong>My code looks like this:</strong></p>
<pre><code>public void WriteTo(XmlWriter writer, Feed feed)
{
// RSS element
writer.WriteStartElement("rss", "");
writer.WriteAttributeString("version", "2.0");
writer.WriteAttributeString("xmlns", "atom", string.Empty, "http://www.w3.org/2005/Atom");
// Channel element
writer.WriteStartElement("channel");
// The link to the feed.
writer.WriteStartElement("link", "atom");
writer.WriteAttributeString("href", feed.FeedUrl.ToString());
writer.WriteAttributeString("rel", "self");
writer.WriteAttributeString("type", "application/rss+xml");
writer.WriteEndElement();
// Feed information
writer.WriteElementString("title", feed.Title);
writer.WriteElementString("description", feed.Description);
writer.WriteElementString("link", feed.Link.ToString());
// Iterate through all items.
foreach (FeedItem item in feed.Items)
{
writer.WriteStartElement("item");
writer.WriteElementString("title", item.Title);
writer.WriteElementString("link", item.Link.ToString());
writer.WriteElementString("description", item.Description);
writer.WriteElementString("guid", item.Guid);
writer.WriteEndElement();
}
// Channel element end
writer.WriteEndElement();
// RSS element end
writer.WriteEndElement();
}
</code></pre>
<p>I assume that my problem is trivial and can easily be solved, but how?</p>
<p><strong>UPDATE:</strong></p>
<p>The problem is solved. Check Jon Skeets answer for the solution.</p>
http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/591474#5914740Answer by Patrik for What dead programming languages do you know?Patrik2009-02-26T17:06:31Z2009-02-26T17:06:31Z<p><em>R.I.P.</em></p>
<ul>
<li>Turbo Pascal</li>
<li>AMOS</li>
<li>Amiga E</li>
</ul>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/500173#5001731Answer by Patrik for What real life bad habits has programming given you?Patrik2009-02-01T04:06:21Z2009-02-01T04:06:21Z<p>I have a tendency to think there is undo/redo for everything.</p>
http://stackoverflow.com/questions/483108/msmq-vs-temporary-table-dump/483804#4838046Answer by Patrik for MSMQ vs Temporary Table DumpPatrik2009-01-27T15:17:53Z2009-01-27T15:17:53Z<p>MSMQ isn't a bad choice and is definitely not difficult to learn, but keep in mind that there are some constraints that you should be aware of.</p>
<p><strong>Cons:</strong></p>
<ul>
<li>Each queue can only be 2GB.</li>
<li>Each message 4MB (altough the 4MB limit can be fixed by using MSMQ with WCF).</li>
<li>Only for Windows so you're limited to use it with .NET, C/C++ or COM library for COM-enabled environments.</li>
</ul>
<p><strong>Pros:</strong></p>
<ul>
<li>Supports Windows Network Load Balancer.</li>
<li>Supports Microsoft Cluster Service.</li>
<li>Integrated with Active Directory.</li>
<li>Ships with Windows.</li>
<li>Supports transactions.</li>
<li>MSMQ messages can be tracked by audit messages in the Windows Event log.</li>
<li>Messages can be automatically authenticated (signed) or encrypted upon sending, and verified and decrypted upon reception.</li>
</ul>
<p>Another approach you might want to consider is writing your data to a staging table. This might be a good idea since you want to have a message back log.</p>
<p>It's difficult giving advice when I don't know the rest of the system's architecture, but I hope this answer will help a little.</p>
<p><strong>Useful links</strong> </p>
<p><a href="http://www.codeproject.com/KB/dotnet/mgrmsmq.aspx" rel="nofollow">Programming MSMQ in .NET - Part 1</a><br />
<a href="http://code.msdn.microsoft.com/msmqpluswcf" rel="nofollow">Using MSMQ with WCF</a></p>
http://stackoverflow.com/questions/1740164/form-changes-size-between-constructor-exit-and-begining-of-load-cComment by Patrik on Form changes size between constructor exit and begining of Load C#Patrik2009-11-16T05:31:24Z2009-11-16T05:31:24ZThere's a list of the events being fired in the Form class at <a href="http://stackoverflow.com/questions/1575508/in-what-order-do-net-windows-forms-events-fire/1575573#1575573" rel="nofollow" title="in what order do net windows forms events fire">stackoverflow.com/questions/1575508/…</a>. Maybe that can be of help examining the problem.http://stackoverflow.com/questions/1721111/how-can-i-take-a-dump-file-for-winforms-application/1721125#1721125Comment by Patrik on How can I take a dump file for Winforms applicationPatrik2009-11-12T13:51:10Z2009-11-12T13:51:10ZHe asked for a dump file. If you want to be notified about exceptions, AppDomain.UnhandledException is a better choice.http://stackoverflow.com/questions/1662020/what-elements-of-net-are-missing-in-mono/1662080#1662080Comment by Patrik on What elements of .NET are missing in Mono?Patrik2009-11-02T16:29:19Z2009-11-02T16:29:19ZNot quite. If you look at the Mono status page, C# 3.0 is "mostly done".http://stackoverflow.com/questions/1571746/working-with-avi-files-in-c/1571795#1571795Comment by Patrik on Working with AVI files in C#Patrik2009-10-15T11:59:22Z2009-10-15T11:59:22ZI 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).http://stackoverflow.com/questions/1571426/multithreaded-syncronised-listt/1571488#1571488Comment by Patrik on Multithreaded Syncronised List<T>Patrik2009-10-15T10:41:48Z2009-10-15T10:41:48Z@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.http://stackoverflow.com/questions/9157/what-is-the-best-laptop-for-programmers/12673#12673Comment by Patrik on What is the best Laptop for programmers?Patrik2009-10-08T19:46:55Z2009-10-08T19:46:55ZUpdate: There is now 64-bit drivers that works perfect with Windows 7 and Vista.http://stackoverflow.com/questions/1539959/normalizing-net-genericsComment by Patrik on Normalizing .net genericsPatrik2009-10-08T19:45:13Z2009-10-08T19:45:13ZAre you wondering if you will get a performance benefit by generating specialized types instead of generic ones (like how templates in C++ works)?http://stackoverflow.com/questions/1529604/c-antipatterns/1529841#1529841Comment by Patrik on C# AntipatternsPatrik2009-10-08T15:56:42Z2009-10-08T15:56:42ZIsn't this more of a subjective opinion than a C# anti pattern?http://stackoverflow.com/questions/1529604/c-antipatterns/1529624#1529624Comment by Patrik on C# AntipatternsPatrik2009-10-08T15:53:23Z2009-10-08T15:53:23ZI've actually seen a person do this. Horrible...http://stackoverflow.com/questions/1493309/c-not-disposing-controls-like-i-told-it-to/1493332#1493332Comment by Patrik on C# Not Disposing controls like I told it to...Patrik2009-09-29T15:37:34Z2009-09-29T15:37:34ZOr you can use panel.Controls.Clear() if you want to remove them all. Control.ControlCollection will take care of clean up if necessary.http://stackoverflow.com/questions/1421006/is-there-a-tool-for-net-that-creates-a-programme-dependency-flow-chart-from-il/1421014#1421014Comment by Patrik on Is there a tool for .Net that creates a programme / dependency flow chart from IL / source?Patrik2009-09-14T11:53:48Z2009-09-14T11:53:48ZnDepend is an excellent tool.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/526625#526625Comment by Patrik on What is your best programmer joke?Patrik2009-09-11T13:51:42Z2009-09-11T13:51:42ZSame here. Laughed out loud.http://stackoverflow.com/questions/1407938/c-ipaddress-getaddressbytes-method-what-byte-order/1407984#1407984Comment by Patrik on C#: IPAddress.GetAddressBytes() method - what byte order?Patrik2009-09-10T22:10:28Z2009-09-10T22:10:28ZAre you sure this applies to IPAddress.GetAddressBytes? I've always thought that it always return the byte array as big endian.http://stackoverflow.com/questions/1393581/how-i-do-left-side-navigation-in-windows-application-in-netComment by Patrik on How i do left side navigation in windows application in .net?Patrik2009-09-08T12:00:06Z2009-09-08T12:00:06ZCan you elaborate a little more?http://stackoverflow.com/questions/1321352/why-choose-a-static-class-over-a-singleton-implementationComment by Patrik on Why choose a static class over a singleton implementation?Patrik2009-08-24T09:36:56Z2009-08-24T09:36:56ZThis is a duplicate question. See <a href="http://stackoverflow.com/questions/46541/when-should-you-use-the-singleton-pattern-instead-of-a-static-class" rel="nofollow" title="when should you use the singleton pattern instead of a static class">stackoverflow.com/questions/46541/…</a>