VBcoders Browse New Submit Contact Sign In

No account? Register free

Forgot password?

How to find the network with Ms Access code ( Visual basic )

Dennis Middeljans  (2 Submissions)   OLE/COM/DCOM/Active-X   VB 6.0   Unknown Difficulty   Mon 28th January 2002   Mon 8th February 2021

How to find the network with Ms Access code ( Visual basic )

API Declarations


Option Explicit

Private Declare Function GetDriveType Lib "kernel32" _
Alias "GetDriveTypeA" (ByVal nDrive As String) _
As Long

Private Declare Function GetLogicalDriveStrings Lib _
"kernel32" Alias "GetLogicalDriveStringsA" _
(ByVal nBufferLength As Long, ByVal lpBuffer _
As String) As Long

Private Const DRIVE_REMOVABLE = 2
Private Const DRIVE_FIXED = 3
Private Const DRIVE_REMOTE = 4
Private Const DRIVE_CDROM = 5
Private Const DRIVE_RAMDISK = 6

Rate How to find the network with Ms Access code ( Visual basic ) (2(2 Vote))
How to find the network with Ms Access code ( Visual basic ).bas

How to find the network with Ms Access code ( Visual basic ) Comments

No comments yet — be the first to post one!

Post a Comment

0/1000 characters