Hi
I'm currently developing a plugin that when a user creates a new account the details in the fields are exported to a .csv file
I would like to let the user choose where the csv file is saved too.
I inputted the following code;
SaveFileDialogsaveFileDialog1 =
newSaveFileDialog();
saveFileDialog1.Filter =
"CSV File |*.csv";
saveFileDialog1.Title =
"Choose Where To Save The CSV File"
saveFileDialog1.ShowDialog();
But got the following error when testing;
"Showing a model dialog box of form when the application is not running in UserInteractive mode is not a valid operation. Specify the serviceNotificaition or DefaultDesktopOnly stule to a display to notification form a service applicaiton
Any ideas what to do?
Thanks, Shaun
S.Harrison