mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
13 lines
195 B
C++
13 lines
195 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
FileSel sel;
|
|
sel.Type("all", "*.*");
|
|
sel.NoExeIcons();
|
|
sel.ExecuteSaveAs();
|
|
sel.NoExeIcons(false);
|
|
sel.ExecuteSaveAs();
|
|
}
|