mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
16 lines
260 B
C++
16 lines
260 B
C++
#include <CtrlLib/CtrlLib.h>
|
|
#include <TDraw/TDraw.h>
|
|
#include <Report/Report.h>
|
|
|
|
using namespace Upp;
|
|
|
|
GUI_APP_MAIN
|
|
{
|
|
String qtf;
|
|
qtf << "{{1 " << String('&', 100) << "}}";
|
|
|
|
Report r;
|
|
// r.ChooseDefaultPrinter();
|
|
r << qtf;
|
|
Perform(r);
|
|
}
|