Results 1 to 2 of 2

Thread: File copy from drive to A: + more, please help!

  1. #1

    Thread Starter
    New Member
    Join Date
    Sep 2001
    Posts
    2

    File copy from drive to A: + more, please help!

    hi im trying to make a program wich can send files from a specified dir to a: ...
    my goal is to get tis working (below)
    when i choose a drive in the DriveListBox i want the dirs to show up in the DirListBox and when choosing a dir i want the files to show in the FileListBox...
    and when i highlight a file in the FileListBox and press the button send i want the file to be sent to A:

    please, if you have any idea how to solve this please mail me!

  2. #2
    Lively Member Flustor's Avatar
    Join Date
    Sep 2001
    Location
    A small hole in Birmingham
    Posts
    76

    Smile

    Have you tried using the Common Dialog control
    e.g.
    Private Sub Command1_Click()
    Me.CommonDialog1.ShowOpen
    End Sub


    or if you still want to use file, directory, drive..

    Private Sub Dir1_Change()
    Me.File1.Path = Me.Dir1.Path
    End Sub

    Private Sub Drive1_Change()
    Me.Dir1.Path = Me.Drive1.Drive
    End Sub

    Hope this helps
    My Spidey senses are tingling!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width