Buscar

Buscar en Recursos vb o en la web


Equivalencias del Api para vb y vb.net

Listado G


Funciones - Listado G

Comparaciones Api's Visual Basic .Net

Listado de funciones . Enviado por: Sebastián Ándres Perdomo ( seba123neo )

 

GetCursorPos

vb6

Private Declare Function GetCursorPos Lib "user32" Alias "GetCursorPos" (lpPoint As POINTAPI) As Long

vbnet

Private Declare Function GetCursorPos Lib "user32" (ByRef lpPoint As POINTAPI) As Integer


GetClipboardData

vb6

Private Declare Function GetClipboardData Lib "user32" Alias "GetClipboardDataA" (ByVal wFormat As Long) As Long

vbnet

Private Declare Function GetClipboardData Lib "user32" Alias "GetClipboardDataA" (ByVal wFormat As Integer) As Integer


GetAsyncKeyState

vb6

Private Declare Function GetAsyncKeyState Lib "user32" Alias "GetAsyncKeyState" (ByVal vKey As Long) As Integer

vbnet

Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Integer) As Short


GetPixel

vb6

Private Declare Function GetPixel Lib "gdi32" Alias "GetPixel" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long) As Long

vbnet

Private Declare Function GetPixel Lib "gdi32" (ByVal hDC As Integer, ByVal x As Integer, ByVal y As Integer) As Integer

GetTokenInformation

vb6

Private Declare Function GetTokenInformation Lib "advapi32.dll" (ByVal TokenHandle As Long, ByVal TokenInformationClass As Long, TokenInformation As Any, ByVal TokenInformationLength As Long, ReturnLength As Long) As Long

vbnet

Private Declare Function GetTokenInformation Lib "advapi32.dll" (ByVal TokenHandle As Long, ByVal TokenInformationClass As Long, TokenInformation as object, ByVal TokenInformationLength As Long, ReturnLength As Long) As Long

GetDiskFreeSpace

vb6

Private Declare Function GetDiskFreeSpace Lib "kernel32" Alias "GetDiskFreeSpaceA" (ByVal lpRootPathName As String, lpSectorsPerCluster As Long, lpBytesPerSector As Long, lpNumberOfFreeClusters As Long, lpTotalNumberOfClusters As Long) As Long

vbnet

Private Declare Function GetDiskFreeSpace Lib "kernel32" Alias "GetDiskFreeSpaceA" (ByVal lpRootPathName As String, ByRef lpSectorsPerCluster As Integer, ByRef lpBytesPerSector As Integer, ByRef lpNumberOfFreeClusters As Integer, ByRef lpTtoalNumberOfClusters As Integer) As Integer


GetDeviceCaps

vb6

Private Declare Function GetDeviceCaps Lib "gdi32" Alias "GetDeviceCaps" (ByVal hdc As Long, ByVal nIndex As Long) As Long

vbnet

Private Declare Function GetDeviceCaps Lib "gdi32" (ByVal hDC As Integer, ByVal nIndex As Integer) As Integer


GetTickCount

vb6

Private Declare Function GetTickCount Lib "kernel32" Alias "GetTickCount" () As Long

vbnet

private Declare Function GetTickCount Lib "kernel32" () As Integer


GetWindowLong

vb6

Private Declare Function GetWindowLong Lib "user32.dll" Alias "GetWindowLongA" (ByVal hWnd As Long, ByVal nIndex As Long) As Long

vbnet

Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hwnd As Integer, ByVal nIndex As Integer) As Integer

 

getClientRect

vb.net

Private Declare Function GetClientRect Lib "user32" (ByVal hwnd As Integer, ByRef lpRect As RECT) As Integer

 

vb6

Private Declare Sub GetClientRect Lib "user32" ( ByVal hwnd As Long, lpRect As RECT)

 

A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z

 

Buscar en Recursos Visual basic


Visual basic 6.0
Visual basic .NET
Otros Recursos
  • Recursos de programación
    Listado de enlaces externos sobre Visual studio y otros temas relacionados al desarrollo y programación

Buscar en Recursos vb

Listado de Enlaces