I figured out how to read and write to the process memory and want to learn more about it.
How do I create my own chunk of memory to do stuff with?
I don't need 5MB of memory. Just enough to create my population game using bytes.
I'm a novice when it comes to ASM stuff.
I also need to know how many bytes equal to what.
So far I found that this is what each variable represents.
Long = 4 bytes
...
User Profile
Collapse
-
Reading and Writeing Process Memory
-
Can you please provide more detail on what your goal is.
What did you update in your project?
Is it a component?(.DLL .OCX etc...) (Asked above)
If you just updated the Executable. It might be possible to just overwrite the .EXE installed with the same name of course. Should uninstall without any problems.
If you updated a component, you need to remove the old component from the system and the registry.... -
Hey killer. I haven't been to bytes in a long time.
Wanted to post a reply but it was posted 2006! lol.
Hope your still active.
Send me a message if you are still active here. -
Solution! =)
Im assuming your using VB6, I dont know if VB5 has API.
Look for PatorJK API Spy.
API Calls can do many things. What your trying to do is fill a TextBox on another window.
Use an API Spy to set another windows TextBox with your own Text.
Hope this helps!Leave a comment:
-
-
Code:Public Function Rand(ByVal Min As Long, ByVal Max As Long) As Long Rand = Int((Max - Min + 1) * Rnd) + Min End Function
Code:NextCard = Rand(1, 52)
Leave a comment:
No activity results to display
Show More
Leave a comment: