Superscript and subscript font usage

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have engineers whom use the superscript quite often in their data within
their tables. Is there any way to use this font capabilities within the
tables so that it will show up on the report?

Thank you.
JudyT
 
It needn't do anything to the other controls (other than those controls that
are bound to the field that's going to contain the RTF data)
 
JudyT said:
Ok, great, now...what does that do to any other controls on my form,
reports, tables?

Beware that if you use a Rich Text control then you will be saving Rich Text
control tags into your field. Consider the following two lines of text and
imagine the second one being stored in Rich Text as bold face.

normal text
bold text

In your table you will actually be storing something like...

normal text
\b bold text \b0

Those tags that start and end the bold setting will be visible in your data
and on your forms and reports anytime you try to use a control that is not a
Rich Text ActiveX control. Those tags would affect searching and joining on
that field as well.

Overall not a good idea just to support the occassional superscript.
 
Rick Brandt said:
Beware that if you use a Rich Text control then you will be saving Rich Text
control tags into your field. Consider the following two lines of text and
imagine the second one being stored in Rich Text as bold face.

normal text
bold text

In your table you will actually be storing something like...

normal text
\b bold text \b0

Those tags that start and end the bold setting will be visible in your data
and on your forms and reports anytime you try to use a control that is not a
Rich Text ActiveX control. Those tags would affect searching and joining on
that field as well.

Overall not a good idea just to support the occassional superscript.

No argument from me on that, Rick! (Guess I should have mentioned the
caveats...)
 
JudyT said:
Okay, great...is there a way to show this in the report area?

Show what in the report area? Rich Text? You can use an RTF ActiveX control on
reports, but there are more problems there. They don't do CanGrow and CanShrink
as well as standard controls. I'm not familiar enough with Stephan Lebans'
control to know how well his handles that, but I know the one from Microsoft has
problems in that area.
 

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