Sep 29, 2006 #1 DSTR3 Technical User Joined Jan 21, 2005 Messages 41 Location US I'm trying to set the value in a Textbox where the form name changes. I thought this would work. Dim stWhatForm as String Forms!stWhatForm!TxtBox = " & Me.TxtBox1 & " The problem is that the stWhatForm doesn't work. Help is appreciated. Thanks DS
I'm trying to set the value in a Textbox where the form name changes. I thought this would work. Dim stWhatForm as String Forms!stWhatForm!TxtBox = " & Me.TxtBox1 & " The problem is that the stWhatForm doesn't work. Help is appreciated. Thanks DS
Sep 30, 2006 1 #2 CautionMP Programmer Joined Dec 11, 2001 Messages 1,516 Location US DSTR3, Asuming your doing this in code: Code: Forms(stWhatForm)!TxtBox = Me.TxtBox1 Hope this helps, CMP [small]For the best results do what I'm thinking, not what I'm saying.[/small] (GMT-07:00) Mountain Time (US & Canada) Upvote 0 Downvote
DSTR3, Asuming your doing this in code: Code: Forms(stWhatForm)!TxtBox = Me.TxtBox1 Hope this helps, CMP [small]For the best results do what I'm thinking, not what I'm saying.[/small] (GMT-07:00) Mountain Time (US & Canada)