Z zezo2021 Member Local time Today, 03:31 Joined Mar 25, 2021 Messages 415 Nov 13, 2021 #1 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
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
theDBguy I’m here to help Staff member Local time , 18:31 Joined Oct 29, 2018 Messages 22,712 Nov 13, 2021 #2 You can use TempVars.
Z zezo2021 Member Local time Today, 03:31 Joined Mar 25, 2021 Messages 415 Nov 13, 2021 #3 could you give me example
Z zezo2021 Member Local time Today, 03:31 Joined Mar 25, 2021 Messages 415 Nov 13, 2021 #4 worked Done
theDBguy I’m here to help Staff member Local time , 18:31 Joined Oct 29, 2018 Messages 22,712 Nov 13, 2021 #5 zezo2021 said: worked Done Click to expand... Hi. Sorry, went to bed early. Glad to hear you got it sorted out.
zezo2021 said: worked Done Click to expand... Hi. Sorry, went to bed early. Glad to hear you got it sorted out.
V VzqCrs Member Local time , 21:31 Joined Nov 15, 2021 Messages 54 Nov 15, 2021 #6 So how was the issue resolved with TempVars? I have a similar question
theDBguy I’m here to help Staff member Local time , 18:31 Joined Oct 29, 2018 Messages 22,712 Nov 15, 2021 #7 VzqCrs said: So how was the issue resolved with TempVars? I have a similar question Click to expand... 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...
VzqCrs said: So how was the issue resolved with TempVars? I have a similar question Click to expand... 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...