add unicode arrow symbol

N

Nick

I am wanting to add an arrow symbol instead of a letter
in the following piece of code:

If Matrix!OldPos > Matrix!NewPos Then
HH = HH & "D,"

I want to replace the "D," with a down arrow.

How can i do this.

Cheers for your help

Nick
 
J

John Nurick

Hi Nick,

Try
HH = HH & ChrW(&H2193)



I am wanting to add an arrow symbol instead of a letter
in the following piece of code:

If Matrix!OldPos > Matrix!NewPos Then
HH = HH & "D,"

I want to replace the "D," with a down arrow.

How can i do this.

Cheers for your help

Nick
 
N

niCK

Hi John,

Thanks a lot for that it works a treat, i was wondering
if it is possible to have diagonal arrows as well.

Thanks Nick
-----Original Message-----
Hi Nick,

Try
HH = HH & ChrW(&H2193)



I am wanting to add an arrow symbol instead of a letter
in the following piece of code:

If Matrix!OldPos > Matrix!NewPos Then
HH = HH & "D,"

I want to replace the "D," with a down arrow.

How can i do this.

Cheers for your help

Nick

--
John Nurick [Microsoft Access MVP]

Please respond in the newgroup and not by email.
.
 
J

John Nurick

Yes, if they're in your font. For instance there are diagonal arrows in
Wingdings and Wingdings 3.

Hi John,

Thanks a lot for that it works a treat, i was wondering
if it is possible to have diagonal arrows as well.

Thanks Nick
-----Original Message-----
Hi Nick,

Try
HH = HH & ChrW(&H2193)



I am wanting to add an arrow symbol instead of a letter
in the following piece of code:

If Matrix!OldPos > Matrix!NewPos Then
HH = HH & "D,"

I want to replace the "D," with a down arrow.

How can i do this.

Cheers for your help

Nick

--
John Nurick [Microsoft Access MVP]

Please respond in the newgroup and not by email.
.
 
Top