add unicode arrow symbol

  • Thread starter Thread starter Nick
  • Start date Start date
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
 
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
 
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.
.
 
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.
.
 
Back
Top