Results for VB.Net Programs
Write VB.Net program to search employee record using emp_id or employee_name into database,display employee record in data grid. Write VB.Net program to search  employee record using emp_id or employee_name into database,display employee record in data grid. Reviewed by on April 27, 2015 Rating: 5
Design VB.Net to display the employee details in grid view as well as in textboxes after clicking next and previous command button.(use database) Design VB.Net to display the employee details in grid view as well as in textboxes after clicking next and previous command button.(use database) Reviewed by on April 27, 2015 Rating: 5
Write a programin VB.Net to design following form. Accept Number from user with proper validations Select radio button ,after clicking command button display result in textbox.if number2 is entered zero and operator is division then display error message 'Divide By Zero' in result textbox.(use exception handling) Write a programin VB.Net to design following form.  Accept Number from user with proper validations Select radio button ,after clicking command button display result in textbox.if number2 is entered zero and operator is division then display  error message 'Divide By Zero' in result textbox.(use exception handling) Reviewed by on April 27, 2015 Rating: 5

Write a programin VB.Net to display following form. Add button will add the text from textbox to list1.Button ' >' will move selected items from List1 to List2 , '>>' will move all items from List1 to List Button'<' will move selected item from List2 to List1, '<<' will move all items from List2 to List1.Clearbutton willclear both the List. While moving items fromList1 to List2 duplicates items are not allowded.

April 27, 2015
Public Class Form1 Dim i, j As Integer Private Sub Form1_Load ( ByVal sender As System.Object, ByVal e As System....
Write a programin VB.Net to display following form. Add button will add the text from textbox to list1.Button ' >' will move selected items from List1 to List2 , '>>' will move all items from List1 to List Button'<' will move selected item from List2 to List1, '<<' will move all items from List2 to List1.Clearbutton willclear both the List. While moving items fromList1 to List2 duplicates items are not allowded. Write a programin VB.Net to display following form.   Add button will add the text from textbox to list1.Button ' >'  will move selected items from List1 to List2 , '>>' will move all items from List1 to List  Button'<' will move selected item from List2 to List1, '<<' will move all items from List2 to List1.Clearbutton willclear both the List. While moving items fromList1 to List2 duplicates items are not allowded. Reviewed by on April 27, 2015 Rating: 5

Write a program in VB.Net to do the followning operation on List-box and combo box controls 1) Add item 2) Remove Item 3) Sort Items 4) Single Selection of Item 5) Multi Selection of Item 6) Extended Multi Select of Item 7) Displaying Multiple Columns of Entries 8) Clear Items. Add the following to your form 1) One List Box Control 2) One Combo Box Control 3) One Command Button (For Remove)

April 27, 2015
Public Class Form1 Private Sub Button1_Click ( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1...
Write a program in VB.Net to do the followning operation on List-box and combo box controls 1) Add item 2) Remove Item 3) Sort Items 4) Single Selection of Item 5) Multi Selection of Item 6) Extended Multi Select of Item 7) Displaying Multiple Columns of Entries 8) Clear Items. Add the following to your form 1) One List Box Control 2) One Combo Box Control 3) One Command Button (For Remove) Write a program in VB.Net to do the followning operation on List-box and  combo box controls                   1)             Add item                    2)             Remove Item                  3)             Sort Items                  4)             Single Selection of Item                  5)             Multi Selection of Item                  6)             Extended Multi Select of Item                  7)             Displaying Multiple Columns of Entries                  8)             Clear Items.        Add the following to  your form        1) One List Box Control        2) One Combo Box Control        3) One Command Button (For Remove) Reviewed by on April 27, 2015 Rating: 5
Write a program in VB.NET to create a simple editor.Create a button that will allow the user to access function like file open,save,find. Write a program in VB.NET to create a simple editor.Create a button that will allow the user to access function like file open,save,find. Reviewed by on April 27, 2015 Rating: 5

Create the following application in VB.NET.The Form should contain the following menu Area Exit Circle Rectangle Square On selection of the menu option 'Circle',one form should be open in that form user enters radius into textboxand display area of circle in message box.On selection of the menu option 'Rectangle',one form should be open in that form user enters length and breadth into textboxand display area of rectangle in message box.On selection of the menu option 'Square',one form should be open in thatform user enters side into textboxand display area of circle in message box.

April 27, 2015
Public Class frmMain Private Sub CircleToolStripMenuItem_Click ( ByVal sender As System.Object, ByVal e As System.EventArg...
Create the following application in VB.NET.The Form should contain the following menu Area Exit Circle Rectangle Square On selection of the menu option 'Circle',one form should be open in that form user enters radius into textboxand display area of circle in message box.On selection of the menu option 'Rectangle',one form should be open in that form user enters length and breadth into textboxand display area of rectangle in message box.On selection of the menu option 'Square',one form should be open in thatform user enters side into textboxand display area of circle in message box. Create the following application in VB.NET.The Form should contain the following menu                      Area                   Exit                        Circle                     Rectangle                     Square                   On selection of the menu option 'Circle',one form should be open in that form user enters radius into textboxand display area of circle in message box.On selection of the menu option 'Rectangle',one form should be open in that form user enters length and breadth into textboxand display area of rectangle in message box.On selection of the menu option 'Square',one form should be open in thatform user enters side into textboxand display area of circle in message box. Reviewed by on April 27, 2015 Rating: 5
Write VB.NET program to display the status of mouse using label controls program should display current x,y postions of mouse .when user clicks left or right buttons lable should indicate which button is pressed.program should also indicate double click.When user clicks on close,show summery report as given below. Write VB.NET program to display the status of mouse using label controls program should display current x,y postions of mouse .when user clicks left or right buttons lable should indicate which button is pressed.program should also indicate double click.When user clicks on close,show summery report as given below. Reviewed by on April 27, 2015 Rating: 5
Write VB.NET program to take three text boxes and two buttonson the form. Enter differnet string in first and second textbox.On clicking the First command button , concatenation of two string should be displayed in third text box and on clicking second command button,reverse of string should display in third text box. Write VB.NET program to take three text boxes and two buttonson the form. Enter differnet string in first and second textbox.On clicking the First command button , concatenation of two string should be displayed in third text box and on clicking second command button,reverse of string should display in third text box. Reviewed by on April 27, 2015 Rating: 5
Write VB.NET program to the following operation on the Rich text box values font Style:- i)Font color ii)Indent iii)SaveText iv)Exit Add the following to your form i)One Rich Text Box ii)Six command Button controls(Font Style,Font Color, Indent,Save Text,Exit). Write VB.NET program to the following operation  on the Rich text                   box values font Style:-          i)Font color         ii)Indent        iii)SaveText        iv)Exit Add the following to your form       i)One Rich Text Box       ii)Six command Button controls(Font Style,Font Color, Indent,Save Text,Exit). Reviewed by on April 27, 2015 Rating: 5
Write VB.NET program to add three text boxes at runtime .Allow user to enter values and then display Maximum and Minimum va lue using message box after click on command button Write VB.NET program to add  three text boxes at runtime .Allow user to enter values and then display Maximum and Minimum va lue using  message box after click on command button Reviewed by on April 27, 2015 Rating: 5
Write a VB.NET program to Design following form to store numbers in single dimensional array and tofind Maximum number & Sum of all numbers in array. Write a VB.NET program to Design following form to store numbers in single dimensional array and tofind Maximum number & Sum of all numbers in array. Reviewed by on April 27, 2015 Rating: 5
Powered by Blogger.