View Single Post
  #2 (permalink)  
Old 07-05-2009, 11:23 AM
ggunter ggunter is offline
VB.NET Forum Enthusiast
.NET Framework: .NET 2.0 (VS 2005)
 
Join Date: Apr 2008
Posts: 85
Reputation: 33
ggunter is on a distinguished programming path ahead
Default

Assuming that your program structure is:
"\executable file directory\Docs"


Then it would be:
Dim strPath As String = Directory.GetCurrentDirectory() & "\Docs\a.doc"


Make sure you import System.IO.
Reply With Quote