Showing posts with label Form Based VB NET. Show all posts
Showing posts with label Form Based VB NET. Show all posts

41 Overriding in VB.NET

Code: Module Module1     Class Employee         Dim sal As Long         Overridable Function Accept(ByVal bs As Integer, ByVal b As...
Read More

38 Program using Recursive Function in VB.NET

Design: Code: Public Class Form1     Dim fact As Integer = 0     Dim num, f As Integer     Function Factorial(ByVal num As In...
Read More

37 Program using Function in VB.NET

Code: import java.awt.*; import java.applet.*; /* <applet code="First" height=300 width=300> </applet> */ ...
Read More

36 Validation using Error Provider in VB.NET

Regular Expression: ^[789]\d{9}$ ^ #Match the beginning of the string [ 789 ] #Match a 7, 8 or 9 \d #Match a digit (0-9 and ...
Read More

35 Validation using Regex in VB.NET

Regular Expression: "\d+" : It will search for numbers in a given string. [abc] : Find any character between the brackets ...
Read More

34 Stopwatch using Timer in VB.NET

Design: Code: Public Class Form1     Dim s As Integer = 0     Dim m1 As Integer = 0     Dim m As Integer = 0     Private Su...
Read More

43 Search Record in MySql DataBase in VB.NET

Code  : Imports MySql.Data.MySqlClient Public Class Form1     Dim con As MySqlConnection     Dim adpt As MySqlDataAdapter     Di...
Read More

42 Create a form using MySql Data Base Data Adapter, Data Binding and Command Builder in VB.NET

DataBase. : Form Design: Code  : Imports MySql.Data.MySqlClient Public Class Form1     Dim cmd As MySqlComma...
Read More

33 Program for Tab Control And Image List in VB.NET

The  Tab control is used  to display some specific  controls  at the same time. When a  tab  pane is enabled: the  controls  associated wit...
Read More