Hello one and all i would like to have a file dialog option to open or save or cancel when i click on a file that is displayed in the form. Generally we have this in asp.net but can any one tell how to do in VB.Net.
Thanks in advance,
M.Dorababu
Loading

Dorababu MekaPosted Apr 27, 2010, 4:41 AM
Hirendra SisodiyaPosted Apr 27, 2010, 4:37 AM
Hi
We can use openFileDialogand savefileDialog for opening and savingfiles
Try this:
'opening file
Dim openFile As New OpenFileDialog
openFile.ShowDialog()
'Saving file
Dim saveFile As New SaveFileDialog
saveFile.ShowDialog()
thanks
Please mark as answere if it helps
Lalit MPosted Apr 27, 2010, 1:48 AM
You will get here source code
http://www.ammara.com/access_image_faq/file_open_dialog.html