0% found this document useful (0 votes)
215 views

Practical Assignments - 1

This document contains 6 programming tasks: 1) Create a basic calculator app that allows arithmetic operations and reusing results. 2) Develop an app with buttons to transfer list items between two listboxes. 3) Make a textbox that only accepts numbers as input. 4) Build a tic-tac-toe game that declares a winner when a combination is made. 5) Code a timer that opens a form for a minute and alerts the user at 10 seconds left. 6) Replicate the functionality of Windows Notepad in a VB.NET app.

Uploaded by

Heta Desai
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
215 views

Practical Assignments - 1

This document contains 6 programming tasks: 1) Create a basic calculator app that allows arithmetic operations and reusing results. 2) Develop an app with buttons to transfer list items between two listboxes. 3) Make a textbox that only accepts numbers as input. 4) Build a tic-tac-toe game that declares a winner when a combination is made. 5) Code a timer that opens a form for a minute and alerts the user at 10 seconds left. 6) Replicate the functionality of Windows Notepad in a VB.NET app.

Uploaded by

Heta Desai
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

SDJ International College

Practical Assignment - 1

S
Question
r.
Create a calculator which will take two numbers from user. It allows the user
to do mathematical operations like Addition, Subtraction, Multiplication and
1.
Division. User can use the result of the last operation as the input for the next
operation.
Write a program to transfer the list items of a listbox to another listbox. There
should be four buttons. 1) Transfer all from listbox1 to listbox2. 2) Transfer the
2.
selected item from listbox1 to listbox2. 3) Transfer the selected item from
listbox2 to listbox1. 4) Transfer all from listbox2 to listbox1.
Write a program to create a textbox which will only accept numbers from the
user as an input. It wont allow the user to type numbers. There wont be any
3.
messagebox shown to the user. He/she just cant type the numbers within the
textbox.
Write a program to create a tictactoe. Provide two textboxes to the user to
enter their name as Player1 and Player2. Then turn by turn, the players will
4.
play. As soon as a player has managed to make the combination, the winner
should be declared.
Write a program to utilize the Timer control. Create a form with a button on it.
When the user clicks on the button, another form will appear and the
countdown will start for a minute. When 10 seconds will be left, a message
5.
must be provided to the user stating that he/she has 10 seconds left. When a
minute is over, the second form should disappear and the first will appear
again.
Create Notepad in vb.net with the same options as the Notepad of Windows
6.
has.

You might also like