VS 2010 Display A Grade Based On The Number Of Points Entered?

Nov 1, 2011

I need to display a grade based on the number of points entered. store the min and grade in a 2d array here's my code that I have currently:

Dim strGrade(,) As String = {{"0", "F"},
{"300", "D"},
{"350", "C"},

[code]....

View 12 Replies


ADVERTISEMENT

Display Grade Based On Points?

Mar 1, 2010

I have a homework assignment to code an application that allows the Prof to display a grade based on the numnber of points he enter. The grading scale is : 0-299 -F; 300-349- D; 350-399- C; 400-449- B; 450-500- A. We are to store the minimum points in a 5 element one dimensional Integer array name intPonts and store the grades in a 5 element one dimensional String array name strGrades. The arrays should be parallel arrays. The procedure should search the intPoints array for the number of points entered by the user and then display the corresponding grade from the strGrades array.

I have stored the minimum points and grades in a one dimensional integer and string array respectively. I have coded the program, and when I put in random points, it gives me the letter grade. For example, if I put in 376 it will display a "C"; if I put in 200, it will display an "F". However, if I put in anything over 449, it will NOT display an "A", it just leaves the lbl blank. I am stumped on how to get the code to read pass 449 points.

here is my code:

' Name: Carver Project
' Purpose: Displays a grade based on the number of points the user enters
' Programmer: <Paul J. Williams> on <February 27, 2010>

[code]....

View 6 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

Items Display - Filtering - Search - Based On Multiple Points Of Data

Jan 23, 2012

Well I have a list of things I want to search based on multiple points of data...for example Resolution, 3D capable, touchscreen capable....etc....What is the best way for display someone can think of & filtering results by capability, I have none of it typed out, etc...like list of objects & capabilities, etc... alreat...so it can be made any way that is thought to be good(with speed as well) for many different listings...say 1,000 of them & it filters pretty much instantly....reading capabilities & such & the list itself is easy but how can I make a filter(unchecking something brings back things, checking something takes away only since well your adding capabilities to filter selection....I have pictures that can go with items too as well as a name & more information could be given directly with the method or clicking on the picture/item.

View 13 Replies

C# - Limit Number Of Rows That Can Be Entered In A Datagridview Based On Property Of DGV?

Feb 24, 2010

I have a UI that uses datagridviews / bindingsource / datatables of typed dataset for data entry. The dataset itself is serialized to a varbinary(max) in SQL. (i.e. no tableadapter, backend schema).I would like to limit the number of rows the user can enter into some of the grids (the data is used to fill PDF forms and I don't want them entering more rows than the forms can accomodate.).I have subclassed the datagridview, added a rowlimit property and tried to manipulate the AllUsertoAddRows property

Imports System.Windows.Forms
Public Class dgv
Inherits System.Windows.Forms.DataGridView[code]......

The behavior I see is that the messagebox comes up after leaving the max row even when the user is trying to leave the grid. I can lose the messagebox and deal with notification some other way but I thought someone else may have come up with something a little more sophisticated to handle simply causing attempting to add to many records to navigate out of the grid to the next UI control.

View 1 Replies

VS 2010 Have The Code To Display The Min And Max Grade?

Feb 1, 2010

Is there any way to have my code display the min and max grade without having to re due most of it?

View 2 Replies

Letter Grade Based On Test Scores?

Nov 19, 2010

I need someone with patience and can go through a solution with me from the Clearly Visual Basic book. I'm good with computers and can usually learn things relatively fast on my own time and in my own way, but I'm going to school for computer programming and, with certain things, I learn better with things explained to me rather than reading from a book. If someone has the time to go over this solution I'm doing and explain it to me in a way I'd have a better chance of understanding, I'd be truly grateful. I need a tutor, for lack of a better word. The lab I'm doing is from the Clearly Visual Basic book and the instructions are:

Code an application that displays a letter grade based on the averages of three test scores. Code the application using a function to determine and return the letter grade. If the average is at least 90, the grade is A. If the average is at least 80 but less than 90, the grade is B. If the average is at least 70 but less than 80 the grade is C. If the average is at least 60 but less than 70, the grade is D. If the average is below 60, the grade is F.

[Code]...

View 17 Replies

Display On Datagripview Based On Invoice Number

Nov 15, 2011

have been trying to display on my data grip view but is not. i want a situation where by it will display on the datagrip view base on the invoice number, below are the code

Private Sub getLastID()
Dim oleDBDR As SqlDataReader
Dim oleDBCommand As New SqlCommand

[Code]....

View 1 Replies

VS 2010 - Do Until Loop To Check Entered Number In Textbox

Feb 2, 2011

I am writing a Do Until Loop to check if the number entered in a textbox is between 1 and 12 in Visual Basic 2010.

View 4 Replies

VS 2010 Auto Display Corresponding Details Of Id Entered?

Oct 5, 2011

I have previously asked a questions regarding DataGridView control:[URL].. now I'm trying to make the first column to include an autosuggestion. ie. when a user types an ID(say, "12") then all the records that starts with it(ie. "12*") will be displayed as suggestion.

And upon clicking an ID, the corresponding product_name will be displayed on the next column. I think, I could do this using Validating() event of DataGridView.

View 7 Replies

Click Event Procedure Should Display The Color Of The Item Whose Item Number Is Entered

Dec 13, 2009

the disply color buttons click even procedure shold display the color of the item whose item number is entered. all item numbers contail eactly five characters(12b12). my problem is i can not get it to disply a color in the lblcolor control. it displays the item number.

[Code]...

View 2 Replies

Display A Certain Section Of Form Based On The Number Selected By Radio Button?

Apr 25, 2011

i want to display a certain section of my form based on the number selected by radio button.( scale 1 to 5) by default 1 is clicked . if they click 5 then the same portion will be repeated 5 times .i have the database table structure to support this . but how to code the radio button to do the same .

View 8 Replies

MySQL - Select Points Column From User Table (Entered Username)

Jun 27, 2012

I have this MySQL Query glitch in my VB.NET program. Here is the query in VB.NET:
"SELECT Points FROM user WHERE Username = '" & UsernameText.Text & "';"
It will select the points column from the user table from the Username they entered. When I deploy this it will set the value for points to 0 on their account. I'm not even inserting anything in.

View 5 Replies

Calculate And Display Letter Grade

Nov 21, 2010

I have coded this not sure how to get it to display correctly to the lblGrade box. I have set it up for. Supposed to take the average of three grades and display the letter grade for the average of the three grades.

Here is the code
Public Class frmMain
Private Function CalculateGrade _
(ByVal txtTest1 As Decimal, ByVal txtTest2 As Decimal, _
ByVal txtTest3 As Decimal) As String
Dim AverageScore As Double
[Code] .....

View 8 Replies

VS 2005 Display Only The Students Records With A Grade 85 And Above In All Subjects??

Jul 30, 2011

I have the following fields in my table:

English
Math
Science
Computer

[code].....

How do I get to display only the students records with a grade 85 and above in all subjects?

View 14 Replies

Textbox2 Contains A Number And If The Number Entered In Textbox1?

May 25, 2012

Have a very nooby question here, textbox2 contains a number and if the number entered in textbox1 is higher than textbox2 i wish to display a message box but the following doesn't seem to be working properly?

Sometimes it lets the user enter a higher number, maybe I am doing this wrong?

Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged

[Code]...

View 5 Replies

SSN Checking Entered Based On Reversed Range

Jan 13, 2009

I have a need to verify SSN's that are entered based on a reserved range (these are used for advertising and will never become valid). The input is from a masked text box formatted as 000-00-0000. I may be wrong, but I figured the most logical method would be to remove the hyphens and convert the string to an integer, then compare the starting point and end point of the range.

'Valid SSNs
'Currently, a valid SSN cannot have an area number between 734 and 749, or above 772, the highest area number which the Social Security Administration has allocated. This should not be confused with Tax Identification Numbers which include additional area numbers.
[Code] .....

View 4 Replies

VS 2010 Display A Certain Number Of I's In A Textbox?

Feb 10, 2011

I'm looking to write a very simple program which asks a user to enter a number between 20 and 50. The program would display the letter 'I' in a textbox to correspond to the number the user entered (i.e. if the user entered 34 then 34 I's would be displayed. I'm not entirely sure of what commands would make this happen.

View 9 Replies

Xml Files That Needs To Be Converted In To A Character Based On A Value And Entered In To A Rich Text Box?

May 29, 2011

I have over 4,000 xml files that needs to be converted in to a character based on a value and entered in to a rich text box. It will do this, until it runs out of files to read. I have tried "try" statements, "if" statements...

Imports System.Xml
Imports System.IO
Imports System[code]........

View 2 Replies

Using A Random Number Generator For The X And Y Points Of A Picturebox?

Jan 18, 2009

I did a simple screen saver just using a random number generator for the x and y points of a picturebox and it's ok but I thought I may try to snazz things upwith the image floating on the screen?

View 3 Replies

Display Only Text Between 2 Points?

Mar 14, 2012

I have some text I would like to extract from a file. I know what comes before it and what comes after it but the text will be variable. I was thinking read it in line by line until i found the line which is the indicator of the text starting to the indicator that it is ending.[code]...

View 7 Replies

VS 2010 Display Highest Number In Textbox?

May 16, 2012

I have a file which has numeric values like [code]What would be the best way to display the highest number in a textbox +1?I have the following coding but to be honest it just keeps showing random numbers in the textbox.[code]Also what would you be the best way to append to the file? I have the following coding to append to the last line.[code]

View 5 Replies

VS 2010 Radio Button Display A Number

Feb 20, 2011

I am creating a simple application to show an amount based on the radio button selected eg. radButton1=35 radButton2=75 radButton3=150, and another button to double the total IF selected. Here is my code so far, I do not get any calculation when the program is executed.[code]

View 2 Replies

Building A Program That Calculates The Number Of Books By Points?

Oct 16, 2011

I am building a program that calculates the number of books by points.Ex: 1-3 books read are worth 10 points, 4-6 are worth 15 and > 6 are worth 20. The issue I'm having is getting it to calculate the the first 3 books, the 2nd 3 books and then the > 6.Ex: User inputs 8 books read. It should display 115 in the label.

1. I'm using an If statement (should I be)
2. Could I use a decimal for the > 6?
Ex: intTotalNumberOfBooks = (intTotalNumberOfBooks * intFirst3Books) *#D

I know this is something simple and it's out of VB 101, but it is my very first programming class and my professor uses a copy paste method during class.

View 10 Replies

Control The Number Of Decimal Points In Datatable.Compute?

Mar 16, 2009

I am using datatable.comput to calculate the avg of a data column. The data column's datatype = integer, so it returns a integer avg value as well. Can i make it to return double value?

View 3 Replies

Unable To Display More Than 500 Points In MS Chart?

Jan 7, 2012

I wrote the following program in vb.net. I am reading 2000 data points XY points from csv file into oledb connection and displaying it into the MS cHART but it is displaying only first 500 points...

Dim cn As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:;Extended Properties=""Text;HDR=No;FMT=Delimited""")
Dim da As New OleDbDataAdapter()
Dim ds As New DataSet()

[code]....

View 7 Replies

Save Auto-Complete - Completion To Be Based Off Of Text That Has Been Previously Entered Into The Textbox

Apr 5, 2011

I want a textbox to have autocomplete. I want the completion to be based off of text that has been previously entered into the textbox. My method of saving seems to work but when i close the program and re run it the autocomplete suggestions arent there anymore.

[Code]...

View 2 Replies

C# - Globalized Custom Number Formatting - Variable Decimal Points?

May 5, 2011

I'm trying to alter the existing number formatting in my company's application to make it more readable for international users. This is a stock trading application, so most stock prices come in with numbers precise to 2 decimal points, like so-> 17.23 We could also get ticks in that have precision out to 4 decimal points, so a penny stock might be 0.0341. The original string format that we were using for stocks was "#,##0.00##" Which would give us the format we wanted (essentially trimming '0's). The problem here is the ',' and '.' are forced onto the user, where in many other countries the thousands separator is '.' and the decimal point is ','. Boss man doesn't want to use "N4" for all numbers, even though this would resolve the globalization issue. Is it possible to have a globalized custom string format?

Other options besides writing some middle man code to internationalize numbers formatted the original way or another string.format method?

View 2 Replies

VS 2010 - Display In Result Textbox Is The Word That Many Number Of Times

Mar 22, 2011

I have set up text boxes for user to pick a number 1-20 and to enter a word as well. Then, press submit button. What's supposed to display in result textbox is the word that many number of times. For example if the number is 5 and the word is hello, then "hellohellohellohellohello" should appear. I don't know how to complete my For...Next function to append the word to the result.

Public Class Ch6ex1

Private Sub btnsubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnsubmit.Click

[CODE].....................

View 5 Replies







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