Navigation form

zezo2021

Member
Local time
Today, 03:31
Joined
Mar 25, 2021
Messages
415
friends;

I have a Navigation form with many tabs

How can I get value from the Navigation textbox to another navigation textbox?

tab1.navigation.textbox =tab2.navigation.textbox
 
could you give me example
 
So how was the issue resolved with TempVars? I have a similar question
 
So how was the issue resolved with TempVars? I have a similar question
Basically, when you're on the form you want to grab the info from, you would assign it to a tempvar. For example:
Code:
TempVars.Add "TempVarName', Me.ControlName.Value
Then, when you're on the form you want to pass that info, you would use the tempvar like so:
Code:
Me.ControlName = TempVars!TempVarName
Hope that helps...
 

Users who are viewing this thread

Back
Top Bottom