Hello All;
I want to load some images at runtime. So how can I specify the working folder and then point to that specific image. In other words i want to point my images folder as this: Working directory/images/...
I have used some of System.Environment methos but no one help me.
Any suggesstion with a code snnipet would be truly appreciated.
Thanks.

RunTime problem
sparky62
if this what you want you can use DirectoryInfo Class
Mehrdad Abdi
string current = Environment.CurrentDirectory;
If you want the application folder (or the folder the executable is running from):
string applicationFolder = Path.GetDirectoryName(Application.ExecutablePath);