How to convert a Text to a Hex Code (1 Viewer)

Sarfaraz_sa

New member
Local time
Today, 06:52
Joined
Dec 1, 2021
Messages
3
Can any one help, How to convert a Text to a Hex Code in ms Access
 

Jon

Access World Site Owner
Staff member
Local time
Today, 04:52
Joined
Sep 28, 1999
Messages
7,411
Welcome to the forums! We are the most active Microsoft Access community on the internet by far, with posts going back over 20 years!

To get started, I highly recommend you read the post below. It contains important information for all new users to this forum.

https://www.access-programmers.co.uk/forums/threads/new-member-read-me-first.223250/

We look forward to having you around here, learning stuff and having fun!
 

The_Doc_Man

Immoderate Moderator
Staff member
Local time
Yesterday, 22:52
Joined
Feb 28, 2001
Messages
27,217
First, hello and welcome to the forum.

Second, I answered your question in your other thread on the subject. For future reference, this is an introductory section. Technical sections are where you ask the "how to" or the "why is" questions. But don't worry, it is a common event to see a question pop up here. We are forgiving about that very minor error in new members.
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 11:52
Joined
May 7, 2009
Messages
19,247
, How to convert a Text to a Hex Code in ms Access
like a Hex editor?

you can assign the Text to an array of byte:

Dim byt() As Byte
Dim i As Integer
byt = theText
For i = 0 to Ubound(byt)
debug.print byt(i)
next
 

Users who are viewing this thread

Top Bottom