1
vote
1
vote
Converting vb.net to c# tips
Here's a quick comparison chart I look at when I switch between languages.
…
1
vote
How to deal with XML in C#
If you create a typed dataset in the designer then you automatically get an xsd, a strongly typed object, and can load and save the xml with one line of code.
…
0
votes
Are there any ‘ok’ Image Recognition libraries for .NET?
You might also find this interesting:
www.codeplex.com/IR/
…
0
votes
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on.
I have had this problem with the FileSystemWatcher and found that the following code solved the problem:
fsw.SynchronizingObject = this
The control then uses the curren …
0
votes
Should we select VB.NET or C# when upgrading our legacy apps?
I'm not biased to either language but you do have to factor in that if the majority of developers are into c# then that makes recruiting these developers easier, you may also find more examples and …
9
votes
How do I add code to the exit button in a c# form?
Using the FormClosing Event should catch any way of closing the form.
…
0
votes
Why is modulus operator not working for double in c#?
Modulus is defined in msdn as:
x - (x / y) * y
If you do it this way manually it seems to get the correct result.
…
2
votes
In C# .net, How does one access a control from a static method?
Its possible to pass in a reference to the current form like this:
public static void ReceiveMSG(string message, MainForm mainform)
{
mainform.txtDisplayMessages.AppendText(mes …
