K Ken Tucker MVP Mar 18, 2005 #2 Hi, Dim strPath As String strPath = System.IO.Path.GetDirectoryName( system.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase) Ken --------------------
Hi, Dim strPath As String strPath = System.IO.Path.GetDirectoryName( system.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase) Ken --------------------
S Sergey Bogdanov Mar 18, 2005 #3 Try this: System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); Best regards, Sergey Bogdanov http://www.sergeybogdanov.com
Try this: System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); Best regards, Sergey Bogdanov http://www.sergeybogdanov.com
A Arun Mar 18, 2005 #4 Hi, private string ApplicationPath() { return new System.IO.FileInfo(System.Reflection. Assembly.GetExecutingAssembly().GetName().CodeBase.ToString()).DirectoryName; } Hope this helps, Regards, Arun www.innasite.com
Hi, private string ApplicationPath() { return new System.IO.FileInfo(System.Reflection. Assembly.GetExecutingAssembly().GetName().CodeBase.ToString()).DirectoryName; } Hope this helps, Regards, Arun www.innasite.com