1
vote
Long-time LAMP Developer moving to VB.NET
Welcome to the light :-)
Legion, but it all depends on how complicated your schema and queries are. For basic things, you'll be up and running in no time.
Wit …
2
votes
How to reference to multiple version assembly
Is this what you need?
http://www.infosysblogs.com/microsoft/2007/04/loading_multi …
71
votes
0
votes
Lingering assembly dependency in C# .NET
grep your project folder. It could be a hidden reference in your project, or a project that your project references. Cleanse with Notepad if needed.
…
0
votes
1
vote
Performance critical GUI application (windows,linux)
No, it does not make sense to do the "expensive stuff" in C/C++. The potential (and most likely minor) performance improvements never, ever outweigh your productivity being an abject, sick joke whe …
0
votes
Multithreading Design Question
Dynamic/configurable, since the optimum number all depends on the environment and what the bottleneck actually is.
…
0
votes
How do I create a workflow instance reliably based on an external event?
I would go with MSMQ/event table. Polling is only dirty if you do it wrong.
One thing to keep in mind: you say you want multiple WF servers for high availability, but both of them use t …
1
vote
Automatically incremented revision # doesn’t show up in the About Box.
Change the code for the About box to
Me.LabelVersion.Text = String.Format("Version {0}", My.Application.Deployment.CurrentVersion.ToString)
Please note that all t …
1
vote
Browse for a directory in C#
It's not heavy-weight at all. Crude, yes, but it's much better than rolling your own.
…
8
votes
Is there an easy way to create ordinals in C#?
You'll have to roll your own. From the top of my head:
public static string Ordinal(this int number)
{
var work = number.ToString();
if (number == 11 || number == 12 || number = …
1
vote
.NET: What are attributes?
Attributes are like metadata applied to classes, methods or assemblies.
They are good for any number of things (debugger visualization, marking things as obsolete, marking things as seriali …
0
votes
VS.NET Application Diagrams
Yes, and no, it's not very useful in my opinion. It's not very stable, it's easy to get out of sync, and the "look how fast I generate this" advantage is virtually nil when compared to more mundane …
0
votes
Path Display in Label
Does this do what you want?
http://www.codeproject.com/KB/vb/NewPathCompactPath.aspx
…
0
votes
Do you have any tips to improve resharper and/or visual studio performance ?
I'm having the exact same issue, and from the JetBrains site, it looks like they sort-of know about it but aren't admitting anything. Turning off solution-wide analysis does seem to help quite a bi …
