Hi. I need dialog for multiple select folders. In google i'm not found anything helpful. How can i do or find this dialog?
Announcement
Collapse
No announcement yet.
Select folders dialog with checkboxes
Collapse
X
-
The best way is to create new page using nsDialogs, NSIS does not have multiple $INSTDIRsCool looking installers with custom design: www.graphical-installer.com
Create Setup Pages easily: www.install-designer.com
Build installers in Visual Studio 2005-2022: www.visual-installer.com
or RAD Studio 2009 - 11 Alexandria: www.rad-installer.com
-
Aha, you want a listview element with checkboxes, containing folders... Hmm, I don't think I've ever seen anyone doing that before. There's this header: http://nsis.sourceforge.net/Header_file_for_Listview that might help out. But how to populate it with a nested folder view... I can't help you with that. Wait for one of the win32 gurus to jump in.
Comment
-
While it might be possible to implement a treeview or listview with checkboxes and item's from the file system, the amount of system code with be huge. You might want to consider writing a plugin or maybe rethink your options...IntOp $PostCount $PostCount + 1
Comment
-
!insertmacro MUI_PAGE_DIRECTORY ;normal directory page, uses $instdir
!define MUI_DIRECTORYPAGE_VARIABLE $YourVar
!insertmacro MUI_PAGE_DIRECTORY
Writing custom plugin is probably the best solution, but as we are in NSIS forum I suggest to write own header and use nsDialogsCool looking installers with custom design: www.graphical-installer.com
Create Setup Pages easily: www.install-designer.com
Build installers in Visual Studio 2005-2022: www.visual-installer.com
or RAD Studio 2009 - 11 Alexandria: www.rad-installer.com
Comment
Comment