| View previous topic :: View next topic |
| Author |
Message |
Teena
Joined: 28 Aug 2007 Posts: 138
|
Posted: Fri Jan 02, 2009 11:15 am Post subject: The Save File Dialog Box in Windows Forms using c# |
|
|
Hi Experts,
Can any body let me know some Related stuff for Save File Dialog Filter property.. in c#.
thanking you in advance,
regards,
teena |
|
| Back to top |
|
 |
mouli
Joined: 24 Aug 2007 Posts: 84
|
Posted: Fri Jan 02, 2009 11:24 am Post subject: |
|
|
Hi,
you can save file dialog filter property like as follows... here i have created instance for SaveFileDialog.
sfd.Filter = "HTML Files (*.htm)|*.htm|" +
"Active Server Pages (*.asp)|*.asp|" +
"Apache Files (*.php)|*.php|" +
"Perl Script (*.pl)|*.pl|" +
"All Files|";
try this property. you will get filer options for SaveFileDialog..
regards,
mouli |
|
| Back to top |
|
 |
|