Grade Program With List Boxes?

Jul 4, 2009

I'm trying to code a program that averages a grade from a list box, but the numbers in the second list box could change, so not sure how to code that. It should list the letter grade and the average, then if they don't enter a grade, should tell you to enter a grade first before hitting the average button.

Public Class MainForm
Dim ErrorMsg As String
Dim intNum As Object

[Code].....

View 5 Replies


ADVERTISEMENT

Create A Program That Uses 3 List Boxes

Jun 21, 2010

I'm just learning VB with the 2008 express edition.I'm trying to create a program that uses 3 list boxes.The first contains a list of products.After a search is preformed the second list box displays the products found.This is pretty simple, basic array stuff.My problem is moving items from the second list box into a third list box to purchase the product.I think I need to change the index numbers of the stuff I move into list box 3 because when I preform calculations with the stuff in list box 3, it seems to answer like its using the index numbers in list box1.So, how do you change the index numbers when you change list boxes?

View 3 Replies

Make A Program That Consists Of Two List Boxes

Jun 9, 2011

I am trying to make a program that consists of two list boxes. The first list box contains the names of several employees of a given company, and the second is to display the name, department, ID number, and phone number of the person when the name is double clicked in the first list box. The file I have been given to carry this out with reads as follows. [code] I have no idea what I am doing.I know that I have to use the system imports streamwriter and streamreader, but I really am lost as to how. I don't even know where to begin really.

View 3 Replies

VS 2008 Grade Averager Program

Nov 9, 2009

I am trying to make a simple program that utilizes lists, loops, arrays, and multiple forms. I started the program in which I have incorporated lists and loops already.A summary of my program; I am trying to be able to add a name to a combobox list, and assign a grade to that particular person (grade of A = 4, b = 3, ect ect). I am assuming I should utilize the array concept at this point when assigning the grade to the name, but I am not exactly sure what to do. I have attached a screen shot of my form, and I will post what code I do have so far.Also, when all the grades are entered with their corresponding names, I want to also have a summary screen pop-up with the names and which grades they received, plus the average.[code]

View 13 Replies

Selecting Values Of Combo Boxes And List Boxes In Web Browser?

May 22, 2012

I am developing a program that makes it easier for users to log on to a website and search for specific data. I have the first portion finished in which I have a form with the Ax Web Browser control.

The web browser control navigates to a local website and automatically logs in for the end user. This is done by using code which automatically fills in the username and password and then submits the form to logon using something similar to this: WebBrowser1.Document.Forms.Item(, 0).elements("txtUsername").value = "user"

Once logged on - there is a search page which contains a combo box and list box. I am trying to set specific values for the combo box and list boxes.For example - the combo box on the website is titled: cbxDate and contains the following values: Today, Yesterday, This Week, This Month.

A list box titled: lstArea contains the following values: Zone A, Zone B, Zone C, All.I am trying to figure out if there is a way through code to select, in this example, "Yesterday" in the cbxDate and "Zone B" in the lstArea on the webpage.If anyone knows of a solution, please feel free to let me know. Be advised that I am using the Ax Web Browser Control.

View 2 Replies

Create A Program To Calculate Math Grade?

Feb 19, 2010

I ma trying to create a program to calculate my math grade. The way my math teacher explained the grading scale was each test is worth 1 point and each quiz is worth .2 points.

So as an example (add both sides up then divide by both sides)

100 =1
80 = 1
15 = .2
18 = .2

213 divide by 2.4 which equals your grade of 88.75

There are more quizs and tests in the semester and I want the numbers to change with the number of quizs and tests entered. The only problem is I am not sure how to code it. I though I would use IF AND statements but I am not sure where to start.

View 8 Replies

Clearing List Boxes And Combo Boxes?

Mar 20, 2009

what is the syntax to clear a combo box and also a list box?

View 3 Replies

Write A Program Using 2 Parallel Arrays Representing Grade Point And Grades?

Jan 31, 2010

I have to write a program using 2 parallel arrays representing grade point and grades. The grade points range from 0 to 500, however, we are only to use the minimum points per each letter grade in " points " array. This is shown in the code below. You then enter a number from 1 to 500, representing the grade points, and in turn it spits out your letter grade.My problem is this. When I enter a number, say 200, I get a letter " D " grade instead of an " F " grade. It appears that every number range I enter gives me one letter grade less than what it is supposed to be. Also, any number 450 to 500, representing an " A " grade does not even register in my Grades Label.

[Code]...

View 7 Replies

VS 2008 Student List Views - List Boxes And Data Fro Access DB Tables

Dec 30, 2010

This is what I'm sure will be the first of many noob-ish questions from yours truly... I'm studying as a mature student for a Computing Degree (encompassing web design, hardware, programming and systems analysis). The programming seems to be my weak spot this year. I enjoyed C++ last year, doing basic console applications, but progamming visually with VB in Visual Studio 2008 I'm struggling!

[Code].....

View 12 Replies

Placing Selected/unselected Items In Checked List Box Into List Boxes?

Mar 16, 2011

This program is supposed to allow the user to check items in a checked list box. If the item is checked, it goes into the Completed List Box on the right. The program then adds the unchecked items to the Pending list box on the left. I keep getting placement values (e.g. O,1,2) instead of the strings (e.g. "Key Returned") in the list box results (see photo attached)

Public Class frmCheckOut
Dim i As Integer
Dim cleaning As String = "Cleaning Inspection"
Dim damage As String = "Damage Repaired"

[code].....

View 3 Replies

Array (parallel) - Allow User To Enter A Score And The Program Returns A Grade Based On The Score Entered

Apr 14, 2012

Haveing troubles with an assignment. I am writting code that will allow user to enter a score and the program returns a grade based on the score entered. I can get it to work using "IF" statements but want to use code for ranges. My "IF" code is as follows.......

[Code]...

View 1 Replies

Carver-parallel (range Code) - Allow User To Enter A Score And The Program Returns A Grade Based On The Score Entered

Apr 14, 2012

Haveing troubles with an assignment. I am writting code that will allow user to enter a score and the program returns a grade based on the score entered. I can get it to work using "IF" statements but want to use code for ranges. My "IF" code is as follows.......

[Code]....

View 2 Replies

Add Check Boxes Into A List Box?

Nov 28, 2009

Add Check Boxes Into A List Box?[code]...

View 2 Replies

Add Choices To The First Two List Boxes?

Dec 14, 2009

I'm new to visual basic and I've put all forths of effort towards this program and I can't get it to work. I know one reason is I don't know how to add my choices to the first two list boxes.

Public Class Form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim RegistrationFee As Integer
Dim LodgingFee As Integer
Dim Days As Integer

[Code]...

View 27 Replies

Combo Box To List Boxes In VB?

Nov 30, 2009

I am trying to create a WPF browser application that allows you to search and display recipes. The combo box presents choices, the Ingredients display in one list box and the "cooking" instructions appear in the other list box. What's happening is the first time you make a selection from the combobox nothing displays, and this could be happening because the first line of code under Selectionchanged clears the List Boxes however, it should be populating those list boxes with content, shouldn't it? Anyway, as you make other selections List boxes 1 & 2 get populated but they do not match what displays in the Combo box, i.e. if you select "Easy Taco Dip" any random recipe might appear in List Boxes 1 & 2.

Option Explicit On
Class Page1
'User Makes a selection from the ComboBox which populates List Boxes 1 & 2

[Code].....

View 3 Replies

List Boxes And For Each Next Loops?

Feb 7, 2009

I have a listbox on my form which will contain say ten file paths. (10 items in the listbox's item collection)now i want to use the For Each next loop as below

Quote:
For Each Item in mylistbox.Items
performactionon(item.tostring)

[code]......

View 3 Replies

Multiplying Two List Boxes

Jan 7, 2011

I have two list boxes created. One is Quantity and other is Price. When i enter price and quantity i want it to multiply and add one by one and give me the total in a label below...The problem is when I have two or more items in each list box I'm unable to come up with the total. I figured out that it will need a loop. So my question is that how should i use the loop. I haven't learn't how to make loops..

View 6 Replies

Vaildate Sub And List Boxes

Apr 29, 2011

can i use the private sub validate with list boxes to ensure selection and how? Sometimes the answer is so blindingly obvious i fail to see it.

View 2 Replies

Add Code To List Boxes Items?

Jan 31, 2012

I am surely a new self-learner programmer using VB 2010 Express edition and I have a problem on writing my first code. I have designed my form and I only want to add code as events. The IDE already adds the methods when I double-clicked the button which I want to add the code on.

This question may be good on the IDE forum, but I just thought to ask it here because there may be more experts here on VB language functions. I have added the MenuSctripItems such as File, Edit and so on. How do I write the code for New, Open, Save, etc under file menu? It may sound boring or even silly, but I am here to learn and your contribution is both for me, you and the MSDN.

View 2 Replies

Adding Items To List Boxes?

Oct 19, 2010

I'm using the free version on Visual Basic 2008 (through school).The assignment is to populate a list box from user input text. The textbook only talks about populating a list of known items.ex animalListBox.Items.Add("dog") Which works just fine, however, we don't know what the user will input.

So, how should I be thinking about this?

View 2 Replies

Adding Variables To List Boxes?

Mar 21, 2012

If I'm trying to output to a listbox, what is the easiest way I can enter a string and then a variable on the same line? I'm trying to use listbox1.Items.Add(...). Obviously outputting a string is no problem and outputting a variable is no problem, but I want to add a string and then a variable after the string. For instance:

name = "Joe Smith"
listbox1.Items.Add("Name: ", name) [or something like this]
[Output] Name: Joe Smith

View 4 Replies

Checked List Boxes Converting To Value?

May 2, 2011

I have a checked list box with lots of values and i need it so that when one of the items is ticked that a different box will display a value ie 50 so for instance i think it would be along the lines of

View 5 Replies

Copying List Boxes In VB 2008

Mar 2, 2010

I need to copy the contents of one list box to a list box on another form. I've tried a number of ways of tackling this, including copying to the clip board and then to another form.....but with no success.

View 8 Replies

Create Output In List Boxes?

Mar 16, 2010

Here is my code, I cannot produce the output in the lstresults.Text box

Public Class Expense_Report
Const expenseDivide As Double = 50
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)

[code]....

View 1 Replies

Display Data In List Boxes?

Aug 13, 2009

I am trying to read data from a text file that will be displayed in the below format:

usernameassword
username1assword1
username2assword2

What i want to be able to do is read each line of the text fine and then split the text where the colon character is and display what is in front of the colon in listbox1, and what is after the colon in listbox2?

[Code]...

View 1 Replies

Export To Excel And List Boxes?

Apr 7, 2009

I am doing a project and want to export the values of several two dimensional arrays to Excel. Searching theiles and this forum leads me to think this is doable but I can't find the procedures to get staOn another note, the present method of viewing the output is in a series of 4 side by side list boxes. Each one has been loded in order so that the output in each box lines up with the corresponding line in the other boxes.

View 5 Replies

Forms :: Binding With List Boxes

Jun 12, 2009

I have a list box which is containning diffrent groups from database. On the form i have multiple controls like checkboxes, text boxes and so on. Wht i have to do when some one selects a entry from list box the others controsl should be populated from that value. User can edit the data , delete the data and so on.

View 1 Replies

How To Have One Scroll Bar For Multiple List Boxes

Jul 30, 2009

I have five list boxes showing a field from a row in a dataset in each of the list boxes.When the list gets beyond the size of the list box a scroll bar is auto generated However, I would like to have just one scroll bar for the five boxes be shown if possible so when I scroll with that, all of them scroll

View 7 Replies

List Boxes Handle Decimals?

Feb 19, 2010

I was dividing a number from one textbox into another and when i tried something like 22 divided by 15 i just got one. Are listboxes not able to handle decimals?

View 8 Replies

Loop Through Two Separate List Boxes?

Nov 11, 2009

I'm trining to loop through two separate list boxes to find a match for the textbox then display a message in the display label. Right now it just works on the first two zip codes in the $15 shipping zip code list box. Here is my code:

Option Explicit On
Option Strict On
Option Infer Off

[Code]....

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved