Re: VB Videos Programming Help

  • From: "Ricks Place" <OFBGMail@xxxxxxxxx>
  • To: <programmingblind@xxxxxxxxxxxxx>
  • Date: Wed, 5 Nov 2008 18:47:39 -0500

Hi Marv: Rick here. I do not attack people nor have I attacked you, not on this list and not on any other lists. It hurt my feelings that you would say that about me. For those on this list: Marv has a 10 th grade education. He is attempting to take a University Level Programming class. He does not possess the requisit background of High School English, Math nor Science to be able to Analyze a Project and turn it into logical steps for creating calculations. I helped him, in great detail, with 4 projects before having to give up. I told him he needed to sign up for a few courses in English perhaps composition, Grammer and Technical Writing. He needs a couple of classes in Algebra and concentrate on story problems and a course in Chemistry and Physics would help with learning story problems. I also told him he might take Introduction to Computer Science to help in learning Analysis and Introduction to Business if he is planning on a career in developing Business Applications.I told him I would no longer help him as I was doing the analysis and developing all his calculations or he could not complete any project in the University Course he is involved in. It is up to Marv to do his own homework but he has managed to get me and others to do it for him for some time now. Like I mentioned, seeing Marv say I attacked him here or anywhere else is false, a lie to say it flat out so Marv can understand. Sorry, for the rant but I feel hurt and angry, I spent the last 2 months helping him, 2 to 3 hours each day, sigh. I just don't know what else to say.

Rick USA
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Wednesday, November 05, 2008 5:45 PM
Subject: Re: VB Videos Programming Help


       Hi.
well said.
i do not attack other members on public mailling lists.
so Rick should not do the same or any other member.
maybe you should take it up with the moderators, and maybe a file list rules
or etticate message, reminding members of this.
okay, so maybe i am struggling, and maybe i do not understand, but trying,
some examples, are straight forward, but others, having problems trying to
understand, and trying to learn.
people, do not understand, i am on my own, doing this externally, as my
nearest campus is over 1000 kph, away, in adelaide, australia and moved to
Tasmania with my parents.
so, you can see, do not really have the support.
did e-mail my lecturer, and he really cannot help, as he is teaching
multiple students, multiple subjects like vb, c#, c++, java, multimedia and
flash and asp.
and at multiple campuses in Adelaide, australia.
so, sorry about this, if do not seem to understand.
cheers Marvin.
----- Original Message ----- From: "E.J. Zufelt" <everett@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Wednesday, November 05, 2008 11:56 PM
Subject: Re: VB Videos Programming Help


Good morning,

Having tutored students in client-server programming with Java, I can
understand how it can sometimes become frustrating.  However, I do not
believe that a public mailing list is the place to make statements like the
ones below.

I believe that individuals who are making an attempt to learn should be
applauded, even more so the greater their struggle.  I have a friend who
tried 5 times to get his bus drivers lisence before he was finally
successful. I thought it was silly at the time, but now he drives all over
Canada and the US and enjoys what he is doing a great deal.

HTH,
Everett


----- Original Message ----- From: "Ricks Place" <OFBGMail@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Wednesday, November 05, 2008 5:26 AM
Subject: Re: VB Videos Programming Help


Hi Marv:
So the guys know; I had to do the Project Analysis, set up or totally
rebuild the step by step pseudo code and rework nonsense calculations as
well as redefine your use of variables on the past 4 projects. I explained
everything to you, gave you examples and did this over and over but you
could not pick up on the fundementals. Your educational level, 10 th
grade, is wholly inadiquit for the level of coursework you are involved
in. You need at least a High School Education, 4 years of prep work in
English, Math and Science before tackling a University level course like
this.
I worked off-list with you several hours each day but your lack of
comprehension skills and math skills showed me you are not capable of
doing work at this level without someone else virtually doing it for you.
So, if you can talk others into doing your work, good. That is a skill in
and of itself of sorts. However, it is not doing you any favors as your
lack of basic skills will eventually drown you and you will either have to
start all over again or end up giving up completely.
Rick USA
----- Original Message ----- From: "Marvin Hunkin" <startrekcafe@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Wednesday, November 05, 2008 12:55 AM
Subject: VB Videos Programming Help


Hi.
doing this book for a programming subject, and now need some help, not to
do
my home work for me, but to give me pointers how to fix the problems and
the
calculations.
or maybe point me to some good online examples.
really struggling, and need some help.
and please be gentle with me, tried looking at the msdn, help, and tried
searching on google and altavista for some simple examples, similar to
this
case study, but could only find really complext examples.
so, if you could help me out, let me know either on or off list.
cheers Marvin.

ps: will post the project description and my code below.

Video Bonanza

Design and code a project to calculate the amount due
and provide a summary of rentals. All movies rent for
$1.80 and all customers receive a 10 percent dis-
count.
The form should contain input for the member
number and the number of movies rented. Inside a
group box, display the rental amount, the 10 percent
discount, and the amount due. Inside a second group
box, display the number of customers served and the
total rental income (after discount).
Include buttons for Calculate, Clear, and Exit.
The Clear button clears the information for the current
rental but does not clear the summary information. Do
not allow bad input data to cancel the program; in-
stead display a message to the user.


'Program:   VBVideos
'Programmer:    Marvin Hunkin
'Date:  Tuesday November 4 2008
'Description:   Keep track of video rentals


Public Class frmVBVideos





   'Declare  Module Level Variable.


   Dim intCustomerCount As Integer = 0








   Private Sub btnCalculateButton_Click(ByVal sender As Object, ByVal e
As
System.EventArgs) Handles btnCalculateButton.Click

       'Declare Variables.

       Dim intMembership As Integer
       Dim intVideoOrder As Integer
       Dim decRentals As Decimal = 2
       Dim decDiscount As Decimal = 0.1
       Dim decAmountDue As Decimal
       Dim decTotals As Decimal


       'Convert Variables.


       If IsNumeric(tbMembershipNumberTextBox.Text) Then
           intMembership = CInt(tbMembershipNumberTextBox.Text)
       Else
           MessageBox.Show("You Did Not Enter A Valid Numeric Value for
Membership Number.", "Data Error", _
                           MessageBoxButtons.OK,
MessageBoxIcon.Exclamation)
           tbMembershipNumberTextBox.Focus()
           Return


       End If


       If IsNumeric(tbVideoRentalNumberTextBox.Text) Then
           intVideoOrder = CInt(tbVideoRentalNumberTextBox.Text)
       Else
           MessageBox.Show("You Did Not Enter A Valid Numeric Value for
Number Of Video Rentals.", "Data Error", _
                           MessageBoxButtons.OK,
MessageBoxIcon.Exclamation)
           tbVideoRentalNumberTextBox.Focus()
           Return


       End If


       'Calculate Rentals.


       decRentals = decRentals * intVideoOrder
       decDiscount = decRentals - intVideoOrder
       decAmountDue = decAmountDue * decRentals
       intCustomerCount = intCustomerCount + 1
       decTotals = decRentals - decDiscount



















       'Format Text Boxes.


       tbMembershipNumberTextBox.Text = intMembership.ToString()
       tbVideoRentalNumberTextBox.Text = intVideoOrder.ToString()
       tbVideoRentalsTextBox.Text = decRentals.ToString("C")
       tbDiscountTextBox.Text = decDiscount.ToString("C")
       tbAmountDueTextBox.Text = decAmountDue.ToString("C")
       tbCustomerNumberTextBox.Text = intCustomerCount.ToString()
       tbTotalRentalsTextBox.Text = decTotals.ToString("C")
       tbMembershipNumberTextBox.Focus()


   End Sub

   Private Sub btnClearButton_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnClearButton.Click


       'Clear Text Boxes.

       tbMembershipNumberTextBox.Clear()
       tbVideoRentalNumberTextBox.Clear()
       tbVideoRentalsTextBox.Clear()
       tbDiscountTextBox.Clear()
       tbAmountDueTextBox.Clear()
       tbCustomerNumberTextBox.Clear()
       tbTotalRentalsTextBox.Clear()
       tbMembershipNumberTextBox.Focus()


   End Sub

   Private Sub btnExitButton_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnExitButton.Click


       'Exit the project.

       Me.Close()


   End Sub
End Class





__________
View the list's information and change your settings at
//www.freelists.org/list/programmingblind


__________
View the list's information and change your settings at
//www.freelists.org/list/programmingblind


__________
View the list's information and change your settings at
//www.freelists.org/list/programmingblind


__________
View the list's information and change your settings at
//www.freelists.org/list/programmingblind


__________
View the list's information and change your settings at //www.freelists.org/list/programmingblind

Other related posts: