Okay,

Here is the scoop.

I am working on a program makes a backup on a zip drive. I want to just specify the zip drive in the combo box.

Here is information from Microsoft.

VB Code:
  1. Sub ShowDriveType(drvpath)
  2.     Dim fs, d, s, t
  3.     Set fs = CreateObject("Scripting.FileSystemObject")
  4.     Set d = fs.GetDrive(drvpath)
  5.     Select Case d.DriveType
  6.         Case 0: t = "Unknown"
  7.         Case 1: t = "Removable"
  8.         Case 2: t = "Fixed"
  9.         Case 3: t = "Network"
  10.         Case 4: t = "CD-ROM"
  11.         Case 5: t = "RAM Disk"
  12.     End Select
  13.     s = "Drive " & d.DriveLetter & ": - " & t
  14.     MsgBox s
  15. End Sub

If I set the drive type to only allow type 2 - it would include the floppy and the zip drive.

How can I specify just the zip drive?

Thanks for your help

Doc