- Home
·
- Miscellaneous
·
- This program will give the total price of the item after entering the price before tax and the stat
This program will give the total price of the item after entering the price before tax and the stat
This program will give the total price of the item after entering the price before tax and the state sales tax. (e.g. .09) Shows the tax and
API Declarations
Rate This program will give the total price of the item after entering the price before tax and the stat
(1(1 Vote))
Dim i As Single, t As Single
i = Val(txtp)
t = Val(txts)
lblt = i * t
lbltp = lblt + i
Printer.Print "Name, Sales Tax program"
Printer.Print "The Price of the Item was "; txtp
Printer.Print "The State Sales Tax was "; txts
Printer.Print "The Tax was "; lblt
Printer.Print "The Total Price of the Item was "; lbltp
Printer.Print ""
End Sub
Private Sub Command2_Click()
txtp = " "
txts = " "
lblt = " "
lbltp = " "
End Sub
Private Sub Command3_Click()
End
End Sub
This program will give the total price of the item after entering the price before tax and the stat Comments
No comments yet — be the first to post one!
Post a Comment