# |
Assignment Objective |
Source |
1. |
Take appropriate text boxes and command buttons to accept text in one text
box, copy it to another text box and append (concat) them in the yet another
text box. |
assgn1.zip |
2. |
Write a procedure to accept two integer values and perform the following
operations on them,
(i) Addition, (ii) Subtraction, (iii) Multiplication, and (iv) Division. |
assgn2.zip |
3. |
Define Keypress events for various control keys and their combinations such
as Ctrl, Shift, Alt, Ctrl+Alt, Alt+Shift, Ctrl+Alt. |
assgn3.zip |
4. |
Define maximum value of a variable and accept a value in it and display
appropriate messages that the value is acceptable or not. |
assgn4.zip |
5. |
Accept a name in small letters and convert it into capital letters. |
assgn5.zip |
6. |
Accept text "University Computer Center" and change background and
foreground color of the text. Display the abbreviated form UCC back to the
user. |
assgn6.zip |
7. |
Display properties of currently loaded form (name, width, height, caption)
and set password for loading another form. |
assgn7.zip |
8. |
Display circle, rectangle and lines on the form with command buttons.
Provide a refresh button also. |
assgn8.zip |
9. |
Draw a pie chart with color. |
assgn9.zip |
10. |
Display all drives, directories, and subdirectories in treeview form. |
assgn10.zip |
11. |
Write a program to generate first 10 terms of Fibonacci series recursively. |
assgn11.zip |
12. |
Write a program to compute factorial of an integer recursively. |
assgn12.zip |
13. |
Write a program to search an element in the list of integers using binary
search method. |
assgn13.zip |
14. |
Write a procedure to accept only a non numeric capital letter in a box and
numeric value in another textbox only and display characters in small case
appended with numeric data. |
assgn14.zip |
15. |
Create a list of items and find total no. of items and current position in
the list and display selected item from the list and remove it after
confirmation. |
assgn15.zip |
16. |
Read a text file name, determine the size of file in lines and bytes. |
assgn16.zip |
17. |
Various database access operations. (The code is merged for #25 and #26 too) |
assgn17_25_26.zip |
18. |
Perform various operations on list,
(i) Enter items in list1,
(ii) Move items one-by-one from list1 to list2,
(iii) Move all items from list1 to list2,
(iv) Copy items from list1 to list2, and
(v) Sort list1 and display sorted list in list2. |
assgn18.zip |
19. |
Create a list and perform the following operations on it,
(i) Add items,
(ii) Search a item in the list,
(iii) Control moves to first and last record, and
(iv) Display no. of items in the list. |
assgn19.zip |
20. |
Demonstrate features of ComboBox control such as DropDown, Simple and
DropDown List. |
assgn20.zip |
21. |
Make a simple calculator. (The code is merged for # 22 too) |
assgn21.zip |
23. |
Perform following file control operations,
(i) List all drives,
(ii) List sub-folders,
(iii) List all parent folders, and
(iv) List all files of a selected directory. |
assgn23.zip |