On my form I have a DriveListBox, DirListBox, FileListBox, two text fields, txtFile1 and txtFile2 and two picture boxes Picture 1 and Picture 2. What I want to do is use the same controls to load a jpg image into picture1 and another jpg image into picture2. I have my controls to setup to load my image into picture1. How do I reset the controls so I can add another image into Picture2?

VB Code:
  1. '//////////// SELECT FOLDER FROM DRIVE //////////////////////
  2. Private Sub Drive1_Change()
  3.     Dir1.Path = Drive1.Drive
  4. End Sub
  5.    
  6.     '//////// SELECT DRIVE LETTER FROM LOCAL HARD DRIVE /////////////////
  7. Private Sub Dir1_Change()
  8.     File1.Path = Dir1.Path
  9. End Sub
  10.  
  11.     '/////////// PUT FILE NAME INTO TEXT BOX
  12. Private Sub File1_Click()
  13.     Dim txtPath$
  14.     txtPath$ = Dir1.Path
  15.     If Mid(txtPath$, Len(txtPath$), 1) = "\" Then
  16.         txtFile1.Text = Dir1.Path & File1.FileName
  17.     Else
  18.         txtFile1.Text = File1.FileName
  19.     End If
  20.    
  21.    Picture1.Picture = LoadPicture(Dir1.Path & "\" & File1.FileName)
  22.        
  23. End Sub