Search Results

0
votes
0answers
67 views

Creating a custom datagridrowview

Hi everyone, I'm trying to create a custom gridview similar to the one present in SQL Management Studio for mapping fields to another database. …
2
votes

What’s the best available online resource for Windows Mobile Development?

Coding4Fun has a few tutorials on Windows Mobile Device. Most of them are quite involved, spread over multiple posts, and covers diffe …
-2
votes

Is there a difference between DataTable.Clear and DataTable.Rows.Clear?

The both do the same thing. One is just an inherited method from the Collections class. And the Table.Clear() just calls that method. …
4
votes

How do you see the future of .NET versus JAVA?

At this point in the game does it really matter. They are both mature frameworks with lots of developers on each. The only difference is you have Microsoft on one side and barring a major disaster …
0
votes

Is it possible to know if .NET framework is installed from a .NET application?

If it's packaged in an installer you can set the install conditions to check for .NET and the framework version. The other way to check the framework is: System.Runtime.Inte …
4
votes

Auto update your applications through Windows Update

You should check out Microsoft ClickOnce …