Created
March 10, 2013 17:53
-
-
Save facebookegypt/5129642 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'General Declaration | |
Dim TxtCtrl As Control | |
Private Sub ClearTxtBox() | |
For Each TxtCtrl In Me.Controls | |
If TypeOf TxtCtrl Is TextBox Then | |
TxtCtrl.Text = Trim("") | |
End If | |
Next | |
Timg.Picture = LoadPicture(App.Path & "/Phone1.Jpg") | |
End Sub | |
Private Sub CmdRes_Click() | |
'Reset Button | |
'Call the pre-defined sub ClearTextBox | |
ClearTxtBox | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment