I’m trying to do the following I’m not sure if it’s possible using VB.NET.
I want to specify default saving point for all files type for example:
In my program you choose the path “C:\Users\Markus\Pictures” for pictures and everytime you download pictures files from website, or using skype or any other program when Save File Dialog opens up (external one not via my program or connected to vb.net just the windows default one) then it will show “C:\Users\Markus\Pictures” always for .jpg .gif type of files etc…
Thanks a lot.
This bits of codes should solve your problem
InitialDirectory property represents the directory to be displayed when the open file dialog appears first time.
Filter property represents the filter on an open file dialog that is used to filter the type of files to be loaded during the browse option in an open file dialog.
refer to this link for more info