Hello, I develop my first application for a client has the objective of managing quotes and invoices, at first I have to choose the directory that contains the quotes. But just once and after it uses the application normally,The selected files are added to a list with the code below
- if (listBox2.SelectedIndex >= 0)
- {
- foreach (DirectoryInfo dr in listBox2.SelectedItems)
- {
- Dossiers.ls_dossier_devis.Add(dr);
- }
- }

- what i have to do ?
Amit GuptaPosted Jun 25, 2017, 1:29 PM
Mohamed MoumniPosted Jun 25, 2017, 10:08 PM
Mohamed MoumniPosted Jun 25, 2017, 10:58 AM
At first i select the global path with FolderBrowserDialogue . I have to serialize it , for next time when application runs upload automatically the directories from serialized path
Amit GuptaPosted Jun 24, 2017, 4:28 PM