I have this code which is to export data from datatable in excel, and what i want to do instead to write the location myself in the @"", i want to make the user to choose the location by himself, thanks.
DataTable dt = hpl.SearchUserGroup(Convert.ToInt32(txtSearch.Text));
Workbook book = new Workbook();
Worksheet sheet = book.Worksheets[0];
sheet.InsertDataTable(dt, true, 1, 1);
book.SaveToFile(@"", ExcelVersion.Version97to2003);