"Open Directory" window
-
Hi, im quite new to Visual C++ (so please go easy on the mombo jumbo thanks). What i am looking to do is make a "open" dialog. I can easly do it with
CFileDialog ldFile(TRUE); if (ldFile.DoModal() == IDOK) { }
This brings up a normal open window. However im trying to get it to be a open directory window (like this on http://img121.exs.cx/img121/446/open8js.jpg[^]) Any ideas on how to do this? Thanks Cult -
Hi, im quite new to Visual C++ (so please go easy on the mombo jumbo thanks). What i am looking to do is make a "open" dialog. I can easly do it with
CFileDialog ldFile(TRUE); if (ldFile.DoModal() == IDOK) { }
This brings up a normal open window. However im trying to get it to be a open directory window (like this on http://img121.exs.cx/img121/446/open8js.jpg[^]) Any ideas on how to do this? Thanks CultWhile it can be done with
CFileDialog
, I think you might want to look atSHBrowseForFolder()
first.
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
-
While it can be done with
CFileDialog
, I think you might want to look atSHBrowseForFolder()
first.
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow