Is it possible to print offsets in vb?
In C++ for printing offsets is %x.
Example:
Possible in vb?Code:add_log("Address: %x", lpBaseAddress) // for intercepting WPM call Addresses
Printable View
Is it possible to print offsets in vb?
In C++ for printing offsets is %x.
Example:
Possible in vb?Code:add_log("Address: %x", lpBaseAddress) // for intercepting WPM call Addresses
no one?
No, VB uses numeric by default. You can input Hex numbers with the &H prefix, but it will be converted into a number.
VB Code:
Option Explicit Private Sub Form_Load() Dim m As Long m = &H8005 MsgBox m End Sub
You would have to specify the name of the subroutine that was called to pring a log. MZTools allows you to customize the debug statements that you want and will insert them into each sub/function.