Problemas para pasar datos de un formulario a otro
Intente con este ejemplo pasar mis datos de un formulario a otro, los campos a pasar eran NOMBRE; FECHA CELEBRACION Y TELEFONO, en el primer registro me lo hace bien, pero al dar de alta el segundo registro, automaticamente el NOMBRE en el primer registro cambia por el que he puesto en el segundo registro no se si me explico
lo que yo hice fue esto:
abrir modulo y escribi:
Public var1 as string
Public var2 as string
Public var3 as string
En el formulario 1 escribi en un comando:
var1=Form!NOMBRE.Value
var2=Form!FECHACELEB.Value
var3=Form!TELEFONO.Value
DoCmd.OpenForm "MENUDEGUSTACION", acNormal
En el formulario2 al cargar escribi:
Form!NOMBRE.Value=var1
Form!FECHACELEB.Value=var2
Form!TELEFONO.Value=var3
1 Respuesta
Respuesta de Sveinbjorn El Rojo
3