Hey guys, i have this code that saves a listbox to a text file to c:\ItemList().txt

what i wanted to know was how can the user specify where he/she wants to save this document, ie save destination?

VB Code:
  1. Private Sub cmdSave_Click()
  2.  
  3. Open "c:\ItemList().txt" For Output As #1
  4. For i = 0 To lstSelected.ListCount - 1
  5. Print #1, lstSelected.List(i)
  6. Print #1, ""
  7. Next
  8. Print #1, "TOTAL PRICE: ", Format(txtPrice.Text, "currency")
  9. Close #1
  10.  
  11. End Sub

Thanks