Search Results

3
votes

Best way to replace tokens in a large text template

Well, depending on how many variables you have in your template, how many templates you have, etc. this might be a work for a full template processor. The only one I've ever used for .NET is …
1
vote

Large Image resizing libraries

A couple years ago I used FreeImage in a program that needed to load some relatively big images (12-mega-pixel images). It performed r …
4
votes

How would you implement MVC in a WindowsForms application?

Well, actually Windows Forms implements a "free-style" version of MVC, much like some movies implement some crappy "free-style" interpretation of some classic books (Romeo & Juliet come to mind …
0
votes

Exceptions vs Result Codes for a socket client class.

This is a rather interesting question. As such, there's probably no '100% correct' answer, and mostly it depends on how do you think the code using your function should be structured. The w …
0
votes

Pascal casing or Camel Casing for C# code?

Actually, there's no "standard" convention on this. There's a Microsoft edited guideline somewhere, and as with with any other naming convention guideline, surely there's another one refuting it, b …
2
votes

Why are entries in addition order in a .Net Dictionary?

I think this comes from the old .NET 1.1 times where you had two kinds of dictionaries "ListDictionary" and "HybridDictionary". …
1
vote

.NET Framework platform support tradition

Microsoft is obviously pushing towards a Vista-centric development environment. It's not just because of the obvious 'we need to make money' reason, but also because Vista is where the cool new API …
0
votes

Customized DataGridView column does not accept the entered decimal seperator under Windows Vista

Can you please paste your OnKeyDown and/or OnKeyPress code? At least the relevant key-filtering code. It will make be easier to spot out any problems. BTW, I normally use both a British Eng …
0
votes

What does a ListViewSubtemCollection use for its keys?

Subitems are only ordered by column index unluckily. So you'd have to access them like: protected override void OnItemDrag(ItemDragEventArgs e) { base.OnItemDrag(e); …
2
votes

Finding the time taken to send messages with WCF net.tcp

Hmmm... that's a difficult one. The problem here is you can't even make sure both the client and the server timers are in sync. If what you want to do is send some out-of-band data, so that …
1
vote

XMLTextReader in .NET 1.1

SAXExpat used to be really good. Expat is the XML parser, almost a reference implementation. I reme …
0
votes

Adjusting the auto-complete dropdown width on a textbox

Hmmm, there's no direct way really. You'd probably have to resort to subclassing (in the Windows API sense) the TextBox to do that, and even then there'd be a lot of guessing to do. …