need teh help wif teh VEE BEE. fkin shit prog

Locked
kylegoodmaster
Posts: 252
Joined: Fri Feb 15, 2002 3:09 am

Post by kylegoodmaster »



Private AmortTable(360) As String

Private Sub Command1_Click()
Dim LoanAmount As Currency, MonthlyPayment As Currency
Dim YrlyRate As Single, MonthlyRate As Single
Dim Years As Integer, Payments As Integer
LoanAmount = Val(txtLoanAmount)
YrlyRate = Val(txtYrlyRate)
Years = Val(txtYears)
MonthlyRate = YrlyRate / 1200
Payments = Years
MonthlyPayment = LoanAmount * MonthlyRate / (1 - (1 + MonthlyRate)   (-Payments))
lblMonthlyPayment = Format$(MonthlyPayment, "currency")
Dim PaymentNumber As Integer
Dim MonthlyInt As Currency
Dim TotalInt As Currency, CurrentAmt As Currency
Dim YearNumber As Integer, DispLine As String
Dim TbCh As String
TbCh = Chr$(9) 'the tab character
TotalInt = 0
CurrentAmt = LoanAmount
For PaymentNumber = 1 To Payments
MonthlyInt = CurrentAmt * MonthlyRate
TotalInt = TitalInt + MonthlyInt
CurrentAmt = CurrentAmt + MonthlyInt - MonthlyPayment
YearNumber = PaymentNumber / 12
DispLine = DispLine & TbCh & Format$(YearNumber, "#0")
DispLine = DispLine & TbCh & Format$(CurrentAmt, "Currency")
DispLine = DispLine & TbCh & Format$(TotalInt, "Currency")
AmortTable(PaymentNumber) = DispLine
Next PaymentNumber 'end of loop
hsbPayment.Min = 1
hsbPayment.Max = Payments
hsbPayment.LargeChange = 12 'one year = 12 payments
hsbPayment.Value = 1
txtAmortTable = AmortTable(1)
End Sub


Private Sub hsbPayment_Change()
txtAmortTable = AmortTable(hsbPayment.Value)
End Sub



 


That's meh code for an amoritization table, what's wrong with it"?? D: it doesn't work  :mad:


JFK
Posts: 860
Joined: Mon Dec 03, 2001 11:06 am

Post by JFK »

it needs more goatse

mR p0t8o h3d
Posts: 156
Joined: Tue Sep 18, 2001 1:48 pm

Post by mR p0t8o h3d »

um... i haev no idea what is wrong with it.  perhaps it is the complete lack of comments?

Heners_UK
Posts: 731
Joined: Tue Aug 28, 2001 10:19 am

Post by Heners_UK »

Just hand in the viewbot code

kylegoodmaster
Posts: 252
Joined: Fri Feb 15, 2002 3:09 am

Post by kylegoodmaster »

Oh, we're supposed to leave in the comments? I took all of those out. Oops.  :tongue:

JFK
Posts: 860
Joined: Mon Dec 03, 2001 11:06 am

Post by JFK »


Just hand in the viewbot code

yse !


Kerpal
Posts: 14
Joined: Tue Aug 28, 2001 1:51 pm

Post by Kerpal »

pls i just made a viewbot and dat shit is much harder D: than teh viewbot

MikeJ
Posts: 686
Joined: Fri Oct 26, 2001 9:11 am

Post by MikeJ »

I would help you if i knew what "amoritization" was.  If you upload the project i can h4x out any error message, but other than that i'de have to do some research on this whole "amoritization" thing, and thats just not me.

mr_gee
Posts: 409
Joined: Wed Aug 29, 2001 7:51 am

Post by mr_gee »


lemme pee on it


/me pee


:o


Locked