VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates

by Prince Valiant (6 Submissions)
Category: Custom Controls/Forms/Menus
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Sat 9th September 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



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


Download this snippet    Add to My Saved Code

PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates Comments

No comments have been posted about PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates. Why not be the first to post a comment about PayCheck2000. You enter your state tax, how many hours you work, and the payrate, and it calculates.

Post your comment

Subject:
Message:
0/1000 characters