Developer Interviews - Code first approach
One of challenges that I’ve seen people facing while executing projects is that they often end up having people in their team (many a times screened ...
One of challenges that I’ve seen people facing while executing projects is that they often end up having people in their team (many a times screened ...
This post is very specific to installing non-Buddypress compliant themes on Buddypress enabled Wordpress website. So for those who don’t know what is B...
This does not require a detailed post and just requires a quick solution for the problem- Understanding the problem... Why? When? When you convert a Winform ...
Instantiate a FileInfo object with the full path as constructor arg. Then simply call FileInfo.Extension and you will get just the extension of the file. F...
Choose a textbox over which we will test this experiment: [sourcecode language='csharp'] ColorDialog colorDialog1 = new ColorDialog(); //fontDialog1.ShowColo...
Check out: http://support.microsoft.com/support/kb/articles/q326/2/01.asp It is indeed a good read.
WebBrowser control can be used inside a form to display HTML contents and listen to events such as NavigateComplete or BeforeNavigate Use of ActiveX wrappers...
DataGridView is an enhanced version of DataGrid. Some of the features lacking in DataGrid are: Multiple column types Multiple ways to display data Multiple...
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...
An easier way to control properties of multiple controls is to place all the controls into a single GroupBox and then use the GroupBox properties property to...
The opacity property enables you to specify a level of transparency for the form and its controls. See the .NET documentation for Form.Opacity for difference...