Winform tip#6:DataGrid vs DataGridView
DataGridView is an enhanced version of DataGrid. Some of the features lacking in DataGrid are: Multiple column types Multiple ways to display data Multiple...
DataGridView is an enhanced version of DataGrid. Some of the features lacking in DataGrid are: Multiple column types Multiple ways to display data Multiple...
Interface oriented is something like having contract-based approach, means whatsoever be there under the Contract you have to implement all of it. A good exa...
Use the form's WindowState property. To minimize: this.WindowState = System.Windows.Forms.FormWindowState.Minimized; To maximize: this.WindowState = S...
Best way to deploy is by using ClickOnce deployment. This allows user to get regular updates, patches to the product while conforming to the security standar...
Use Singleton pattern on Child Form and change the method of invocation in Parent form. Child form: //Used for singleton pattern static frmChildForm childFor...