How to Calculate Age in C#

This comes tricky when calculating someones age in C# because there is lot of methods and we don’t know which is the best way to calculate age in C#, So here is some methods to calculate someones age in C#. In the example, we have the current date and the dob and with a button … Read more

Send Email with Attachements and Progressbar in C# Windows Form

In this post explains how to send email from your c# windows application with progress bar and attachment, this method uses the smtp feature of email clients.Change the red color text to your credentials.Create a New Windows Form Application File -> New -> Project -> Windows Forms Application Add 4 Textbox for To,Subject,Attachements,Message Add 5 Labels Add … Read more

Add Button,Combobox,Checkbox,Image,Link Columns to DataGridView in C# Windows Form

DataGridView is used to display data in tabular structure in windows forms, DataGridView control is customizable and contains lot more events than any other control. The basic elements of  DataGridView is Rows,Columns,Cell, the default DataGridView cell type is   textbox. The following code explains how to add Button,Checkbox,Combobox,Image,Link column to DataGridView. Create a New Windows Form … Read more