VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This will change miles to Feet quickly with quick keys like enter!

by Best Programmer (4 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Sun 20th May 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This will change miles to Feet quickly with quick keys like enter!

Rate This will change miles to Feet quickly with quick keys like enter!



  txtTotal = ""
  txtEnter = ""
End Sub

Private Sub mnuConvert_Click()
  txtTotal = txtEnter / 5280
  txtTotal = Format$(txtTotal, "General Number")
  
End Sub

Private Sub mnuExit_Click()
  End
End Sub


Private Sub txtEnter_KeyPress(KeyAscii As Integer)
  If KeyAscii = 13 Then
     txtTotal = txtEnter / 5280
     txtTotal = Format$(txtTotal, "General Number")
  End If
End Sub

Download this snippet    Add to My Saved Code

This will change miles to Feet quickly with quick keys like enter! Comments

No comments have been posted about This will change miles to Feet quickly with quick keys like enter!. Why not be the first to post a comment about This will change miles to Feet quickly with quick keys like enter!.

Post your comment

Subject:
Message:
0/1000 characters