Ver Mensaje Individual
  #4 (permalink)  
Antiguo 18/11/2006, 13:01
josesus
 
Fecha de Ingreso: diciembre-2004
Mensajes: 44
Antigüedad: 19 años, 5 meses
Puntos: 1
una el evento validate de los textbox!, asi por ejemplo en el evento validate del text2 iria asi:
Private Sub text2_Validate(Cancel As Boolean)
If text2=text1 then
msgbox "Texto repetido"
cancel=true
endif
End Sub

en el text3 iria asi:
Private Sub text3_Validate(Cancel As Boolean)
If text3=text1 or text3=text2 then
msgbox "Texto repetido"
cancel=true
endif
End Sub