Results 1 to 2 of 2
  1. #1
    Aur59's Avatar
    Join Date
    May 2020
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0

    Post Read offset and pointer

    hello,

    I would like to know how we do to read in vb.net offset and point?


    Code:
    TextBox1.Text = ReadPointerInteger("FVCE", "FVCE.dll" + &H1EC6B4C, &H70, &H4, &H18, &H0, &H54, &H588)
    Code:
    Public Function ReadPointerInteger(ByVal NAME As String, ByVal Pointer As Integer, ByVal ParamArray Offset As Integer()) As Integer
            Dim Value As Integer
            If Process.GetProcessesByName(NAME).Length <> 0 Then
                Dim Handle As Integer = Process.GetProcessesByName(NAME)(0).Handle
                If Handle <> 0 Then
                    For Each I As Integer In Offset
                        Value = ReadMemoryInteger(Handle, Pointer, Pointer)
                        Pointer += I
                    Next
                    Value = ReadMemoryInteger(Handle, Pointer, Value)
                End If
            End If
            Return Value
        End Function
    Can you tell me how we read offset and point?
    Thank you

  2. #2
    ChristopherFisher's Avatar
    Join Date
    Dec 2019
    Gender
    male
    Location
    Florida
    Posts
    48
    Reputation
    10
    Thanks
    1
    My Mood
    Daring
    Please check it out:

    Private Sub CommandButton1_Click()

    Range("B1").Offset(5).Select

    End Sub

    or,

    Private Sub CommandButton1_Click()

    Range("B1").Offset(5, 3).Select

    End Sub

    Things to Remember

    It is a reference function in Excel. The OFFSET function returns a reference to a range that is a specific number of rows and columns from another range or cell.

    VBA OFFSET is used with RANGE object in VBA.
    Providing PayPal solutions, any help regarding VCC, VBA, Stealth account, limitation should be get from here: PayPal Unlocked

Similar Threads

  1. [Solved] How to find Offset and Pointers?
    By [Xerox] in forum Blackshot Help
    Replies: 2
    Last Post: 01-29-2016, 02:28 AM
  2. [Release] Offset and Pointer PB Tahadi Update
    By sabatbatu in forum Piercing Blow Hack Coding/Source Code
    Replies: 4
    Last Post: 06-14-2014, 08:08 PM
  3. [Help Request] Memory reading, structures, and pointers
    By abduct in forum C++/C Programming
    Replies: 8
    Last Post: 05-17-2013, 02:40 AM
  4. [Release] some offsets and pointers (5-7-2012)
    By dmx66_96 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 9
    Last Post: 07-14-2012, 07:00 AM
  5. [Release] some offsets and pointers (21-6-2012)
    By giniyat101 in forum CrossFire Hack Coding / Programming / Source Code
    Replies: 21
    Last Post: 07-02-2012, 06:58 AM