how can I find what floppy(zip floppy etc) that a cpu has on it? I want to add a send to floppy option to my prog
Printable View
how can I find what floppy(zip floppy etc) that a cpu has on it? I want to add a send to floppy option to my prog
[code]
Dim sDrive As String
Dim lType As Long
Const FLOPPY = 2
Const A = 65
Const Z = 90
For nLetter = A To Z
sDrive = Chr(nLetter)
lType = GetDriveType(sDrive & ":\")
If lType = FLOPPY Then
' It's a floppy.
End If
Next
Wow a guru ive never seen....thanks though
No, I'm not a new guru (for whatever that's worth), but if you want to see the top 10 posters who are most likely but not necessarily all gurus, click
members>to 10 posters
above