Hi all,

I have a form with a dirlistbox and a drivelistbox.
When I change my drive to a: and there's no disk inserted it generates an arro6 68. But it isn't trapped. Can someone help me please?

VB Code:
  1. Private Sub Drive1_Change()
  2.  
  3. On Error GoTo HSB_ErrorMsg
  4.  
  5. Dir1.Path = Drive1.Drive
  6. Exit Sub
  7.  
  8. HSB_ErrorMsg:
  9.     Screen.MousePointer = vbDefault
  10.     MsgBox "An error occured during this action " & vbCrLf & Err.Number & " : " & Err.Description, vbExclamation, "HSB Error: HSBMng 1002"
  11.    
  12. End Sub