J
Joseph Oget
If I use the code below in a VB.NET form, even if the file exists, and is
then executed, the Else statement produces the "Sorry cannot find the File "
error message.
The MessageBox.Show( StrPathToScript ) never gets called! why?
If File.Exists( StrPathToScript ) Then
MessageBox.Show( StrPathToScript )
Else
MessageBox.Show( "Sorry cannot find the File " )
End If
Thanks in advance
Joseph
then executed, the Else statement produces the "Sorry cannot find the File "
error message.
The MessageBox.Show( StrPathToScript ) never gets called! why?
If File.Exists( StrPathToScript ) Then
MessageBox.Show( StrPathToScript )
Else
MessageBox.Show( "Sorry cannot find the File " )
End If
Thanks in advance
Joseph