Ver Mensaje Individual
  #7 (permalink)  
Antiguo 28/11/2005, 20:47
Avatar de jc_moty
jc_moty
 
Fecha de Ingreso: septiembre-2005
Ubicación: Usulután, El Salvador
Mensajes: 477
Antigüedad: 19 años, 7 meses
Puntos: 1
Con el DriveListbox, DirListbox y FileListBox, seria asi:
Código:
' Evento Change del DirListBox
Private Sub Dir1_Change()
File1.Path = Dir1.Path
End Sub
' Evento Change del DriveListBox
Private Sub Drive1_Change()
Dir1.Path = Drive1.Drive
End Sub
Bueno, esta demas decir que en el form deben estar pegados los 3 controles.