A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Database Design
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Diameter and Dgree symbols



 
 
Thread Tools Display Modes
  #1  
Old March 24th, 2009, 11:22 AM posted to microsoft.public.access.tablesdbdesign
Alu_GK[_2_]
external usenet poster
 
Posts: 1
Default Diameter and Dgree symbols

Hello -
Access 2003 + Access runtime, Windows vista + XP.
I 'm running an application that was developed on Access 2003, vista.
The application is running on Access runtime 2003, Windows XP.
In the text field I need to insert the symbol Diameter (Ø) and Degree (°).
The alt+0176 set the degree symbol, and the diameter should be alt+0216 but
it's not working.
My question is:
Is there a way that I can create a button of symbols that the user can
choose from then which symbol he prefers to insert the text box (that will
allow me to add more symbols in the future) ?
What code lines can I use in order to create those symbols without regarding
the operation system or the software environment ?

Thanks !
  #2  
Old March 24th, 2009, 04:30 PM posted to microsoft.public.access.tablesdbdesign
fredg
external usenet poster
 
Posts: 4,386
Default Diameter and Dgree symbols

On Tue, 24 Mar 2009 04:22:01 -0700, Alu_GK wrote:

Hello -
Access 2003 + Access runtime, Windows vista + XP.
I 'm running an application that was developed on Access 2003, vista.
The application is running on Access runtime 2003, Windows XP.
In the text field I need to insert the symbol Diameter (Ø) and Degree (°).
The alt+0176 set the degree symbol, and the diameter should be alt+0216 but
it's not working.
My question is:
Is there a way that I can create a button of symbols that the user can
choose from then which symbol he prefers to insert the text box (that will
allow me to add more symbols in the future) ?
What code lines can I use in order to create those symbols without regarding
the operation system or the software environment ?

Thanks !


Have you considered using the AutoCorrect Options available on your
computer?
Click on Tools + AutoCorrect Option.
Enter an unusual combination of letters in the Replace column, such as
*(*
Then in the With column enter ALT + 0216

Click on Add, Then OK.

Now when entering data, all the user need do is type *(*

As AutoCorrect is used by all programs, make sure you use a
combination of letters that would never normally appear in your data
in "any" program.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
  #3  
Old March 25th, 2009, 02:45 PM posted to microsoft.public.access.tablesdbdesign
Fred
external usenet poster
 
Posts: 1,451
Default Diameter and Dgree symbols

Or try copying them from a document in another program (e.g. Word) and
pasting them into expressions, code etc.
  #4  
Old April 22nd, 2009, 05:43 PM posted to microsoft.public.access.tablesdbdesign
Barry A&P[_2_]
external usenet poster
 
Posts: 119
Default Diameter and Dgree symbols

i hope nobody laughs at my code
as far as your buttons are concerned make a button on your form called
DiaButton then do like fred said and copy the charachter from word paste it
in the code and in the Caption Property of the button then on its click event.

Private Sub DiaButton_Click()
On Error GoTo Err_DiaButton_Click

Dim stradddia As String
stradddia = mycombo & "Ø"
mycombo = stradddia

Exit_DiaButton_Click:
Exit Sub

Err_DiaButton_Click:
MsgBox Err.Description
Resume Exit_DiaButton_Click

End Sub

"Fred" wrote:

Or try copying them from a document in another program (e.g. Word) and
pasting them into expressions, code etc.

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 03:37 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.