I'm pretty sure I was reading the same post you were in looking for the answer.
I see 2 options, Archie may provide more.
Option 1
Add the hex conversion code between Line 197 and Line 198 in the DigitalPanelMeter.
could also add a property to set if you want hex or not.
Private Sub PolledDataReturned(ByVal sender As Object, ByVal e As SubscriptionHandlerEventArgs)
'Put the hex Code here.
End Sub
Option 2
Create a new control that would be for hex by doing this:
Create a new class in the purchased folder.
Copy all of the code form the DigitalPanelMeter control
Paste it into the new Class, Paste over everything in the new class
Rename At the top where is shows "Public Class DigitalPanelMeter" to Public Class DigitalPanelMeterHex
Then paste the Hex code as above
Once you re-compile, it You will have the DigitalPanelMeterHex in your toolbox
The line numbers I show assume you're using 399a.
Good Luck,
Rich