mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
17 lines
259 B
C++
17 lines
259 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
FileSelNative sel;
|
|
|
|
sel.AllFilesType();
|
|
sel.Type("All", "*.*");
|
|
sel.Multi();
|
|
sel.NoAsking();
|
|
sel = GetDataFile("main.cpp");
|
|
|
|
if(sel.ExecuteSaveAs("save as"))
|
|
PromptOK("\1" + ~sel);
|
|
}
|