Textbox Control Source

  • Thread starter Thread starter tess457
  • Start date Start date
T

tess457

I am trying to change the control source of a textbox...i have tried the
following code, without any luck:

txtOperations.ControlSource = Sheets("Severity Data").Range("G6")

The contents of G6 is very long ( ~200-500 characters), should I maybe
store the string of text in a file instead of a cell, then copy it to
the text box.
If anyone has any suggestions, it would be greatly appreciated!!!
Regards,
Dustin
 
Perhaps you could use the "LinkedCell" property to display the text in G6 in
your textbox:

e.g. txtOperations.LinkedCell = "'Severity Data'!G6"

-Stan Shoemaker
Palo Alto, CA
 

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

Back
Top