The following sample code shows the Open file dialog with the correct path in 7.5 SR7 English XP. Make sure the path you specify exists.
void openFile(string mypath)
{
string strPath = GetOpenBox("*.txt", mypath);
}
void testOpenFile()
{
string strMyPath = "c:\\windows\\system";
openFile(strMyPath);
}