how to edit open dialog box
-
hi all, i want to change the open dialog box that is create by MFC, how can i make the changes to the open dialog box that users ONLY can view the folders and files from the server, so that user just can open the files from that server. have a nice day :)
-
hi all, i want to change the open dialog box that is create by MFC, how can i make the changes to the open dialog box that users ONLY can view the folders and files from the server, so that user just can open the files from that server. have a nice day :)
Sorry I didnt get anything from this question
andy179394 wrote:
open dialog box
what is Open dialog box actually what is the duty of that dialog? which control u r using to show the files and folder list? SaRath
"D on't blindly follow rules you read somewhere without verifying that it makes sense for your situation!" -
hi all, i want to change the open dialog box that is create by MFC, how can i make the changes to the open dialog box that users ONLY can view the folders and files from the server, so that user just can open the files from that server. have a nice day :)
U mean CFileDialog ?? If that is the case, Check this . http://www.codeproject.com/dialog/customize_dialog.asp[^] Appu.. "If you judge people, you have no time to love them."
-
hi all, i want to change the open dialog box that is create by MFC, how can i make the changes to the open dialog box that users ONLY can view the folders and files from the server, so that user just can open the files from that server. have a nice day :)
-
hi all, i want to change the open dialog box that is create by MFC, how can i make the changes to the open dialog box that users ONLY can view the folders and files from the server, so that user just can open the files from that server. have a nice day :)
andy179394 wrote:
how can i make the changes to the open dialog box that users ONLY can view the folders and files from the server...
As opposed to what?
"The largest fire starts but with the smallest spark." - David Crow
-
andy179394 wrote:
how can i make the changes to the open dialog box that users ONLY can view the folders and files from the server...
As opposed to what?
"The largest fire starts but with the smallest spark." - David Crow
thanks for reply, what i want is when you press the open button from file menu, it will prompt a open dialog box, right. Basically that box can open the files from c or d drives, but now i want that open dialog box display the ftp server files, not the files from the drives. hope you can get my mean. thx.;) have a nice day :)
-
thanks for reply, what i want is when you press the open button from file menu, it will prompt a open dialog box, right. Basically that box can open the files from c or d drives, but now i want that open dialog box display the ftp server files, not the files from the drives. hope you can get my mean. thx.;) have a nice day :)
You can still use
CFileDialog
orGetOpenFileName()
. It will just require a starting folder. Check out theOPENFILENAME.lpstrInitialDir
member variable.
"The largest fire starts but with the smallest spark." - David Crow