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:
Private Sub cmdSave_Click() Open "c:\ItemList().txt" For Output As #1 For i = 0 To lstSelected.ListCount - 1 Print #1, lstSelected.List(i) Print #1, "" Next Print #1, "TOTAL PRICE: ", Format(txtPrice.Text, "currency") Close #1 End Sub
Thanks




Reply With Quote