A
Alex Marchant
Hello,
What i need to do is transport/forward/? the content of a
textbox from one form to another textbox on a different
form.
(Need to get text from txtChar on frmKeypad into Text78 on
frmTAReturnedProEOLUK)
The submit button will esentially close down frmKeypad,
open up frmTAReturnedPro, have Text78 filled, and the
curser focus to be on Text34.
Is this understandable, and what are the best methods of
doing so, i have tried:-
Dim test As String
test = txtChar
DoCmd.OpenForm "frmTAReturnedProEOLUKH", , , acNew
Text78 = test
But it doesn't like text78, says undeclared variable.
Any ideas or feedback would be most helpfull, thanks in
advance,
Alex
What i need to do is transport/forward/? the content of a
textbox from one form to another textbox on a different
form.
(Need to get text from txtChar on frmKeypad into Text78 on
frmTAReturnedProEOLUK)
The submit button will esentially close down frmKeypad,
open up frmTAReturnedPro, have Text78 filled, and the
curser focus to be on Text34.
Is this understandable, and what are the best methods of
doing so, i have tried:-
Dim test As String
test = txtChar
DoCmd.OpenForm "frmTAReturnedProEOLUKH", , , acNew
Text78 = test
But it doesn't like text78, says undeclared variable.
Any ideas or feedback would be most helpfull, thanks in
advance,
Alex