Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/08/2007, 20:19
Avatar de mrocf
mrocf
 
Fecha de Ingreso: marzo-2007
Ubicación: Bs.As.
Mensajes: 1.103
Antigüedad: 17 años, 1 mes
Puntos: 88
Ayuda Con Un Formulario Y Una Macro Que Busca Datos En Una Lista

Primero permíteme sugerirte un cambio a tu macro de modo de "reducir a la mitad" tu código:
Código:
TextBox2 = ActiveCell.Offset(0, 1)
TextBox3 = ActiveCell.Offset(0, 2)
TextBox4 = ActiveCell.Offset(0, 3)
Y a partir del cambio anterior, se deduce -rápidamente- lo que deseas realizar:
Código:
ActiveCell.Offset(0, 1) = TextBox2
ActiveCell.Offset(0, 2) = TextBox3
ActiveCell.Offset(0, 3) = TextBox4
Saludos
...