string

  • Thread starter Thread starter GR
  • Start date Start date
G

GR

Hi! I need to set a string variable equal to:
"PT 100 [Ω]" in VBA

but when typing the string the Ω is changed to a "?"
I need to display a Ω.

Someone can help?
 
thx sorry but even in the post the symbol I need to
display as a string is not Displayed.

I need to assign to a string variable the greek letter OHM
thx
-----Originalnachricht-----
Hi! I need to set a string variable equal to:
"PT 100 [Ω]" in VBA

but when typing the string the Ω is changed to a "?"
I need to display a Ω.

Someone can help?

I'm not sure of your problem:

Debug.Print "PT 100 [Ω]"
PT 100 [Ω]

Debug.Print "PT 100 Ω"
PT 100 Ω
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date: 1/8/2004


.
 
It is a keyboard issue. Your Windows version and the font's available are
not compatible. The only thing I can think of is to use a graphic.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access

thx sorry but even in the post the symbol I need to
display as a string is not Displayed.

I need to assign to a string variable the greek letter OHM
thx
-----Originalnachricht-----
Hi! I need to set a string variable equal to:
"PT 100 [Ω]" in VBA

but when typing the string the Ω is changed to a "?"
I need to display a Ω.

Someone can help?

I'm not sure of your problem:

Debug.Print "PT 100 [Ω]"
PT 100 [Ω]

Debug.Print "PT 100 Ω"
PT 100 Ω
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.560 / Virus Database: 352 - Release Date: 1/8/2004


.
 
Back
Top