PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates
PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates the following: Gross pay, total being
API Declarations
'This has been a Spontaneous Combustions Production.
'This code is free, unless you make money from using
'this program or use it, then I want a cut of it. Email me
'for proper copywrongs. Wow, You actually read this far down.
'2k
Rate PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates
(1(1 Vote))
txthours.Text = ""
txtrate.Text = ""
txtTax.Text = ""
End Sub
Private Sub cmdpaycheck_Click()
lblgrosspay.Caption = "$" & Val(txthours.Text * _
txtrate.Text)
lbltaxpay.Caption = "$" & Val(lblgrosspay.Caption _
* txtTax.Text)
lblnetpay.Caption = "$" & Val(lblgrosspay.Caption _
- lbltaxpay.Caption)
End Sub
Private Sub cmdquit_Click()
Unload Me
End Sub
Private Sub imgcat_Click()
MsgBox ("Send all comments to [email protected]" _
& Chr(13) & _
"This has been a Spontaneous Combustions Production.")
MsgBox Now
Unload Me
End Sub
PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates Comments
No comments yet — be the first to post one!
Post a Comment