Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]Option Explicit
Private Type vbString
bytes(1 To 8) As Byte
End Type
Private Type vbDouble
proxieDouble As Double
End Type
Private Sub Command1_Click()
Dim myHexString As vbString
Dim myDouble As vbDouble
myHexString.bytes(1) = &H40
myHexString.bytes(2) = &HB2
myHexString.bytes(3) = &HFC
myHexString.bytes(4) = &H6B
myHexString.bytes(5) = &H85
myHexString.bytes(6) = &H1E
myHexString.bytes(7) = &HB8
myHexString.bytes(8) = &H52
LSet myDouble = myHexString
MsgBox myDouble.proxieDouble
End Sub[/blue]