Re: VB.DOT NET Maths Question
- From: "Ricks Place" <OFBGMail@xxxxxxxxx>
- To: <programmingblind@xxxxxxxxxxxxx>
- Date: Sun, 28 Sep 2008 11:55:48 -0400
I sent you 2 replies to that one. I want to know the values you enter in
all the TextBoxes. You are looking for values in every box and I do not
think you are entering values in all of them. Also, what if you have the
Cost Box labeled as the InterestRate box? verify the values you enter in the
boxes are the values you intend to be in them. Make a list of each box and
put it's corresponding value in a document to send me.
Like: for the third time:
Beginning Amount =
Interest Rate =
Years =
and all the other boxes you use the parse statement with.
It looks to me that you are trying to read boxes you are not expecting to
have input values. The other possibility is you have a label reading
incorrectly so you think you are putting one value like BeginningAmount in
the correct textbox but it is actually going in some other textbox. So
create a list of all textboxes, enter the values you will enter in them and
then do it. Use a MessageBox or a logger routine to display each textbox
name and value to verify you have the correct amount in the correct textbox
and send me the document with comments if confused. I am pretty sure,
however, you are trying to parse some textbox 4 input that you intend as
output and are thus not entering values in them. Either that or your labels
are not alligned correctly and reading incorrectly so you think you are
entering a valid value but really entering it in the wrong textbox. If this
is not the problem we will continue debugging but set up your test values,
messageboxes or other method of displaying cinput contents, validate the
outputs and send me a list of what values are displayed which should include
the TextBox name and value as shown in a MessageBox after reading the value
but before parsing it. then we can go on.
There is a saying in programming garbage in, garbage out and that is a
trueism. So set up your test step by step when things go wrong during
testing on paper, text file, so you can track testing at a detail and
consistant level. Testing off the top of head with some value will not help
you solve some types of errors. It is ok if the code seems to work but when
stuck document your inputs, calculations and expected outputs for a single
test. That way you can reproduce the test with changed code or values and
get consistant results.
Rick USA
Rick
the b: "Marvin Hunkin" <startrekcafe@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Sunday, September 28, 2008 10:30 AM
Subject: Re: VB.DOT NET Maths Question
HI.
okay, do that later on.
sorry about that.
might do that in text pad, easier to check for the variable names, and the
spelling.
will do that, and if i still get stuck, will put it up on list.
cheers Marvin.
ps: maybe some time today, also, the question about the finance project,
or
am i just stupid, and the problems with the exception handling.
cheers Marvin.
ps: off to bed.
----- Original Message -----
From: "Ricks Place" <OFBGMail@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Monday, September 29, 2008 12:24 AM
Subject: Re: VB.DOT NET Maths Question
Sure, fix the errors and declare your variables. Check the Spelling
carefully.
If you find one you can not fix put up a question on list and I will take
a
look. I am off to watch some tv for now.
Rick USA
----- Original Message -----
From: "Marvin Hunkin" <startrekcafe@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Sunday, September 28, 2008 10:21 AM
Subject: Re: VB.DOT NET Maths Question
HI.
well, got that fixed, but still got errors.
not liking some characters and also saying the names of some variables
are
not declared.
can you help?
will paste the error messages below.
did try your technique, but still stratching my head, and they seem to be
all right.
sorry about this.
and jaws is behaving strangely, when i use the left slash key, with
insert,
it jumps to the line, and when i review it, it only reads half the line,
and
jumps to the class and declaration window.
really strange.
so here's the errors, can you show me how to fix the errors.
unless i am doing some thing wrong or stupid, or an oversight on my part.
cheers Marvin.
Error 1 Name 'ScoreThreeInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
14 53 Bowling
Error 2 Character is not valid.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
18 14 Bowling
Error 3 Name 'GameOneInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
74 42 Bowling
Error 4 Name 'GameTwoInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
74 58 Bowling
Error 5 Name 'GameThreeInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
74 74 Bowling
Error 6 Name 'GameOneInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
75 40 Bowling
Error 7 Name 'GameTwoInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
75 56 Bowling
Error 8 Name 'GameThreeInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
75 72 Bowling
Error 9 Name 'GameOneInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
76 44 Bowling
Error 10 Name 'GameTwoInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
76 60 Bowling
Error 11 Name 'GameThreeInteger' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
76 76 Bowling
Error 12 Name 'intGaneTwo' is not declared.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
83 42 Bowling
Error 13 'tbHighGameTextBox' is not a member of 'Bowling.frmBowling'.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
86 17 Bowling
Error 14 Argument not specified for parameter 'index' of 'Public ReadOnly
Default Property Chars(index As Integer) As Char'.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
86 43 Bowling
Error 15 'tbSeriesTextbox' is not a member of 'Bowling.frmBowling'.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
87 17 Bowling
Error 16 'tbHandicapTextBox' is not a member of 'Bowling.frmBowling'.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
88 17 Bowling
Error 17 'NameTextBox' is not a member of 'Bowling.frmBowling'.
C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb
136 18 Bowling
----- Original Message -----
From: "Ricks Place" <OFBGMail@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Monday, September 29, 2008 12:00 AM
Subject: Re: VB.DOT NET Maths Question
Hi:
Read the below line one character at a time using your right cursor key.
you
will see you do not have a space between the words Private and Function.
This is a basic carelessness error because you are listening to a line at
a
time instead of a character or word at a time when debugging your editor
syntax statements.
PrivateFunction FindAverage(ByVal ScoreOneInteger As Integer, _
ByVal ScoreTwoInteger as integer, ByVal ScoreThreInteger as Integer) As
Decimal
...
The rest of the statement looks ok.
Rick USA
__________
View the list's information and change your settings at
http://www.freelists.org/list/programmingblind
__________
View the list's information and change your settings at
http://www.freelists.org/list/programmingblind
__________
View the list's information and change your settings at
http://www.freelists.org/list/programmingblind
__________
View the list's information and change your settings at
http://www.freelists.org/list/programmingblind
__________
View the list's information and change your settings at
http://www.freelists.org/list/programmingblind
- References:
- VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
Other related posts:
- » VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
- » Re: VB.DOT NET Maths Question
HI. okay, do that later on. sorry about that. might do that in text pad, easier to check for the variable names, and the spelling. will do that, and if i still get stuck, will put it up on list. cheers Marvin.ps: maybe some time today, also, the question about the finance project, or
am i just stupid, and the problems with the exception handling. cheers Marvin. ps: off to bed.----- Original Message ----- From: "Ricks Place" <OFBGMail@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx> Sent: Monday, September 29, 2008 12:24 AM Subject: Re: VB.DOT NET Maths Question Sure, fix the errors and declare your variables. Check the Spelling carefully.If you find one you can not fix put up a question on list and I will take a
look. I am off to watch some tv for now. Rick USA----- Original Message ----- From: "Marvin Hunkin" <startrekcafe@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx> Sent: Sunday, September 28, 2008 10:21 AM Subject: Re: VB.DOT NET Maths Question
HI. well, got that fixed, but still got errors.not liking some characters and also saying the names of some variables arenot declared. can you help? will paste the error messages below. did try your technique, but still stratching my head, and they seem to be all right. sorry about this. and jaws is behaving strangely, when i use the left slash key, with insert, it jumps to the line, and when i review it, it only reads half the line, and jumps to the class and declaration window. really strange. so here's the errors, can you show me how to fix the errors. unless i am doing some thing wrong or stupid, or an oversight on my part. cheers Marvin. Error 1 Name 'ScoreThreeInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 14 53 Bowling Error 2 Character is not valid. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 18 14 Bowling Error 3 Name 'GameOneInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 74 42 Bowling Error 4 Name 'GameTwoInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 74 58 Bowling Error 5 Name 'GameThreeInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 74 74 Bowling Error 6 Name 'GameOneInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 75 40 Bowling Error 7 Name 'GameTwoInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 75 56 Bowling Error 8 Name 'GameThreeInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 75 72 Bowling Error 9 Name 'GameOneInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 76 44 Bowling Error 10 Name 'GameTwoInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 76 60 Bowling Error 11 Name 'GameThreeInteger' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 76 76 Bowling Error 12 Name 'intGaneTwo' is not declared. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 83 42 Bowling Error 13 'tbHighGameTextBox' is not a member of 'Bowling.frmBowling'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 86 17 Bowling Error 14 Argument not specified for parameter 'index' of 'Public ReadOnly Default Property Chars(index As Integer) As Char'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 86 43 Bowling Error 15 'tbSeriesTextbox' is not a member of 'Bowling.frmBowling'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 87 17 Bowling Error 16 'tbHandicapTextBox' is not a member of 'Bowling.frmBowling'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 88 17 Bowling Error 17 'NameTextBox' is not a member of 'Bowling.frmBowling'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Book\VisualBasicProgramming\ChapterFive\Example\Bowling\Bowling\frmBowling.vb 136 18 Bowling----- Original Message ----- From: "Ricks Place" <OFBGMail@xxxxxxxxx>To: <programmingblind@xxxxxxxxxxxxx> Sent: Monday, September 29, 2008 12:00 AM Subject: Re: VB.DOT NET Maths Question Hi: Read the below line one character at a time using your right cursor key. you will see you do not have a space between the words Private and Function. This is a basic carelessness error because you are listening to a line at a time instead of a character or word at a time when debugging your editor syntax statements. PrivateFunction FindAverage(ByVal ScoreOneInteger As Integer, _ ByVal ScoreTwoInteger as integer, ByVal ScoreThreInteger as Integer) As Decimal ... The rest of the statement looks ok. Rick USA __________ View the list's information and change your settings at http://www.freelists.org/list/programmingblind __________ View the list's information and change your settings at http://www.freelists.org/list/programmingblind
__________ View the list's information and change your settings at http://www.freelists.org/list/programmingblind __________ View the list's information and change your settings athttp://www.freelists.org/list/programmingblind
- VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin
- Re: VB.DOT NET Maths Question
- From: Ricks Place
- Re: VB.DOT NET Maths Question
- From: Marvin Hunkin