Sarfaraz_sa New member Local time Today, 12:14 Joined Dec 1, 2021 Messages 3 Dec 1, 2021 #1 Hi! Can any one help me, how to convert a Text to a Hex Code in MS Access
The_Doc_Man Immoderate Moderator Staff member Local time Today, 04:14 Joined Feb 28, 2001 Messages 30,008 Dec 1, 2021 #2 Something similar to this: Code: strHex = Hex( Asc( str1Char) ) where str1Char is the character to be converted and strHex is the string to receive the converted characters. Asc function (Visual Basic for Applications) Office VBA reference topic docs.microsoft.com Hex function (Visual Basic for Applications) Office VBA reference topic docs.microsoft.com
Something similar to this: Code: strHex = Hex( Asc( str1Char) ) where str1Char is the character to be converted and strHex is the string to receive the converted characters. Asc function (Visual Basic for Applications) Office VBA reference topic docs.microsoft.com Hex function (Visual Basic for Applications) Office VBA reference topic docs.microsoft.com