Skip to content

Instantly share code, notes, and snippets.

@tombrad
Created February 13, 2013 04:05
Show Gist options
  • Save tombrad/4942181 to your computer and use it in GitHub Desktop.
Save tombrad/4942181 to your computer and use it in GitHub Desktop.
Prototipos VBA-2-1
Private Sub ComboNombre_Exit(ByVal Cancel As MSForms.ReturnBoolean)
Rem al escoger un item del combobox hace lo siguiente
Rem coloca el costo en textbox1
TextBox1.Text = Hoja1.Cells(2, 2)
Rem coloca el precio de venta (lista) en textbox2
TextBox2.Text = Hoja1.Cells(2, 3)
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment