hello everybody
I have a String say "vbforums", I want to write that String into a specific address in the memory ,say, "F85C00"
Also, how to read a specific Address ,say, "A456CC" ?
any help please
thanks
Printable View
hello everybody
I have a String say "vbforums", I want to write that String into a specific address in the memory ,say, "F85C00"
Also, how to read a specific Address ,say, "A456CC" ?
any help please
thanks
Short answer : Go with C\C++.
I'm not sure what the point would be in doing it with VB, if you even can.
:)
I know that's possible in C++ but I wanna do that in VB :confused: :confused:
im not sure if this will work but there is an 'AddressOf' operator in vb
AddressOF doesn't work outside of passing function pointers.
There is a number of API calls to do what you want.
Theres an API call to read or write memory of a particular process, that is what you want.
you may have some problems with writting strings, write characters instead.
that's ok
what's the API call to read or write memory of a particular address ??
Can't remember :P it s a process call
Oh, I think Windows handle memory differently.
There's some extra works needed to be done.
R U making a GAME HACK?
doesn't matter what I want to do
I just want to read and write a particular address (from & to)memory
Err Windows handles memory the same way it as always done.
Memory address space is PER process. Each process has 4GB of memory reversed for its use (reversed, does not mean taken)
all addresses refer to that 4GB, from 0 to 4GB :P
if your making a game hack you need to write a dll, then hook that dll into the game process, then use the API call (sorry i forgot the name of it) to read/write the memory directly)
you also need to do some otherstuff like lock and unlock the memory page to do it.