CVS integration using C#
NetCvsLib is a CVS client library written entirely in C# for the .NET platform. Check it out NetCvsLib.
How can I use XP Themes with Windows Forms using the .NET FrameWork 1.1?
The .manifest file is not required if you are using .NET FrameWork 1.1. You can now use the application’s EnableVisualStyles() method which should called before creating any controls. You also need to ensure that the FlatStyle property of the control is changed to System instead of the default value of Standard. [C#] static void Main() { Application.EnableVisualStyles(); Application.Run(new Form1()); } [VB.Net] Public Shared Sub Main() System.Windows.Forms.Application.EnableVisualStyles() System.Windows.Forms.Application.Run(New Form1) End Sub
How do I check/uncheck all items in my checkedlist
To check all items, you can use code such as: C# for( int i=0 ; i < myCheckedListBox.Items.Count; i++ ) { myCheckedListBox.SetItemChecked(myCheckedListBox.Items[i], true); } VB.NET For i As Integer = 0 To myCheckedListBox.Items.Count – 1 myCheckedListBox.SetItemChecked(myCheckedListBox.Items(i), True) Next
What is different in the ASP.Net 2.0 code behind model?
In 2.0, the code-behind class is now a partial class WITHOUT the declared member variables representing your serverside controls. These members variables will instead be declared in another partial class that will be generated automatically by the runtime. Here is an article from ftp online: The New ASP.NET 2.0 Code-Behind Model that talks about this change in detail.
What’s new with IIS 7.0?
Here is an article from ftp online: A First Look at IIS 7.0