Converting Hexadecimal to String / Text with Visual Basic 6.0
Kamis, 06 Agustus 2009 - Label: artikel vb - 2 Comments
Actually it’s easy enough to convert Hexadecimal to string with Visual Basic 6.0
Sebenarnya sangat mudah untuk melakukan convert dari Hexadecimal ke string dengan VB 6
Gunakan Function ini:
Function HesToString(HexString As String) As StringDim Hexs() As StringDim ascc As IntegerDim result As StringHexs = Split(HexString, " ")If UBound(Hexs) > 0 ThenFor i = 0 To UBound(Hexs)If Asc(Hexs(i)) < style="min-height: 1px; ">ascc = CInt(Val("&H" & Hexs(i)))result = result & Chr(ascc)Next iHesToString = resultElseHesToString = "Gunakan pemisah spasi"Exit FunctionEnd IfEnd Function
This entry was posted on 20.35
and is filed under
artikel vb
.
You can follow any responses to this entry through
the RSS 2.0 feed.
You can leave a response,
or trackback from your own site.

2 komentar:
:RE:
:r: kok ga iso yoo
Posting Komentar