Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to know if I can directly read or write values in the current process in a Visual Basic 2005 Windows application.

Like *(DWORD*)(0x123456) = 1; in C++ will write the value 1 at the address 0x123456.

So anyway to do the same in VB using only built in functions and not using ReadProcessMemory and WriteProcessMemory?

share|improve this question

1 Answer

up vote 1 down vote accepted

If you are really sure you need to do this you should look into the Marshal Class, specifically Marshal.WriteByte.

But I am pretty sure Marshal makes heavy use of Win32 API functions so it's questionable if it's really "built in".

share|improve this answer
thank you for your answer. that's what i needed although it doesnt write single or double but its ok edit : found it :) – justcoder Jun 11 '12 at 10:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.