Results 1 to 3 of 3

Thread: Printing Offsets

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    May 2004
    Posts
    566

    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?

  2. #2

    Thread Starter
    Fanatic Member
    Join Date
    May 2004
    Posts
    566

    Re: Printing Offsets

    no one?

  3. #3
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    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:
    1. Option Explicit
    2.  
    3. Private Sub Form_Load()
    4.   Dim m As Long
    5.   m = &H8005
    6.   MsgBox m
    7. 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
  •  



Click Here to Expand Forum to Full Width