How Read Char Name

12/13/2011 20:47 peske#1
Hi all.
I need all help.I using visual basic 2008.I need read char name and transfer label.

Sample

label1.text = charname
label2.text = charsp
....
12/16/2011 20:05 peske#2
up
01/13/2012 18:10 besimbicer#3
you find char pointer (simple (vb)&H112233 (c/c++/C# 0x112233))
and find char name offset and read (char pointer + char name offset )
(char_pointer = &H112233 ''adress is only simple)
(char_offset = &H123 ''1233 convert decimal to hex)


charname = readlong(char_pointer + char_name_offset))

or

charname = readlong(char_pointer+ readlong(char_name_offset))

simple using:

label1.text = charname