Latest Posts

How to zoom an image in C#
By Tan Lee Published on Jul 02, 2017 16.46K

To zoom an image in a PictureBox in C#, you can manipulate the Image property of the PictureBox by adjusting the SizeMode and scaling the image.

Read more
How to Print a Picture Box in C#
By Tan Lee Published on Jul 16, 2024 20.63K

Printing an image from a PictureBox control in a C# Windows Forms Application involves several steps, including setting up a PrintDocument, handling the print page event, and managing printing settings.

Read more
How to Extract the Icon Associated with a File in C#
By Tan Lee Published on Jul 16, 2024 6.97K

You can extract the icon associated with a file in a C# Windows Forms application using the Icon.ExtractAssociatedIcon method from the System.Drawing namespace.

Read more
How to dynamically add button and click event in C#
By Tan Lee Published on May 21, 2024 17.21K

In C#, you can dynamically add a button click event handler by creating a method that will handle the click event and then assigning this method to the button's Click event at runtime.

Read more
How to read .csv file in C#
By Tan Lee Published on Jul 16, 2024 30.75K

To read a CSV file into a DataTable and display it in a DataGridView in a C# Windows Forms application, you can follow these steps.

Read more
How to Insert Update Delete View and Search data from SQL Server in C#
By Tan Lee Published on Jun 01, 2017 13.2K

How to Insert Update Delete View and Search data from SQL Server in C#

Read more
AdminLTE Admin Dashboard Template
By Tan Lee Published on Nov 14, 2024 847

Using an admin panel and dashboard template can save significant time, particularly in front-end development.

Read more
How to Search DataGridView by using TextBox in C#
By Tan Lee Published on Aug 13, 2017 27.16K

To filter or search a DataGridView using a TextBox in C#, you typically bind the DataGridView to a DataTable or similar data source and use a DataView to filter the rows.

Read more
How to Print RDLC Report without Report Viewer in C#
By Tan Lee Published on Jul 17, 2024 32.74K

To print an RDLC report without using the Report Viewer control in a C# Windows Forms application, you can follow these steps.

Read more
How to read and write to text file in C#
By Tan Lee Published on Jul 04, 2017 11.2K

In C#, reading from and writing to a text file can be done using classes in the System.IO namespace, such as StreamReader, StreamWriter, File, and FileInfo.

Read more
How to download chrome msi installer
By Tan Lee Published on Nov 16, 2024 934

To download the MSI installer for Google Chrome, you can follow these steps.

Read more
How to Encrypt and Decrypt plain string using RC4 in C#
By Tan Lee Published on Mar 23, 2024 11.89K

Implementing the RC4 algorithm in a C# Windows Forms application involves creating the encryption and decryption functionality using the RC4 cipher.

Read more