Jul 09

I’m sure there are plenty of different ways to find the current working directory using VB.NET. I’m using Environment.CurrentDirectory. Seems to work OK.
For testing purposes I used File.Exists() from System.IO

Imports System.IO
...
MsgBox(File.Exists(Environment.CurrentDirectory & "\YourFileToInclude.rpt"))