Hey I am new to VB and we got an assignment and I have no idea what to do at all. Not even in the slightest. This is the task sheet:
_______________________________________________________________
Purpose
Produce basic software programs that demonstrate introductory programming skills.
Brief
Complete all parts of the project specification.
Type
Project
Details
Project specification
A program to graphically show one dimensional array operations.
The program will allow for:
-Insertion of data
-Deletion of data
-Sequential search of data
Create a project plan for this task.
You are to provide algorithmic solutions for the program.
- Using modular design.
You must have the designs approved before progressing to the coding stage.
Code the solutions and test for correct operation.
Provide technical documentation.
Provide user documentation.
_______________________________________________________________
Even if you've never built software before, you must have used it. Think about how programs you've used in the past have worked and how they have done the sorts of things that you have been asked to do and start writing down some ideas. That is basically a high-level design and has nothing to do with implementation so doesn't require any coding. Once you've got a high-level design you can look at how to break it down into more manageable pieces, then you can look at implementing each piece independently of the rest. You'll find that writing code is much easier when it's just for one simple thing instead of a huge problem. That's called "divide and conquer".
Attached is the layout I wanted. I just have no idea what to do. I wanted to display the colours in the list box after adding them to the array and I want to be able to position the colours when I enter them with the combo box, it has a drop down of numbers 1-7 when the check box is ticked. I need to be able to type the colour in the search bar up the top and then it will be highlighted in the list box. And I need to be able to delete what I have selected in the list box by clicking the delete button.
I seriously have no idea how to do this at all. My teachers won't help me either. I read what you guys posted to me and still didn't understand how to do what I am trying to do.
Sorry for being so bad at VB but I just have no idea at all.
Here is a majority of what you are asking. I have no idea what you intend do to with the checkbox or combolist, but this will add, delete, and search entries made into the listbox. I used an array for the search, and the rest was within the listbox itself. I hope you will take the time to research these so you don't have another "please do all of this for me".
See attached.
Last edited by skor13; May 23rd, 2011 at 11:47 PM.
Reason: Edited for comments within code of attachment.