P Paul Brownjohn Jun 23, 2004 #1 Is there a direct equivalent of the VB6 expression 'app.path' in the .NET framework Cheers Paul
H Herfried K. Wagner [MVP] Jun 23, 2004 #2 * "Paul Brownjohn said: Is there a direct equivalent of the VB6 expression 'app.path' in the .NET framework Click to expand... \\\ Imports System.IO Imports System.Reflection .. .. .. Private Function ApplicationPath() As String Return _ Path.GetDirectoryName([Assembly].GetExecutingAssembly().Location) End Function ///
* "Paul Brownjohn said: Is there a direct equivalent of the VB6 expression 'app.path' in the .NET framework Click to expand... \\\ Imports System.IO Imports System.Reflection .. .. .. Private Function ApplicationPath() As String Return _ Path.GetDirectoryName([Assembly].GetExecutingAssembly().Location) End Function ///
T The Grim Reaper Jun 23, 2004 #3 Imports System.Windows.Forms vAppPath = Application.StartupPath() _______________________________________ The Grim Reaper
Imports System.Windows.Forms vAppPath = Application.StartupPath() _______________________________________ The Grim Reaper