I am trying to use the per mille symbol in an Excel cell but it does not work. My code is:
Code: Select all
oSheet:Cells( nK, 2 ):value := "‰"
Thanks
Code: Select all
oSheet:Cells( nK, 2 ):value := "‰"
Code: Select all
HB_SETCODEPAGE( "UTF8EX" )
oSheet:Cells( nK, 2 ):value := HB_UTF8ToStr( "‰" )
HB_SETCODEPAGE( "PTISO" )