OK... this is for PBP... I'm not familiar with your IDE's Basic.

LCDOut $FE,$01 ' Clears your LCD, sets cursor to Line 1 Column 1
LCDOut "Hex Value:" 'text for the line 1
LCDOut $FE,$C0 ' Cursor to Line 2 Column 1
LCDOut HEX2 AN0," ".HEX2 AN1," ",HEX2 AN2 ' Formatted text for line 2
' Note the space between displayed values
Pause 2000

Refer to the PBP manuals LCDOut command to see what I've done.

Melanie