How can we help you today? How can we help you today?

VB.NET Signature: GetWindowText

VB.NET Signature:
<DllImport("user32.dll", SetLastError:=True, CharSet:=CharSet.Auto)>
Private Shared Function GetWindowText(ByVal hwnd As IntPtr) As Integer
End Function
VBNetter
0

Comments

1 comment

  • VBNetter
    Alternate VB.NET GetWindowText

    Private Declare Function GetWindowText Lib "user32" Alias "GetWindowTextA" (ByVal hwnd As Integer, ByVal lpWindowText As String, ByVal cch As Integer) As Integer
    VBNetter
    0

Add comment

Please sign in to leave a comment.