Sep 29, 2006 #1 DSTR3 Technical User Jan 21, 2005 41 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 Dec 11, 2001 1,516 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)