Hi ..
I have been asked to create a new thread rather than recurrent on old post (http://www.daniweb.com/forums/thread116468-2.html), hope to get some help here... :)
I would like to have a "Extract" button which then open a Save As dialog to save the file from the Database into local pc, the SqlFileHolder provided in http://www.daniweb.com/forums/thread116468-1.html , work nice for me, but just wanted to have additional stuff by downloading the file.
private void saveFile(object sender, System.EventArgs e)
{
// open SaveFileDialog so the user can save the file
SaveFileDialog saveFileDialog1 = new SaveFileDialog();
saveFileDialog1.Title = "Save File..";
saveFileDialog1.ShowDialog();
...
}
How could i proceed to get the file from the database and save into my local pc from the code above?
Thank you.