Journal Program List
1) Create a window form to enter First name , Middle
name and Last name and display Message.
2) Create a window form to do simple arithmetic
operations like (Addition, Subtraction, Multiplication,
Division).
3) Create Log in form using window control.
4) Create an application form to enter student details
like (Student Name, Department, gender, city,
mobileno, Hobbies, photo) and load it on another
form.
5) Create a vb.net application for count age using
DateTimePicker Control.
6) Create a vb.net application for calculator.
7) Create a window form to select multiple items from
CheckedListBox and display selected items.
8) Create vb.net application to save text file using
SaveFileDialog Control.
9) Create an application form of Stopwatch.
10) Create an application for developing Notepad.
11) Create an application for develop Tic Tac Toe game.
12) Create VB.NET application that maintain the cricket
players record with following database table.
Players(name, country ,no.of matches ,no of runs)
Perform insert, update and delete operations on it.
Also display the players information according to
country wise.
Or
Create VB.NET application that maintain the cricket
players record with following database table.
• Create table Players(name, country ,no.of
matches ,no of runs)
• Design proper form and make necessary
validation.
• Perform insert and delete operations.
• Generate report country wise in DataGridView
for the players.
13) Create an application which search for a particular
BookID , if it is found, accepts new cost and quantity.If
not, insert the record in the table, use
BookMaster(BookID,Name,Cost,Quantity). Provide
facility to display.
14) Create Vb.net application which maintain jewellery
details.Create the following table:
Jewellery(jid,name,weight,jewellery_type,price).
Perform add,update, and delete operation on
table.Also generate report in gridview to show
specific type of jewellery.Also give navigate facility.
Also Display Records in ascending and decsending
order.
15) Create a VB.NET application to maintain information
of Medicine in following table.
tblMedicine(MID, Name, Type[tablet,capsule,syrup],
company, rate)
Perform insert,Delete,Update and navigate operation
on it and generate report in data gridview for those
medicine which are syrup and rate less than 500.
16) Create VB.NET application that maintains
information of students [40] in the following data
tables. Student(id,name, course, DOB, address)
Perform insert, update and delete operations and also
generate report in data GridView for students who
are studying in course BCA.
17) Create vb.net application which maintain Policy
and Agent information.
Create following table:
Agent_Master(Agent_Code,Agent_Name,City)
Policy_Master(Policy_No,Agent_Code,Customer_Nam
e,Start_Date,End_Date,Policy_Amt)
Perform following operation:
(a) Provide Insert, Update, Delete and Display
facilities.
(b) Display policy no., agent no. and policy holder
name in ascending order based on policy amount.
(c) Display Agent name, his client’s name and total
policy amount agent-wise.
18) Create vb.net MDI application that has following
functionalities for a grocery store.
1) Insert Grocery Items in GroceryMaster table(Item
No,Name,MRP,Sell Price,Quantity)
2) Display data in DataGridView and ability to search
for specific Item Name.
3) Update, Delete operations for Updating Stock
Quantity.
4) Listing of Out of Stock Grocery Items in New Form.
19) Create vb.net MDI application that has following
functionalities for a Eletronic Shop.
1)Insert Product Items in Catalogue Master table
(ProductNo,PName,PType(Mobiles,Tablet,Wearables
,Accessories),PRate,PQuantity)
2)Listing of all data in DataGridView and ability to
filter data by PType.
3)Update, Delete operations for Updating Product
Quantity.
4) Listing out all products with price less than Rs. 1000
with Single click.
20) Create VB.NET application to maintain item
information. ItemMst (ItemNo. Name, Cost,
Quantity) Design proper form which search for a
particular item. If it is found accepts new cost and
quantity, otherwise insert new record in the table.
Also generate report of out of stock item name in
data grid view.
21) Create a VB.NET Application to maintain products.
Products(ProductId,ProductName,Price,Quantity,Expi
ry Date)
Perform following task:
1) Add new product if not present in product table.
2) Provide facility for search by ProductName.
3) Remove all expiry date products.
4) Increase rate of each product to 5%.
22) Create .NET Application to maintain employee
details for the following table.
Employee(EmployeeId,EmployeeName,
Department,Designation,Salary)
Perform following task:
1) Add Employee Name if name not present in
employee table.
2) Search employee detail by department and
designation.
3) Increase salary of all employee to 10%.
4) Display number of employee doing job in each
department.