微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

VB调用windowsAPI

1.读取文件数据

Private DeclareFunction ReadFile Lib "kernel32 " (ByVal hFile As Long,lpBuffer AsAny,ByVal nNumberOfBytesToRead As Long,lpNumberOfBytesRead As Long,ByVallpOverlapped As Any) As Long

2.取得系统时间

Private Declare SubGetSystemTime Lib "kernel32" (lpSystemTime As SYstemTIME)

3.取得特殊文件夹路径

Private DeclareFunction SHGetSpecialFolderLocation Lib "Shell32" (ByVal hwndOwner AsLong,ByVal nFolder As Integer,ppidl As Long) As Long

4.Private DeclareFunction SHGetPathFromIDList Lib "Shell32" Alias"SHGetPathFromIDListA" (ByVal pIdl As Long,ByVal szPath As String)As Long

5.取得windows目录

Private DeclareFunction GetwindowsDirectory Lib "kernel32" Alias"GetwindowsDirectoryA" (ByVal lpBuffer As String,ByVal nSize AsLong) As Long

6.取得系统目录

Private DeclareFunction GetSystemDirectory Lib "kernel32" Alias"GetSystemDirectoryA" (ByVal lpBuffer As String,ByVal nSize As Long)As Long

7.取得临时文件夹的路径

Private DeclareFunction GetTempPath Lib "kernel32" Alias "GetTempPathA"(ByVal nBufferLength As Long,ByVal lpBuffer As String) As Long

8.打开文件

Private DeclareFunction OpenFile Lib "kernel32" (ByVal lpFileName As String,lpReOpenBuff As OFSTRUCT,ByVal wStyle As Long) As Long

9.取得文件大小

Private DeclareFunction GetFileSizeEx Lib "kernel32" (ByVal hFile As Long,lpFileSize As Currency) As Boolean

10.关闭句柄

Private DeclareFunction CloseHandle Lib "kernel32" (ByVal hObject As Long) As Long

11.取得用户名

Private DeclareFunction GetUserName Lib "advapi32.dll" Alias"GetUserNameA" (ByVal lpBuffer As String,nSize As Long) As Long

12.取得时间返回long型

Private DeclareFunction timeGetTime Lib "winmm.dll" () As Long

13.取得驱动器类型

Private DeclareFunction GetDriveType Lib "kernel32" Alias "GetDriveTypeA"(ByVal nDrive As String) As Long

14.取得系统图标时使用

Private DeclareFunction ImageList_Draw Lib "comctl32.dll" (ByVal himl&,ByVali&,ByVal hDCDest&,ByVal x&,ByVal y&,ByVal flags&) AsLong

15.显示滚动条

Private DeclareFunction ShowScrollBar Lib "user32" (ByVal hwnd As Long,ByVal wBaras Long,ByVal bShow As Long) As Long

16.设置读取文件数据的Index

Private DeclareFunction SetFilePointer Lib "kernel32 " (ByVal hFile As Long,ByValldistancetoMove As Long,lpdistancetoMoveHigh As Long,ByVal dwMoveMethod AsLong) As Long

17.取得磁盘剩余空间

Private DeclareFunction GetdiskFreeSpace Lib "kernel32" Alias"GetdiskFreeSpaceA" (ByVal lpRootPathName As String,lpSectorsPerCluster As Long,lpBytesPerSector As Long,lpNumberOfFreeClustersAs Long,lpTtoalNumberOfClusters As Long) As Long

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐