Skip to content

Instantly share code, notes, and snippets.

@tombrad
Last active December 12, 2015 06:08
Show Gist options
  • Save tombrad/4726962 to your computer and use it in GitHub Desktop.
Save tombrad/4726962 to your computer and use it in GitHub Desktop.
Curso VBA-4
Private Sub CommandButton1_Click()
tdolares.Text = “”
tpesos.Text = “”
End Sub
Private Sub tdolares_Change()
End Sub
Private Sub tdolares_Exit(ByVal Cancel As MSForms.ReturnBoolean)
tpesos = Val(tdolares) * 500
End Sub
Private Sub tpesos_Exit(ByVal Cancel As MSForms.ReturnBoolean)
tdolares = Val(tpesos) / 500
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment