Erez David wrote: Hi,
I am building a Wizard using Wx::Wizard (in WxPerl...) Currently I am facing 2 main issues: 1. How do I make a dialog page E.g Wx::DirDialog or Wx::ProgressDialog to be a native part of the Wizard and not to be opened in a separate pop-up window.(I have tried the solution suggested in the Wizard Wiki with no success...)
There is no way to do it: dialogs always open in a separate top level window; in wxWidgets 2.9 you could use wxDirCtrl instead of a wxDirDialog.
2. How do I disable buttons inside the FileDialog window (E.g. the 'create new folder' button or 'show hidden files' checkbox.
There is no way to do it with the wxWidgets API. Regards, Mattia