--URGENT-- Dialog to Select a file on server--URGENT--
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

