D
Dan
From what I've been able to figure out, textboxes (userform) in VBA have a limit of 64k. So, when I go try to insert some of my autotext entries into a textbox (basically using the textbox as a "preview pane" for autotext entries), they almost always get cut off. Most entries are just plain text, about 40 lines (paragraph returns) or so. I assume that what is making these autotext entries so large (over the 64k) is the various formatting, styles, etc. that get saved with the autotext, even though it is really just meant to be plain text. Is there a way I can display the item in a textbox while removing the formatting? Right now I just use txtbox.Text = txttemplate.AutoTextEntries(AutoTextEntry
This works fine, except like I said, it cuts it off. It seems that VB has a RichTextBox type, but VBA does not appear to have such a thing. If you're inserting autotext in a document, you can define richtext to be true or false, anyway to do that here? Could the autotext be assigned to a variable first, and then the variable converted to just text? Could something other than a textbox be used? Any ideas
This works fine, except like I said, it cuts it off. It seems that VB has a RichTextBox type, but VBA does not appear to have such a thing. If you're inserting autotext in a document, you can define richtext to be true or false, anyway to do that here? Could the autotext be assigned to a variable first, and then the variable converted to just text? Could something other than a textbox be used? Any ideas