|
-
Sep 4th, 2005, 04:49 PM
#1
Thread Starter
Fanatic Member
Printing Offsets
Is it possible to print offsets in vb?
In C++ for printing offsets is %x.
Example:
Code:
add_log("Address: %x", lpBaseAddress) // for intercepting WPM call Addresses
Possible in vb?
-
Sep 4th, 2005, 07:01 PM
#2
Thread Starter
Fanatic Member
-
Sep 4th, 2005, 07:11 PM
#3
Re: Printing Offsets
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|