Mac Command character

Can someone please help me with displaying the command character for Mac for this listbox helptag function?

If TargetMacOS Then
  Return  Chr(240)  + "+ Click to select multiple rows"
Else
  Return "Ctrl+Click to select multiple rows"
End if

Hi Craig,

chr(8984)

for the Command character should work.

Javier
AprendeXojo.com

Plus: Shift-Arrow (up or|and Down) Up | Down allow contiguous selection while Command-Click allow non-contiguous and Command-MouseDown Move allow contigous selection from where you want to start to where you stop.

Command-Click on a selected Row unselect it (make some testing for others deselection).

Just to try to be complete.