Code: Module Module1 Class Employee Dim sal As Long Overridable Function Accept(ByVal bs As Integer, ByVal b As...
Read More
Showing posts with label Form Based VB NET. Show all posts
Showing posts with label Form Based VB NET. Show all posts
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
32 Program for Panel Control in VB.NET
Form Design: Code: Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load P...
Read More
31 Program for Tool Strip Menu in VB.NET
Form Design: Code: Public Class Form1 Private Sub SaveToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles Save...
Read More
30 Program using Picture Box Control to load an image at run time in VB.NET
Code: Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click If OpenFileDia...
Read More
29 Program for Window Application using Picture Box in VB.NET
Form Design: Code: Public Class Form1 Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load ...
Read More
28 Program to insert controls at Run Time in VB.NET
Code : Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim t A...
Read More
27 Exception using On Error GoTo in VB.NET
Code : Public Class Form1 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim a, b ...
Read More
24 Program to Sum of items in Combo Box in VB.NET.
Code: Public Class Form1 Public Class Add Public i, sum As Integer Sub display() sum = 0 ...
Read More
23 Program to use class in Form Based Program in VB.NET
In this program we are finding volume using a class. Code: Public Class Form1 Public Class Box1 Public l, b, h, vol As I...
Read More
21 Program to print reverse of string and check whether input string is palindrome or not in VB.NET
Code: Public Class Form1 Dim str1, str2, temp As String Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVa...
Read More
20 Program to check entered number on textbox in prime or not using button in VB.NET
Code: Public Class Form1 Dim num, temp, i As Integer Dim b As Boolean Private Sub TextBox1_TextChanged(ByVal sender As ...
Read More
Subscribe to:
Posts (Atom)