The only ideas to offer you are these. I hope they work for you. If I find anything else I'll post it in this thread. Let me know if this helps.
Microsoft Knowledge Base Article - 824165
ActiveX control that is contained in an Access form does not appear when the design-time license is not available
http://support.microsoft.com/default...b;en-us;824165
Access ActiveX Fix
http://www.access-programmers.co.uk/...achmentid=5967
http://www.access-programmers.co.uk/...803#post275803
++++++++++++++++++++++++++++++++++++++++++++++++++ ++++
As for my topic, I tried making some adjustments to the code and if anyone can tell me why this doesn't work and how to get it to work I would appreciate it.
Code:
================================================== ====
Public Function SuperScript()
Dim strItem As String
Dim strScript As String
strItem = Forms![fdlgRTFEditor]![RichText].SelText
strScript = "\cf0\super" & strItem & "\cf1\nosupersub"
Forms![fdlgRTFEditor]![RichText].SelText = strScript
End Function
Public Function SubScript()
Dim strItem As String
Dim strScript As String
strItem = Forms![fdlgRTFEditor]![RichText].SelText
strScript = "\cf0\sub" & strItem & "\cf1\nosupersub"
Forms![fdlgRTFEditor]![RichText].SelText = strScript
End Function
================================================== ====
Thanks much,
PC