|
-
Jan 15th, 2004, 11:52 AM
#1
Thread Starter
Fanatic Member
show trademark in form caption ?
How can I show the "TM" in the form caption so that it appears smaller and super script than the text next to it?
Code:
Because every customer is differentTM.
He who never made a mistake never made a discovery?
-
Jan 15th, 2004, 11:57 AM
#2
Frenzied Member
"Lies, sanctions, and cruise missiles have never created a free and just society. Only everyday people can do that."
- Zack de la Rocha
Hear me roar.
-
Jan 15th, 2004, 11:58 AM
#3
Fanatic Member
Re: show trademark in form caption ?
Originally posted by Navarone
Because every customer is different (TM).
Is that not how it is usually done?
-
Jan 15th, 2004, 12:04 PM
#4
Thread Starter
Fanatic Member
Here is what I did.
VB Code:
frmIntro.Caption = "1:1 card" & Chr(147) & "Because every customer is different" & Chr(153) & Chr(148)
He who never made a mistake never made a discovery?
-
Jan 15th, 2004, 12:11 PM
#5
I can do this:
VB Code:
Option Explicit
Private Sub Form_Load()
Me.Caption = "Because every customer is different" & Chr$(&HA9)
End Sub
But I can't find the TM symbol 
Woka
-
Jan 15th, 2004, 12:48 PM
#6
Wokawidget, here is the hex code for the TM symbol.
I copied the symbol in text format and used the asc function
to get the ASCII value. Then converted the decimal to hex.
™
VB/Office Guru™ (AKA: Gangsta Yoda™ ®)
I dont answer coding questions via PM. Please post a thread in the appropriate forum. 
Microsoft MVP 2006-2011
Office Development FAQ (C#, VB.NET, VB 6, VBA)
Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
If a post has helped you then Please Rate it! 
• Reps & Rating Posts • VS.NET on Vista • Multiple .NET Framework Versions • Office Primary Interop Assemblies • VB/Office Guru™ Word SpellChecker™.NET • VB/Office Guru™ Word SpellChecker™ VB6 • VB.NET Attributes Ex. • Outlook Global Address List • API Viewer utility • .NET API Viewer Utility •
System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6 
-
Jan 16th, 2004, 01:28 AM
#7
Frenzied Member
well
Whenever I need an ascii value I just make a table in a textbox - like so
VB Code:
For I = 1 To 255
Text1.Text = Text1.Text & Chr(I) & " " & I & vbCrLf
Next
...
"Lies, sanctions, and cruise missiles have never created a free and just society. Only everyday people can do that."
- Zack de la Rocha
Hear me roar.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|