Code: Select all
varC=123
Debug varC
ptrA=@varC
Debug ptrA
Debug PeekL(ptrA)
varC=456
Debug PeekL(ptrA)
For example if I know the name of a variable in another process to be "VarC" how can I read the value of that variable?
Thanks!
DevilDog
Code: Select all
varC=123
Debug varC
ptrA=@varC
Debug ptrA
Debug PeekL(ptrA)
varC=456
Debug PeekL(ptrA)
DevilDog wrote:The purpose of this would be to be able to display the value of a variable by placing the mouse over it, much like vb.net does.
Why don't you use the Variable or Watchlist function in the Debugger?DevilDog wrote:The purpose of this would be to be able to display the value of a variable by placing the mouse over it, much like vb.net does.
DevilDog wrote:The purpose of this would be to be able to display the value of a variable by placing the mouse over it, much like vb.net does.
Why don't you use the Variable or Watchlist function in the Debugger?DevilDog wrote:The purpose of this would be to be able to display the value of a variable by placing the mouse over it, much like vb.net does.