Designing a dashboard in wpf
Designing a dashboard in wpf Hello friend’s this is Rashid Hussain come with another video tutorial. In this tutorial I’ll show
Read MoreYour Online Instructor
Designing a dashboard in wpf Hello friend’s this is Rashid Hussain come with another video tutorial. In this tutorial I’ll show
Read MoreHow to use progress bar in c# winforms application Hello friend’s this is Rashid Hussain come with another video tutorial.
Read MoreCreate Login Form With User Authentication in C# using PostgreSQL Hello friend’s this is Rashid Hussain come with another video
Read MoreDesign Login and Registration page in asp.net webform Hello friend’s this is Rashid Hussain come with another video tutorial on
Read MoreDesigning a Modern Flat Desktop Application for Fast Food Restaurant in Visual C# net Images Hello everyone, welcome back me
Read MoreHow to use Error Provider Control in Windows Forms and C# TextBox 1 Validating
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
private bool CheckName() { bool status = true; if (textBox1.Text=="") { errorProvider1.SetError(textBox1,"Please Enter Your Name"); status = false; } else { errorProvider1.SetError(textBox1,""); } return status; } |
TextBox 2 Validating
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
private bool CheckAge() { bool status = true; if (textBox2.Text=="") { errorProvider1.SetError(textBox2,"Please Enter Your Age"); status = false; } else { errorProvider1.SetError(textBox2,""); try { int checkage = int.Parse(textBox2.Text); errorProvider1.SetError(textBox2, ""); if (checkage<18) { errorProvider1.SetError(textBox2, "your age must be 18 year old"); status = false; } else { errorProvider1.SetError(textBox2, ""); } } catch (Exception ex) { errorProvider1.SetError(textBox2, "Please enter your age as number"); status = false; } } return status; } |
When
Read MoreHow to export DataGridView data to a pdf file and save using C# We will learn how to export DataGridView
Read MoreSchool Management System Project in c# .net In School Management System You can hold a school record. Here only (UI
Read MoreGenerating QR Code in C# Windows Form Application You can create a simple demo by dragging the PictureBox, TextBox and
Read MoreCreate Barcode Image in c# WinForms App In this post I’ll show you how to generate barcode image using ZXing library
Read More