--URGENT-- Dialog to Select a file on server--URGENT--

Hi All,
I want to select a file on the server by means of some dialog..
So my path looks like -- http:\\myserver\mydocs\mytextfile.txt
bu using a CDialog like

CFileDialog FileDlg(TRUE, ".txt", NULL, OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilter);

if(IDOK == FileDlg.DoModal())
{
strSourceFilePath = FileDlg.GetPathName();
}
allows me to go and select such a path but I am got getting the path (http:\\myserver\mydocs\mytextfile.txt ) to the .txt file that I selected.

Is it that this dialog does not allow to select a file on server?
Please help me out.,
Thanks...
vmalve
[642 byte] By [vmalve] at [2007-11-17 22:39:06]
# 1 Re: --URGENT-- Dialog to Select a file on server--URGENT--
..moved to Visual C++ forum...
Yves M at 2007-11-10 8:41:39 >