Represent string as intptr ?
Hi
is there any way to represent this this value as intptr
Code:
Dim Pointer0 As String = "&H" + DataGridView1****ws(0).Cells("Column1").Value()
cuz this function --> FindAddress >> need it as intptr not as string
Code:
Dim Pointer0WithOffset As IntPtr = FindAddress(Pointer0)
--------
if i made it like that
Code:
Dim Pointer0 As Intptr = "&H" + DataGridView1****ws(0).Cells("Column1").Value()
it will not get the value of the cell > to get the value of the cell it must be --> Dim Pointer0 As String
thanks in advance