Category: .NET
Pages: << 1 ... 28 29 30 31 32 33 34 35 36 37 38 ... 54 >>
13/02/06
DXCore live demo with Mark Miller
Mark Miller demonstrates writing plugins for DXCore live in the latest episode of dnrTV. He sounds a bit hurried, but if you want to get into DXCore programming, this is definitely a Must View. And if you’re not yet convinced you want to get… more »
08/02/06
Use Go To Definition in VS 2005
A question I heard this morning made me remember this, and I thought it might be one of those improvements that many haven’t noticed yet. In VS 2005, the “Go to Definition” functionality has been improved an awful lot, in that VS creat… more »
06/02/06
Getting the number of items in an IEnumerable
int GetCount(IEnumerable enumerable) {
int count = 0;
foreach (object o in enumerable)
count++;
return count;
}
It's that simple, right? Well, no, it isn’t. What you have to realize is that in contrast to ICollection, IList or IBindingL… more »
31/01/06
Scrolling an InkCollector
As I mentioned elsewhere, I'm working on a DXCore plugin to enable (Tablet PC) ink drawing on the Visual Studio editor surface. A problem I stumbled upon in this regard was the scrolling functionality. Generally this is really easy to implement, using a… more »
Be careful when installing VS add-ins in localized Windows versions
When installing add-ins for Visual Studio, a number of different paths can be used. One of them is C:\Documents and Settings\All Users\Application Data\Microsoft\MSEnvShared\Addins - in a default installation of a US English Windows. Obviously a proper… more »


