how to upload images in a folder and then fetches from folder..............................in windows form application........images name and path saved in database.
this is easy in asp.net server.mappath..................but i donot know how to save in windows form application
Loading
sajeer mPosted Jun 1, 2015, 2:42 AM
Selva GanapathyPosted Nov 22, 2014, 12:14 AM
Gridhari singh,
You can make use of directory options of native c# for this
Regards,
Selva Ganapathy K
Amit ShrivastavaPosted Aug 22, 2014, 6:52 AM
string path = your path
if (path != "")
{
System.Diagnostics.Process.Start(path);
}
Kunal VaishyaPosted Jul 9, 2013, 12:46 AM
You can get that application Execution path by this code , you will got the path
System.Windows.Forms.Application.StartupPath
Environment.CurrentDirectory;
Iftikar HussainPosted Jul 9, 2013, 12:40 AM
If you saved your image file in your windows application directory then you can use either
Regards,
Iftikar
Sanjeeb LenkaPosted Jul 9, 2013, 12:16 AM
http://www.dhirajranka.com/?p=421