Hi everyone!
I have defined 3 public variables:
A procedure defines those variables:
Now I would like to retreive those values for the variables in another procedure, in another form:
For some reason, VB tells me those variables are empty, although, they should have been defined by the other procedure.
Could someone help me please?
Thank you!
Philippe
I have defined 3 public variables:
Code:
Public OldCompany As Variant Public OldLast As Variant Public OldFirst As Variant
Code:
OldCompany = !Company OldLast = ![Last Name] OldFirst = ![First Name]
Code:
With rs1
.Index = "PrimaryKey"
.Seek "=", OldCompany, OldLast, OldFirst
Could someone help me please?
Thank you!
Philippe
Comment