Buscar en Recursos vb o en la web
Listado C
Funciones - Listado C
Comparaciones Api's Visual Basic .Net
Listado de funciones . Enviado por: Sebastián Ándres Perdomo ( seba123neo )
vb6
Private Declare Function CommandLineToArgv Lib "shell32" Alias "CommandLineToArgvW" (ByVal lpCmdLine As String, pNumArgs As Integer) As Long
vbnet
Private Declare Function CommandLineToArgv Lib "shell32" Alias "CommandLineToArgvW"(ByVal lpCmdLine As String, ByRef pNumArgs As Short) As Integer
vb6
Private Declare Function CallNamedPipe Lib "kernel32" Alias "CallNamedPipeA" (ByVal lpNamedPipeName As String, lpInBuffer As Any, ByVal nInBufferSize As Long, lpOutBuffer As Any, ByVal nOutBufferSize As Long, lpBytesRead As Long, ByVal nTimeOut As Long) As Long
vb.net
Private Declare Function CallNamedPipe Lib "kernel32"
Alias "CallNamedPipeA" (ByVal lpNamedPipeName As String, ByRef
lpInBuffer As Object, ByVal nInBufferSize As Integer, ByRef lpOutBuffer
As Object, ByVal nOutBufferSize As Integer, ByRef lpBytesRead As Integer,
ByVal nTimeOut As Integer) As Integer
vb6
Private Declare Function ClearCommBreak Lib "kernel32" Alias "ClearCommBreak" (ByVal nCid As Long) As Long
vb.net
Private Declare Function ClearCommBreak Lib "kernel32"
(ByVal nCid As Integer) As Integer
vb6
Private Declare Function ClearCommError Lib "kernel32" Alias "ClearCommError" (ByVal hFile As Long, lpErrors As Long, lpStat As COMSTAT) As Long
vb.net
Private Declare Function ClearCommError Lib "kernel32"
(ByVal hFile As Integer, ByRef lpErrors As Integer, ByRef lpStat As COMSTAT)
As Integer
vb.net
Private Declare Function ClientToScreen Lib "user32" (ByVal hwnd As Integer, ByRef lpPoint As POINTAPI) As Integer
vb6
Private Declare Sub ClientToScreen Lib "user32"
( _
ByVal hwnd As Long, _
lpPoint As POINT)
vb6
Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandle" (ByVal hObject As Long) As Long
vb.net
Private Declare Function CloseHandle Lib "kernel32"
(ByVal hObject As Integer) As Integer
vb6
Private Declare Function CommConfigDialog Lib "kernel32" Alias "CommConfigDialogA" (ByVal lpszName As String, ByVal hWnd As Long, lpCC As COMMCONFIG) As Long
vb.net
Private Declare Function CommConfigDialog Lib "kernel32"
Alias "CommConfigDialogA" (ByVal lpszName As String, ByVal hWnd
As Integer, ByRef lpCC As COMMCONFIG) As Integer
vb6
Private Declare Function CompareFileTime Lib "kernel32" Alias "CompareFileTime" (lpFileTime1 As FILETIME, lpFileTime2 As FILETIME) As Long
vb.net
Private Declare Function CompareFileTime Lib "kernel32"
(ByRef lpFileTime1 As FILETIME, ByRef lpFileTime2 As FILETIME) As Integer
vb6
Private Declare Function CompareString Lib "kernel32" Alias "CompareStringA" (ByVal Locale As Long, ByVal dwCmpFlags As Long, ByVal lpString1 As String, ByVal cchCount1 As Long, ByVal lpString2 As String, ByVal cchCount2 As Long) As Long
vb.net
Private Declare Function CompareString Lib "kernel32"
Alias "CompareStringA" (ByVal Locale As Integer, ByVal dwCmpFlags
As Integer, ByVal lpString1 As String, ByVal cchCount1 As Integer, ByVal
lpString2 As String, ByVal cchCount2 As Integer) As Integer
vb6
Private Private Declare Function ConnectNamedPipe Lib "kernel32" Alias "ConnectNamedPipe" (ByVal hNamedPipe As Long, lpOverlapped As OVERLAPPED) As Long
vb.net
Private Declare Function ConnectNamedPipe Lib "kernel32"
(ByVal hNamedPipe As Integer, ByRef lpOverlapped As OVERLAPPED) As Integer
vb6
Private Declare Function ContinueDebugEvent Lib "kernel32" Alias "ContinueDebugEvent" (ByVal dwProcessId As Long, ByVal dwThreadId As Long, ByVal dwContinueStatus As Long) As Long
vb.net
Private Declare Function ContinueDebugEvent Lib "kernel32"
(ByVal dwProcessId As Integer, ByVal dwThreadId As Integer, ByVal dwContinueStatus
As Integer) As Integer
vb6
Private Declare Function ConvertDefaultLocale Lib "KERNEL32" Alias "ConvertDefaultLocale" (ByVal Locale As Long) As Long
vb.net
Private Declare Function ConvertDefaultLocale Lib
"kernel32" (ByVal Locale As Integer) As Integer
vb6
Private Declare Function CopyFile Lib "kernel32" Alias "CopyFileA" (ByVal lpExistingFileName As String, ByVal lpNewFileName As String, ByVal bFailIfExists As Long) As Long
vb.net
Private Declare Function CopyFile Lib "kernel32"
Alias "CopyFileA" (ByVal lpExistingFileName As String, ByVal
lpNewFileName As String, ByVal bFailIfExists As Integer) As Integer
vb6
Private Declare Function CreateConsoleScreenBuffer Lib "kernel32" Alias "CreateConsoleScreenBuffer" (ByVal dwDesiredAccess As Long, ByVal dwShareMode As Long, lpSecurityAttributes As SECURITY_ATTRIBUTES, ByVal dwFlags As Long, lpScreenBufferData As Any) As Long
vb.net
Private Declare Function CreateConsoleScreenBuffer
Lib "kernel32" (ByVal dwDesiredAccess As Integer, ByVal dwShareMode
As Integer, ByRef lpSecurityAttributes As SECURITY_ATTRIBUTES, ByVal dwFlags
As Integer, ByRef lpScreenBufferData As Object) As Integer
vb6
Private Declare Function CreateDirectory Lib "kernel32" Alias "CreateDirectoryA" (ByVal lpPathName As String, lpSecurityAttributes As SECURITY_ATTRIBUTES) As Long
vb.net
Private Declare Function CreateDirectory Lib "kernel32"
Alias "CreateDirectoryA" (ByVal lpPathName As String, ByRef
lpSecurityAttributes As SECURITY_ATTRIBUTES) As Integer
vb6
Private Declare Function CreateDirectoryEx Lib "kernel32" Alias "CreateDirectoryExA" (ByVal lpTemplateDirectory As String, ByVal lpNewDirectory As String, lpSecurityAttributes As SECURITY_ATTRIBUTES) As Long
vb.net
Private Declare Function CreateDirectoryEx Lib "kernel32"
Alias "CreateDirectoryExA" (ByVal lpTemplateDirectory As String,
ByVal lpNewDirectory As String, ByRef lpSecurityAttributes As SECURITY_ATTRIBUTES)
As Integer
vb6
Private Declare Function CreateEvent Lib "kernel32" Alias "CreateEventA" (lpEventAttributes As SECURITY_ATTRIBUTES, ByVal bManualReset As Long, ByVal bInitialState As Long, ByVal lpName As String) As Long
vb.net
Private Declare Function CreateEvent Lib "kernel32"
Alias "CreateEventA" (ByRef lpEventAttributes As SECURITY_ATTRIBUTES,
ByVal bManualReset As Integer, ByVal bInitialState As Integer, ByVal lpName
As String) As Integer
vb6
Private Declare Function CreateFile Lib "kernel32" Alias "CreateFileA" (ByVal lpFileName As String, ByVal dwDesiredAccess As Long, ByVal dwShareMode As Long, lpSecurityAttributes As SECURITY_ATTRIBUTES, ByVal dwCreationDisposition As Long, ByVal dwFlagsAndAttributes As Long, ByVal hTemplateFile As Long) As Long
vb.net
Private Declare Function CreateFile Lib "kernel32"
Alias "CreateFileA" (ByVal lpFileName As String, ByVal dwDesiredAccess
As Integer, ByVal dwShareMode As Integer, ByRef lpSecurityAttributes As
SECURITY_ATTRIBUTES, ByVal dwCreationDisposition As Integer, ByVal dwFlagsAndAttributes
As Integer, ByVal hTemplateFile As Integer) As Integer
vb6
Private Declare Function CreateFileMapping Lib "kernel32" Alias "CreateFileMappingA" (ByVal hFile As Long, lpFileMappigAttributes As SECURITY_ATTRIBUTES, ByVal flProtect As Long, ByVal dwMaximumSizeHigh As Long, ByVal dwMaximumSizeLow As Long, ByVal lpName As String) As Long
vb.net
Private Declare Function CreateFileMapping Lib "kernel32"
Alias "CreateFileMappingA" (ByVal hFile As Integer, ByRef lpFileMappigAttributes
As SECURITY_ATTRIBUTES, ByVal flProtect As Integer, ByVal dwMaximumSizeHigh
As Integer, ByVal dwMaximumSizeLow As Integer, ByVal lpName As String)
As Integer
vb6
Private Declare Function CreateIoCompletionPort Lib "kernel32" Alias "CreateIoCompletionPort" (ByVal FileHandle As Long, ByVal ExistingCompletionPort As Long, ByVal CompletionKey As Long, ByVal NumberOfConcurrentThreads As Long) As Long
vb.net
Private Declare Function CreateIoCompletionPort Lib
"kernel32" (ByVal FileHandle As Integer, ByVal ExistingCompletionPort
As Integer, ByVal CompletionKey As Integer, ByVal NumberOfConcurrentThreads
As Integer) As Integer
vb6
Private Declare Function CreateMailslot Lib "kernel32" Alias "CreateMailslotA" (ByVal lpName As String, ByVal nMaxMessageSize As Long, ByVal lReadTimeout As Long, lpSecurityAttributes As SECURITY_ATTRIBUTES) As Long
vb.net
Private Declare Function CreateMailslot Lib "kernel32"
Alias "CreateMailslotA" (ByVal lpName As String, ByVal nMaxMessageSize
As Integer, ByVal lReadTimeout As Integer, ByRef lpSecurityAttributes
As SECURITY_ATTRIBUTES) As Integer
vb6
Private Declare Function CreateMutex Lib "kernel32" Alias "CreateMutexA" (lpMutexAttributes As SECURITY_ATTRIBUTES, ByVal bInitialOwner As Long, ByVal lpName As String) As Long
vb.net
Private Declare Function CreateMutex Lib "kernel32"
Alias "CreateMutexA" (ByRef lpMutexAttributes As SECURITY_ATTRIBUTES,
ByVal bInitialOwner As Integer, ByVal lpName As String) As Integer
vb6
Private Declare Function CreateNamedPipe Lib "kernel32" Alias "CreateNamedPipeA" (ByVal lpName As String, ByVal dwOpenMode As Long, ByVal dwPipeMode As Long, ByVal nMaxInstances As Long, ByVal nOutBufferSize As Long, ByVal nInBufferSize As Long, ByVal nDefaultTimeOut As Long, lpSecurityAttributes As SECURITY_ATTRIBUTES) As Long
vb.net
Private Declare Function CreateNamedPipe Lib "kernel32"
Alias "CreateNamedPipeA" (ByVal lpName As String, ByVal dwOpenMode
As Integer, ByVal dwPipeMode As Integer, ByVal nMaxInstances As Integer,
ByVal nOutBufferSize As Integer, ByVal nInBufferSize As Integer, ByVal
nDefaultTimeOut As Integer, ByRef lpSecurityAttributes As SECURITY_ATTRIBUTES)
As Integer
vb6
Private Declare Function CreatePipe Lib "kernel32" Alias "CreatePipe" (phReadPipe As Long, phWritePipe As Long, lpPipeAttributes As SECURITY_ATTRIBUTES, ByVal nSize As Long) As Long
vb.net
Private Declare Function CreatePipe Lib "kernel32"
(ByRef phReadPipe As Integer, ByRef phWritePipe As Integer, ByRef lpPipeAttributes
As SECURITY_ATTRIBUTES, ByVal nSize As Integer) As Integer
vb6
Private Declare Function CreateProcess Lib "kernel32" Alias "CreateProcessA" (ByVal lpApplicationName As String, ByVal lpCommandLine As String, lpProcessAttributes As SECURITY_ATTRIBUTES, lpThreadAttributes As SECURITY_ATTRIBUTES, ByVal bInheritHandles As Long, ByVal dwCreationFlags As Long, lpEnvironment As Any, ByVal lpCurrentDriectory As String, lpStartupInfo As STARTUPINFO, lpProcessInformation As PROCESS_INFORMATION) As Long
vb.net
Private Declare Function CreateProcess Lib "kernel32"
Alias "CreateProcessA" (ByVal lpApplicationName As String, ByVal
lpCommandLine As String, ByRef lpProcessAttributes As SECURITY_ATTRIBUTES,
ByRef lpThreadAttributes As SECURITY_ATTRIBUTES, ByVal bInheritHandles
As Integer, ByVal dwCreationFlags As Integer, ByRef lpEnvironment As Object,
ByVal lpCurrentDriectory As String, ByRef lpStartupInfo As STARTUPINFO,
ByRef lpProcessInformation As PROCESS_INFORMATION) As Integer
vb6
Private Declare Function CreateRemoteThread Lib "kernel32" Alias "CreateRemoteThread" (ByVal hProcess As Long, lpThreadAttributes As SECURITY_ATTRIBUTES, ByVal dwStackSize As Long, lpStartAddress As Long, lpParameter As Any, ByVal dwCreationFlags As Long, lpThreadId As Long) As Long
vb.net
Private Declare Function CreateRemoteThread Lib "kernel32"
(ByVal hProcess As Integer, ByRef lpThreadAttributes As SECURITY_ATTRIBUTES,
ByVal dwStackSize As Integer, ByRef lpStartAddress As Integer, ByRef lpParameter
As Object, ByVal dwCreationFlags As Integer, ByRef lpThreadId As Integer)
As Integer
vb6
Private Declare Function CreateSemaphore Lib "kernel32" Alias "CreateSemaphoreA" (lpSemaphoreAttributes As SECURITY_ATTRIBUTES, ByVal lInitialCount As Long, ByVal lMaximumCount As Long, ByVal lpName As String) As Long
vb.net
Private Declare Function CreateSemaphore Lib "kernel32"
Alias "CreateSemaphoreA" (ByRef lpSemaphoreAttributes As SECURITY_ATTRIBUTES,
ByVal lInitialCount As Integer, ByVal lMaximumCount As Integer, ByVal
lpName As String) As Integer
vb6
Private Declare Function CreateTapePartition Lib "kernel32" Alias "CreateTapePartition" (ByVal hDevice As Long, ByVal dwPartitionMethod As Long, ByVal dwCount As Long, ByVal dwSize As Long) As Long
vb.net
Private Declare Function CreateTapePartition Lib
"kernel32" (ByVal hDevice As Integer, ByVal dwPartitionMethod
As Integer, ByVal dwCount As Integer, ByVal dwSize As Integer) As Integer
vb6
Private Declare Function CreateThread Lib "kernel32" Alias "CreateThread" (lpThreadAttributes As SECURITY_ATTRIBUTES, ByVal dwStackSize As Long, lpStartAddress As Long, lpParameter As Any, ByVal dwCreationFlags As Long, lpThreadId As Long) As Long
vb.net
Private Declare Function CreateThread Lib "kernel32" (ByRef lpThreadAttributes As SECURITY_ATTRIBUTES, ByVal dwStackSize As Integer, ByRef lpStartAddress As Integer, ByRef lpParameter As Object, ByVal dwCreationFlags As Integer, ByRef lpThreadId As Integer) As Integer
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
Recursos visual basic - Buscar - Privacidad - Copyright © 2005 - 2009 - www.recursosvisualbasic.com.ar
Buscar en Recursos vb