userform textboxes again

J

Jo

I am hiding the form rather than unloading it so it should
be there somewhere.........

Is there a way to do this without transfering the values
to the worksheet? Such as declaring my result for
textbox12?
Thanks
Jo

Hi
I am still having problems getting the data from textbox
entries into other modules.
I would like to be able to name userform1.textbox12.value
as txt12 and then have it available to all other macros.
May be I am putting the code in the wrong place?
Thanks agian for all your help.
Jo

...


..
 
M

merjet

See my reply to your earlier post. I forgot to add that,
of course, you need something like what follows in the
Userform's code module.

Private Sub TextBox1_Change()
txt12 = Userform1.TextBox1.Text
End Sub

HTH,
Merjet
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top