JMP App(Set Name("Building Dashboards"), Set Description("Description"), Auto Launch(1), Snap To Grid(1), Show Grid(1), Show Properties(1), Show Sources(0), Group By Category(1), Dashboard Mode(0), Parameters, Tables, Script(JSL Quote(// This script is executed first when the application runs. // We look for the demo files in a known location and query the // user if they are not found. )), Allocate(Module1 = Plan(PreAllocate, Script(JSL Quote(// This script is executed when a new module instance is // created. The pre-defined object "thisModuleInstance" refers // to the instance object, but other objects such as boxes and // scripts have not yet been created. Variables declared here are // scoped to the ModuleInstance namespace. // This special function will receive parameters passed to CreateInstance() OnModuleLoad( {}, ); thisModuleInstance << Create Objects; dtld = Open( "$SAMPLE_DATA/San Francisco Crime.jmp" ); // After this point your module instance objects have been created // and can be referred to by name (for example, "Button1"). BackButtonPress = Function( {this}, // This function is called when the button is pressed curIndex = TabSlides << Get Selected; If( curIndex == 1, TabSlides << Set Selected( TabSlides << Get Tab Count ), 1, TabSlides << Set Selected( curIndex - 1 ) ); ); FwdButtonPress = Function( {this}, // This function is called when the button is pressed curIndex = TabSlides << Get Selected; If( curIndex == (TabSlides << Get Tab Count), TabSlides << Set Selected( 1 ), 1, TabSlides << Set Selected( curIndex + 1 ) ); ); Launch Combine = Function( {this}, dtld << Run Script( "Graph Builder Street Map" ); dtld << Graph Builder( Size( 327, 580 ), Show Control Panel( 0 ), Show Legend( 0 ), Variables( Y( :Category, Order By( Transform Column( "Count", Formula( Col Number( :Category, :Category ) ) ), Ascending, Order Statistic( "Mean" ) ) ) ), Elements( Bar( Y, Legend( 3 ), Label( "Label by Value" ) ) ) ) ); Launch Combine 2 = Function( {this}, dtld << Run Script( "Graph Builder Street Map" ); dtld << Graph Builder( Size( 327, 580 ), Show Control Panel( 0 ), Show Legend( 0 ), Variables( Y( :Category ) ), Elements( Bar( Y, Legend( 3 ), Label( "Label by Value" ) ) ) ) ); Launch Filter Report = Function( {this}, dtld << Graph Builder( Size( 313, 293 ), Show Control Panel( 0 ), Show Legend( 0 ), Fit to Window( "Off" ), Variables( X( :Time ), Y( :Police District ) ), Elements( Heatmap( X, Y, Legend( 4 ) ) ), Report View( "Summary" ), SendToReport( Dispatch( {}, "Graph Builder", OutlineBox, {Set Title( "Filter" )} ), Dispatch( {}, "Police District", ScaleBox, {Label Row( Show Major Ticks( 0 ) )} ), Dispatch( {}, "400", ScaleBox, {Legend Model( 4, Properties( 0, {gradient( {Color Theme( "White to Red" ), Width( 12 )} )} ) )} ) ) ) ); Launch Summary = Function( {this}, dtld << Contingency( Y( :Traffic Incident ), X( :Day of Week ), Contingency Table ); dtld << Oneway( Y( :Time ), X( :Police District ), Wilcoxon Test( 1 ), Robust Fit( 1 ), Points( 0 ), Box Plots( 1 ), Comparison Circles( 1 ), Robust Means Lines( 1 ), SendToReport( Dispatch( {}, "Oneway Plot", FrameBox, {DispatchSeg( Box Plot Seg( 1 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 2 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 3 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 4 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 5 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 6 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 7 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 8 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 9 ), {Box Type( "Outlier" ), Line Color( "Red" )} ), DispatchSeg( Box Plot Seg( 10 ), {Box Type( "Outlier" ), Line Color( "Red" )} )} ) ) ); ); Launch Query = Function( {this}, New SQL Query( Version( 130 ), Connection( "JMP" ), JMP Tables( ["San Francisco Crime" => "$SAMPLE_DATA\San Francisco Crime.jmp"] ), QueryName( "SQLQuery1" ), Select( Column( "Incident Number", "t1" ), Column( "Date", "t1", Numeric Format( "m/d/y", "-1", "NO", "" ) ), Column( "Time", "t1", Numeric Format( "h:m", "-1", "NO", "" ) ), Column( "Day of Week", "t1" ), Column( "Category", "t1" ), Column( "Incident Description", "t1" ), Column( "Traffic Incident", "t1" ), Column( "Resolution", "t1" ), Column( "Police District", "t1" ), Column( "Incident Address", "t1" ), Column( "Longitude", "t1", Numeric Format( "Longitude DDD", "0", "NO", "" ) ), Column( "Latitude", "t1", Numeric Format( "Latitude DDD", "0", "NO", "" ) ), Column( "Descript 2", "t1" ), Column( "Traffic Problem Recode", "t1" ), Column( "Date Time", "t1" ), Column( "Location", "t1" ) ), From( Table( "San Francisco Crime", Alias( "t1" ) ) ), Where( In List( Column( "Police District", "t1" ), {"PARK"}, UI( SelectListFilter( ListBox, Base( "Categorical" ) ) ) ) ) ) << Run ); Launch Wrap Report = Function( {this}, dtld << Graph Builder( Size( 699, 604 ), Show Control Panel( 0 ), Variables( X( :Longitude ), Y( :Latitude ), Wrap( :Police District ) ), Elements( Points( X, Y, Legend( 3 ) ) ), SendToReport( Dispatch( {}, "Longitude", ScaleBox, {Min( -122.517580504708 ), Max( -122.349537628122 ), Inc( 0.01 ), Minor Ticks( 1 )} ), Dispatch( {}, "Latitude", ScaleBox, {Min( 37.632322940153 ), Max( 37.906498159846 ), Inc( 0.01 ), Minor Ticks( 1 )} ), Dispatch( {}, "Graph Builder", FrameBox, {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 2 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 3 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 4 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 5 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 6 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 7 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 8 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 9 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 10 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 11 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 12 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ) ) ) ); Launch Crime Custom Modules = Function( {this}, Eval(customApp) << Edit; ); Open Dash Script = Function( {this}, New Window( "Docking JSL", < "$SAMPLE_DATA\San Francisco Crime.jmp" ] ), QueryName( "SQLQuery1" ), Select( Column( "Incident Number", "t1" ), Column( "Date", "t1", Numeric Format( "m/d/y", "-1", "NO", "" ) ), Column( "Time", "t1", Numeric Format( "h:m", "-1", "NO", "" ) ), Column( "Day of Week", "t1" ), Column( "Category", "t1" ), Column( "Incident Description", "t1" ), Column( "Traffic Incident", "t1" ), Column( "Resolution", "t1" ), Column( "Police District", "t1" ), Column( "Incident Address", "t1" ), Column( "Longitude", "t1", Numeric Format( "Longitude DDD", "0", "NO", "" ) ), Column( "Latitude", "t1", Numeric Format( "Latitude DDD", "0", "NO", "" ) ), Column( "Descript 2", "t1" ), Column( "Traffic Problem Recode", "t1" ), Column( "Date Time", "t1" ), Column( "Location", "t1" ) ), From( Table( "San Francisco Crime", Alias( "t1" ) ) ), Where( In List( Column( "Police District", "t1" ), {"PARK"}, UI( SelectListFilter( ListBox, Base( "Categorical" ) ) ) ) ) ) << Run Foreground ) ) ), Script(JSL Quote(// This script is executed when the application is run. // Named objects have been created for the application modules // (for example, "Module1") and the pre-defined object // "thisApplication" refers to the application object itself. // Variables and functions declared here are scoped to the // Application namespace. ) ), Allocate( Module1 = Plan( PreAllocate, Script(JSL Quote( thisModuleInstance << Create Objects; Try(MainTabPage << Set Scriptable Object(thisApplication)); ) ), Allocate( MainTabPage = Tab Page Box(); TabPage1 = Tab Page Box(); Scroll1 = Scroll Box(); Report1 = Platform( DataTable1, Bubble Plot( X( :Longitude ), Y( :Latitude ), Coloring( :Category ), Show Roles( 1 ), Title Position( 0, 0 ), SendToReport( Dispatch( {}, "1", ScaleBox, {Scale( "Geodesic" ), Format( "Longitude DDD", "PUNDIR", 12, 2 ), Min( -122.51818649739 ), Max( -122.348945001715 ), Inc( 0.01 ), Minor Ticks( 1 )} ), Dispatch( {}, "2", ScaleBox, {Scale( "Geodesic" ), Format( "Latitude DDD", "PUNDIR", 12, 2 ), Min( 37.7038576464158 ), Max( 37.8329289816388 ), Inc( 0.005 ), Minor Ticks( 1 )} ), Dispatch( {}, "Bubble Plot", FrameBox, {Frame Size( 771, 588 ), Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ) ) ) ); ), Organize( Reparent( Scroll1( Report1 ) ); Reparent( TabPage1( Scroll1 ) ); Reparent( MainTabPage( TabPage1 ) ); Relocate( MainTabPage( 0, 0 ) ); ), Initialize( MainTabPage << Background Color( 2147483647 ); MainTabPage << Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); MainTabPage << Enabled( 1 ); MainTabPage << Horizontal Alignment( "Default" ); MainTabPage << Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); MainTabPage << Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); MainTabPage << Text Color( 2147483647 ); MainTabPage << Vertical Alignment( "Default" ); MainTabPage << Visibility( "Visible" ); MainTabPage << Title( "Dashboard" ); MainTabPage << Tip( "" ); MainTabPage << Icon( "" ); MainTabPage << Closeable( 0 ); MainTabPage << Moveable( 0 ); TabPage1 << Background Color( 2147483647 ); TabPage1 << Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); TabPage1 << Enabled( 1 ); TabPage1 << Horizontal Alignment( "Default" ); TabPage1 << Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); TabPage1 << Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); TabPage1 << Text Color( 2147483647 ); TabPage1 << Vertical Alignment( "Default" ); TabPage1 << Visibility( "Visible" ); TabPage1 << Title( "Bubble Plot of Latitude by Longitude" ); TabPage1 << Tip( "" ); TabPage1 << Icon( "BubblePlot" ); TabPage1 << Closeable( 1 ); TabPage1 << Moveable( 1 ); Scroll1 << Background Color( 2147483647 ); Scroll1 << Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Scroll1 << Enabled( 1 ); Scroll1 << Horizontal Alignment( "Default" ); Scroll1 << Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Scroll1 << Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Scroll1 << Text Color( 2147483647 ); Scroll1 << User Resizable( {1, 1} ); Scroll1 << Vertical Alignment( "Default" ); Scroll1 << Visibility( "Visible" ); Scroll1 << Width( 1094 ); Scroll1 << Height( 698 ); Scroll1 << Set Auto Scrollable( 1 ); Scroll1 << Set Scrollers( 0, 0 ); Scroll1 << Set Show Empty( 0 ); Scroll1 << Set Clip Printing( 0 ); Scroll1 << Set Min Size( 548, 436 ); Scroll1 << Set Max Size( 30323, 30110 ); Scroll1 << Set Auto Stretching( 1, 1 ); Report1 << Background Color( 2147483647 ); Report1 << Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Report1 << Enabled( 1 ); Report1 << Horizontal Alignment( "Default" ); Report1 << Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Report1 << Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Report1 << Text Color( 2147483647 ); Report1 << Vertical Alignment( "Default" ); Report1 << Visibility( "Visible" ); Report1 << set horizontal( 0 ); ) ) ), Initialize( Module1 << Auto Launch( 1 ); Module1 << Set Module Type( "Report" ); Module1 << Set Window Title( "^TABLENAME - ^APPNAME" ); Module1 << Set Min Size( 0, 0 ); Module1 << Set Max Size( 30000, 30000 ); Module1 << Set Auto Stretching( ., . ); ) ) << Run; ); Launch Example CrimeCustom = Function( {this}, Eval(customApp) << Run; ); customApp = Expr(JMP App( Set Name( "Application" ), Set Description( "An empty workspace for creating custom applications with one or more windows and scripts" ), Auto Launch( 0 ), Snap To Grid( 1 ), Show Grid( 1 ), Show Properties( 1 ), Show Sources( 1 ), Group By Category( 1 ), Dashboard Mode( 0 ), Parameters( {"wrapVar", "Wrap", 0, 99, "Unknown", "NoConstraint"} ), Tables( DataTable1 = GuiTable( Set Path( "$SAMPLE_DATA/San Francisco Crime.jmp" ), Set Label( "San Francisco Crime" ), Set Location( "Current Data Table" ), Set Invisible( 1 ) ) ), Script(JSL Quote(// This script is executed when the application is run. // Named objects have been created for the application modules // (for example, "Module1") and the pre-defined object // "thisApplication" refers to the application object itself. // Variables and functions declared here are scoped to the // Application namespace. ) ), Allocate( GraphModule = Plan( PreAllocate( wrapVar = {:Police District} ), Script(JSL Quote(// This script is executed when a new module instance is // created. The pre-defined object "thisModuleInstance" refers // to the instance object, but other objects such as boxes and // scripts have not yet been created. Variables declared here are // scoped to the ModuleInstance namespace. // This special function will receive parameters passed to CreateInstance() OnModuleLoad({list}, wrapVar = Column(list[1]); ); thisModuleInstance << Create Objects; // After this point your module instance objects have been created // and can be referred to by name (for example, "Button1"). ) ), Allocate( Report1 = Platform( DataTable1, Graph Builder( Size( 699, 604 ), Show Control Panel( 0 ), Fit to Window( "Maintain Aspect Ratio" ), Variables( X( :Longitude ), Y( :Latitude ), Wrap( Eval( wrapVar ) ) ), Elements( Points( X, Y, Legend( 3 ) ) ), SendToReport( Dispatch( {}, "Longitude", ScaleBox, {Min( -122.517580504708 ), Max( -122.349537628122 ), Inc( 0.01 ), Minor Ticks( 1 )} ), Dispatch( {}, "Latitude", ScaleBox, {Min( 37.7247614765105 ), Max( 37.8140596234885 ), Inc( 0.01 ), Minor Ticks( 1 )} ), Dispatch( {}, "Graph Builder", FrameBox, {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 2 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 3 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 4 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 5 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 6 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 7 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 8 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 9 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 10 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 11 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ), Dispatch( {}, "Graph Builder", FrameBox( 12 ), {Background Map( Images( "Street Map Service" ) ), Grid Line Order( 2 ), Reference Line Order( 3 )} ) ) ) ) ), Organize( Relocate( Report1( 0, 0 ) ) ), Initialize( Report1 << Background Color( 2147483647 ); Report1 << Border( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Report1 << Enabled( 1 ); Report1 << Horizontal Alignment( "Default" ); Report1 << Margin( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Report1 << Padding( {Left( 0 ), Top( 0 ), Right( 0 ), Bottom( 0 )} ); Report1 << Text Color( 2147483647 ); Report1 << Vertical Alignment( "Default" ); Report1 << Visibility( "Visible" ); Report1 << set horizontal( 0 ); ) ); Launcher = Plan( PreAllocate, Script(JSL Quote(// This script is executed when a new module instance is // created. The pre-defined object "thisModuleInstance" refers // to the instance object, but other objects such as boxes and // scripts have not yet been created. Variables declared here are // scoped to the ModuleInstance namespace. // This special function will receive parameters passed to CreateInstance() OnModuleLoad({}, ); thisModuleInstance << Create Objects; // After this point your module instance objects have been created // and can be referred to by name (for example, "Button1"). Button1Press=Function({this}, list=ColList1< New > Dashboard creates a new Dashboard"); Text279 << Bullet point(1); Text279 << Font Color(0); Text279 << Justify Text("Left"); Text279 << Rotate Text("Horizontal"); Text279 << Set Width(680); Text279 << Set Wrap(664); Text279 << Set Tip(""); Text279 << Set Min Size(55, 34); Text279 << Set Max Size(2000, 34); Text279 << Set Auto Stretching(1, 0); TabPage16 << Background Color(2147483647); TabPage16 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage16 << Enabled(1); TabPage16 << Horizontal Alignment("Default"); TabPage16 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage16 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage16 << Text Color(2147483647); TabPage16 << Vertical Alignment("Default"); TabPage16 << Visibility("Visible"); TabPage16 << Title("DashBuilder"); TabPage16 << Tip(""); TabPage16 << Icon(""); TabPage16 << Closeable(0); TabPage16 << Moveable(0); List212 << Background Color(2147483647); List212 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List212 << Enabled(1); List212 << Horizontal Alignment("Left"); List212 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List212 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List212 << Text Color(2147483647); List212 << Vertical Alignment("Top"); List212 << Visibility("Visible"); List212 << set horizontal(0); Scroll18 << Background Color(2); Scroll18 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll18 << Enabled(1); Scroll18 << Horizontal Alignment("Left"); Scroll18 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll18 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll18 << Text Color(2147483647); Scroll18 << User Resizable({1, 1}); Scroll18 << Vertical Alignment("Top"); Scroll18 << Visibility("Visible"); Scroll18 << Width(827); Scroll18 << Height(600); Scroll18 << Set Auto Scrollable(0); Scroll18 << Set Scrollers(0, 1); Scroll18 << Set Show Empty(1); Scroll18 << Set Clip Printing(0); Scroll18 << Set Min Size(827, 36); Scroll18 << Set Max Size(30057, 30000); Scroll18 << Set Auto Stretching(1, 1); List213 << Background Color(2147483647); List213 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List213 << Enabled(1); List213 << Horizontal Alignment("Left"); List213 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List213 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List213 << Text Color(2147483647); List213 << Vertical Alignment("Top"); List213 << Visibility("Visible"); List213 << set horizontal(0); Spacer156 << Background Color(2147483647); Spacer156 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer156 << Enabled(1); Spacer156 << Horizontal Alignment("Left"); Spacer156 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer156 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer156 << Text Color(2147483647); Spacer156 << Vertical Alignment("Top"); Spacer156 << Visibility("Visible"); Spacer156 << Width(770); Spacer156 << Height(5); Spacer156 << Color(2147483647); Spacer156 << Set Fill(0); Spacer156 << Set Min Size(0, 0); Spacer156 << Set Max Size(30000, 30000); Spacer156 << Set Auto Stretching(1, 1); Text245 << Background Color(2147483647); Text245 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text245 << Enabled(1); Text245 << Horizontal Alignment("Center"); Text245 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text245 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text245 << Text Color(2147483647); Text245 << Vertical Alignment("Top"); Text245 << Visibility("Visible"); Text245 << Set Base Font("Text"); Text245 << Set Font Name("Arial"); Text245 << Set Font Style("Bold"); Text245 << Set Font Size(36); Text245 << Set Font Scale(1); Text245 << Set Text("Dashboard Builder"); Text245 << Bullet point(0); Text245 << Font Color(0); Text245 << Justify Text("Left"); Text245 << Rotate Text("Horizontal"); Text245 << Set Width(-1); Text245 << Set Wrap(1000); Text245 << Set Tip(""); Text245 << Set Min Size(431, 56); Text245 << Set Max Size(431, 56); Text245 << Set Auto Stretching(0, 0); Spacer157 << Background Color(2147483647); Spacer157 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer157 << Enabled(1); Spacer157 << Horizontal Alignment("Left"); Spacer157 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer157 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer157 << Text Color(2147483647); Spacer157 << Vertical Alignment("Top"); Spacer157 << Visibility("Visible"); Spacer157 << Width(770); Spacer157 << Height(40); Spacer157 << Color(2147483647); Spacer157 << Set Fill(0); Spacer157 << Set Min Size(0, 0); Spacer157 << Set Max Size(30000, 30000); Spacer157 << Set Auto Stretching(1, 1); Picture9 << Background Color(2147483647); Picture9 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture9 << Enabled(1); Picture9 << Horizontal Alignment("Center"); Picture9 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture9 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture9 << Text Color(2147483647); Picture9 << User Resizable({1, 1}); Picture9 << Vertical Alignment("Default"); Picture9 << Visibility("Visible"); Picture9 << Set Image(Picture9Image); Picture9 << Set Width(770); Picture9 << Set Height(470); Picture9 << Set Min Size(770, 470); Picture9 << Set Max Size(770, 470); Picture9 << Set Auto Stretching(0, 0); TabPage17 << Background Color(2147483647); TabPage17 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage17 << Enabled(1); TabPage17 << Horizontal Alignment("Default"); TabPage17 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage17 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage17 << Text Color(2147483647); TabPage17 << Vertical Alignment("Default"); TabPage17 << Visibility("Visible"); TabPage17 << Title("DashBuilder"); TabPage17 << Tip(""); TabPage17 << Icon(""); TabPage17 << Closeable(0); TabPage17 << Moveable(0); List216 << Background Color(2147483647); List216 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List216 << Enabled(1); List216 << Horizontal Alignment("Left"); List216 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List216 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List216 << Text Color(2147483647); List216 << Vertical Alignment("Top"); List216 << Visibility("Visible"); List216 << set horizontal(0); Scroll19 << Background Color(2); Scroll19 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll19 << Enabled(1); Scroll19 << Horizontal Alignment("Left"); Scroll19 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll19 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll19 << Text Color(2147483647); Scroll19 << User Resizable({1, 1}); Scroll19 << Vertical Alignment("Top"); Scroll19 << Visibility("Visible"); Scroll19 << Width(867); Scroll19 << Height(600); Scroll19 << Set Auto Scrollable(0); Scroll19 << Set Scrollers(0, 1); Scroll19 << Set Show Empty(1); Scroll19 << Set Clip Printing(0); Scroll19 << Set Min Size(867, 36); Scroll19 << Set Max Size(30057, 30000); Scroll19 << Set Auto Stretching(1, 1); List217 << Background Color(2147483647); List217 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List217 << Enabled(1); List217 << Horizontal Alignment("Left"); List217 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List217 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List217 << Text Color(2147483647); List217 << Vertical Alignment("Top"); List217 << Visibility("Visible"); List217 << set horizontal(0); Spacer158 << Background Color(2147483647); Spacer158 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer158 << Enabled(1); Spacer158 << Horizontal Alignment("Left"); Spacer158 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer158 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer158 << Text Color(2147483647); Spacer158 << Vertical Alignment("Top"); Spacer158 << Visibility("Visible"); Spacer158 << Width(810); Spacer158 << Height(5); Spacer158 << Color(2147483647); Spacer158 << Set Fill(0); Spacer158 << Set Min Size(0, 0); Spacer158 << Set Max Size(30000, 30000); Spacer158 << Set Auto Stretching(1, 1); Text247 << Background Color(2147483647); Text247 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text247 << Enabled(1); Text247 << Horizontal Alignment("Center"); Text247 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text247 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text247 << Text Color(2147483647); Text247 << Vertical Alignment("Top"); Text247 << Visibility("Visible"); Text247 << Set Base Font("Text"); Text247 << Set Font Name("Arial"); Text247 << Set Font Style("Bold"); Text247 << Set Font Size(36); Text247 << Set Font Scale(1); Text247 << Set Text("Dashboard Builder"); Text247 << Bullet point(0); Text247 << Font Color(0); Text247 << Justify Text("Left"); Text247 << Rotate Text("Horizontal"); Text247 << Set Width(-1); Text247 << Set Wrap(1000); Text247 << Set Tip(""); Text247 << Set Min Size(431, 56); Text247 << Set Max Size(431, 56); Text247 << Set Auto Stretching(0, 0); Spacer159 << Background Color(2147483647); Spacer159 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer159 << Enabled(1); Spacer159 << Horizontal Alignment("Left"); Spacer159 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer159 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer159 << Text Color(2147483647); Spacer159 << Vertical Alignment("Top"); Spacer159 << Visibility("Visible"); Spacer159 << Width(810); Spacer159 << Height(40); Spacer159 << Color(2147483647); Spacer159 << Set Fill(0); Spacer159 << Set Min Size(0, 0); Spacer159 << Set Max Size(30000, 30000); Spacer159 << Set Auto Stretching(1, 1); List218 << Background Color(2147483647); List218 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List218 << Enabled(1); List218 << Horizontal Alignment("Center"); List218 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List218 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List218 << Text Color(2147483647); List218 << Vertical Alignment("Default"); List218 << Visibility("Visible"); List218 << set horizontal(1); List219 << Background Color(2147483647); List219 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List219 << Enabled(1); List219 << Horizontal Alignment("Default"); List219 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List219 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List219 << Text Color(2147483647); List219 << Vertical Alignment("Default"); List219 << Visibility("Visible"); List219 << set horizontal(0); Picture10 << Background Color(2147483647); Picture10 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture10 << Enabled(1); Picture10 << Horizontal Alignment("Center"); Picture10 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture10 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture10 << Text Color(2147483647); Picture10 << User Resizable({1, 1}); Picture10 << Vertical Alignment("Default"); Picture10 << Visibility("Visible"); Picture10 << Set Image(Picture10Image); Picture10 << Set Width(770); Picture10 << Set Height(450); Picture10 << Set Min Size(770, 450); Picture10 << Set Max Size(770, 450); Picture10 << Set Auto Stretching(0, 0); TabPage18 << Background Color(2147483647); TabPage18 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage18 << Enabled(1); TabPage18 << Horizontal Alignment("Default"); TabPage18 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage18 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage18 << Text Color(2147483647); TabPage18 << Vertical Alignment("Default"); TabPage18 << Visibility("Visible"); TabPage18 << Title("FileSave"); TabPage18 << Tip(""); TabPage18 << Icon(""); TabPage18 << Closeable(0); TabPage18 << Moveable(0); List220 << Background Color(2147483647); List220 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List220 << Enabled(1); List220 << Horizontal Alignment("Left"); List220 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List220 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List220 << Text Color(2147483647); List220 << Vertical Alignment("Top"); List220 << Visibility("Visible"); List220 << set horizontal(0); Scroll20 << Background Color(2); Scroll20 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll20 << Enabled(1); Scroll20 << Horizontal Alignment("Left"); Scroll20 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll20 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll20 << Text Color(2147483647); Scroll20 << User Resizable({1, 1}); Scroll20 << Vertical Alignment("Top"); Scroll20 << Visibility("Visible"); Scroll20 << Width(881); Scroll20 << Height(600); Scroll20 << Set Auto Scrollable(0); Scroll20 << Set Scrollers(0, 1); Scroll20 << Set Show Empty(1); Scroll20 << Set Clip Printing(0); Scroll20 << Set Min Size(733, 36); Scroll20 << Set Max Size(30057, 30000); Scroll20 << Set Auto Stretching(1, 1); List221 << Background Color(2147483647); List221 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List221 << Enabled(1); List221 << Horizontal Alignment("Left"); List221 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List221 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List221 << Text Color(2147483647); List221 << Vertical Alignment("Top"); List221 << Visibility("Visible"); List221 << set horizontal(0); Spacer160 << Background Color(2147483647); Spacer160 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer160 << Enabled(1); Spacer160 << Horizontal Alignment("Left"); Spacer160 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer160 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer160 << Text Color(2147483647); Spacer160 << Vertical Alignment("Top"); Spacer160 << Visibility("Visible"); Spacer160 << Width(824); Spacer160 << Height(5); Spacer160 << Color(2147483647); Spacer160 << Set Fill(0); Spacer160 << Set Min Size(0, 0); Spacer160 << Set Max Size(30000, 30000); Spacer160 << Set Auto Stretching(1, 1); Text249 << Background Color(2147483647); Text249 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text249 << Enabled(1); Text249 << Horizontal Alignment("Center"); Text249 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text249 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text249 << Text Color(2147483647); Text249 << Vertical Alignment("Top"); Text249 << Visibility("Visible"); Text249 << Set Base Font("Text"); Text249 << Set Font Name("Arial"); Text249 << Set Font Style("Bold"); Text249 << Set Font Size(36); Text249 << Set Font Scale(1); Text249 << Set Text("Dashboard / Application Files"); Text249 << Bullet point(0); Text249 << Font Color(0); Text249 << Justify Text("Left"); Text249 << Rotate Text("Horizontal"); Text249 << Set Width(-1); Text249 << Set Wrap(1000); Text249 << Set Tip(""); Text249 << Set Min Size(676, 56); Text249 << Set Max Size(676, 56); Text249 << Set Auto Stretching(0, 0); Spacer161 << Background Color(2147483647); Spacer161 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer161 << Enabled(1); Spacer161 << Horizontal Alignment("Left"); Spacer161 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer161 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer161 << Text Color(2147483647); Spacer161 << Vertical Alignment("Top"); Spacer161 << Visibility("Visible"); Spacer161 << Width(824); Spacer161 << Height(40); Spacer161 << Color(2147483647); Spacer161 << Set Fill(0); Spacer161 << Set Min Size(0, 0); Spacer161 << Set Max Size(30000, 30000); Spacer161 << Set Auto Stretching(1, 1); List222 << Background Color(2147483647); List222 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List222 << Enabled(1); List222 << Horizontal Alignment("Default"); List222 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List222 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List222 << Text Color(2147483647); List222 << Vertical Alignment("Default"); List222 << Visibility("Visible"); List222 << set horizontal(1); List223 << Background Color(2147483647); List223 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List223 << Enabled(1); List223 << Horizontal Alignment("Default"); List223 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List223 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List223 << Text Color(2147483647); List223 << Vertical Alignment("Default"); List223 << Visibility("Visible"); List223 << set horizontal(0); Text250 << Background Color(2147483647); Text250 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text250 << Enabled(1); Text250 << Horizontal Alignment("Left"); Text250 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text250 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text250 << Text Color(2147483647); Text250 << Vertical Alignment("Top"); Text250 << Visibility("Visible"); Text250 << Set Base Font("Text"); Text250 << Set Font Name("Arial"); Text250 << Set Font Style("Plain"); Text250 << Set Font Size(22); Text250 << Set Font Scale(1); Text250 << Set Text(".jmpappsource"); Text250 << Bullet point(1); Text250 << Font Color(0); Text250 << Justify Text("Left"); Text250 << Rotate Text("Horizontal"); Text250 << Set Width(680); Text250 << Set Wrap(768); Text250 << Set Tip(""); Text250 << Set Min Size(55, 34); Text250 << Set Max Size(2000, 34); Text250 << Set Auto Stretching(1, 0); List270 << Background Color(2147483647); List270 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List270 << Enabled(1); List270 << Horizontal Alignment("Default"); List270 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List270 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List270 << Text Color(2147483647); List270 << Vertical Alignment("Default"); List270 << Visibility("Visible"); List270 << set horizontal(1); Spacer186 << Background Color(2147483647); Spacer186 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer186 << Enabled(1); Spacer186 << Horizontal Alignment("Left"); Spacer186 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer186 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer186 << Text Color(2147483647); Spacer186 << Vertical Alignment("Top"); Spacer186 << Visibility("Visible"); Spacer186 << Width(20); Spacer186 << Height(28); Spacer186 << Color(2147483647); Spacer186 << Set Fill(0); Spacer186 << Set Min Size(0, 0); Spacer186 << Set Max Size(30000, 30000); Spacer186 << Set Auto Stretching(0, 1); Text280 << Background Color(2147483647); Text280 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text280 << Enabled(1); Text280 << Horizontal Alignment("Left"); Text280 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text280 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text280 << Text Color(2147483647); Text280 << Vertical Alignment("Top"); Text280 << Visibility("Visible"); Text280 << Set Base Font("Text"); Text280 << Set Font Name("Arial"); Text280 << Set Font Style("Plain"); Text280 << Set Font Size(18); Text280 << Set Font Scale(1); Text280 << Set Text("Native format produced by File > Save"); Text280 << Bullet point(1); Text280 << Font Color(0); Text280 << Justify Text("Left"); Text280 << Rotate Text("Horizontal"); Text280 << Set Width(680); Text280 << Set Wrap(710); Text280 << Set Tip(""); Text280 << Set Min Size(55, 28); Text280 << Set Max Size(2000, 28); Text280 << Set Auto Stretching(1, 0); List271 << Background Color(2147483647); List271 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List271 << Enabled(1); List271 << Horizontal Alignment("Default"); List271 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List271 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List271 << Text Color(2147483647); List271 << Vertical Alignment("Default"); List271 << Visibility("Visible"); List271 << set horizontal(1); Spacer187 << Background Color(2147483647); Spacer187 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer187 << Enabled(1); Spacer187 << Horizontal Alignment("Left"); Spacer187 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer187 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer187 << Text Color(2147483647); Spacer187 << Vertical Alignment("Top"); Spacer187 << Visibility("Visible"); Spacer187 << Width(20); Spacer187 << Height(28); Spacer187 << Color(2147483647); Spacer187 << Set Fill(0); Spacer187 << Set Min Size(0, 0); Spacer187 << Set Max Size(30000, 30000); Spacer187 << Set Auto Stretching(0, 1); Text282 << Background Color(2147483647); Text282 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text282 << Enabled(1); Text282 << Horizontal Alignment("Left"); Text282 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text282 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text282 << Text Color(2147483647); Text282 << Vertical Alignment("Top"); Text282 << Visibility("Visible"); Text282 << Set Base Font("Text"); Text282 << Set Font Name("Arial"); Text282 << Set Font Style("Plain"); Text282 << Set Font Size(18); Text282 << Set Font Scale(1); Text282 << Set Text("Opens to the editor view"); Text282 << Bullet point(1); Text282 << Font Color(0); Text282 << Justify Text("Left"); Text282 << Rotate Text("Horizontal"); Text282 << Set Width(680); Text282 << Set Wrap(710); Text282 << Set Tip(""); Text282 << Set Min Size(55, 28); Text282 << Set Max Size(2000, 28); Text282 << Set Auto Stretching(1, 0); Spacer210 << Background Color(2147483647); Spacer210 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer210 << Enabled(1); Spacer210 << Horizontal Alignment("Left"); Spacer210 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer210 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer210 << Text Color(2147483647); Spacer210 << Vertical Alignment("Top"); Spacer210 << Visibility("Visible"); Spacer210 << Width(10); Spacer210 << Height(10); Spacer210 << Color(2147483647); Spacer210 << Set Fill(0); Spacer210 << Set Min Size(0, 0); Spacer210 << Set Max Size(30000, 30000); Spacer210 << Set Auto Stretching(0, 0); Text284 << Background Color(2147483647); Text284 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text284 << Enabled(1); Text284 << Horizontal Alignment("Left"); Text284 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text284 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text284 << Text Color(2147483647); Text284 << Vertical Alignment("Top"); Text284 << Visibility("Visible"); Text284 << Set Base Font("Text"); Text284 << Set Font Name("Arial"); Text284 << Set Font Style("Plain"); Text284 << Set Font Size(22); Text284 << Set Font Scale(1); Text284 << Set Text(".jmpapp"); Text284 << Bullet point(1); Text284 << Font Color(0); Text284 << Justify Text("Left"); Text284 << Rotate Text("Horizontal"); Text284 << Set Width(680); Text284 << Set Wrap(768); Text284 << Set Tip(""); Text284 << Set Min Size(55, 34); Text284 << Set Max Size(2000, 34); Text284 << Set Auto Stretching(1, 0); List272 << Background Color(2147483647); List272 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List272 << Enabled(1); List272 << Horizontal Alignment("Default"); List272 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List272 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List272 << Text Color(2147483647); List272 << Vertical Alignment("Default"); List272 << Visibility("Visible"); List272 << set horizontal(1); Spacer188 << Background Color(2147483647); Spacer188 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer188 << Enabled(1); Spacer188 << Horizontal Alignment("Left"); Spacer188 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer188 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer188 << Text Color(2147483647); Spacer188 << Vertical Alignment("Top"); Spacer188 << Visibility("Visible"); Spacer188 << Width(20); Spacer188 << Height(28); Spacer188 << Color(2147483647); Spacer188 << Set Fill(0); Spacer188 << Set Min Size(0, 0); Spacer188 << Set Max Size(30000, 30000); Spacer188 << Set Auto Stretching(0, 1); Text283 << Background Color(2147483647); Text283 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text283 << Enabled(1); Text283 << Horizontal Alignment("Left"); Text283 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text283 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text283 << Text Color(2147483647); Text283 << Vertical Alignment("Top"); Text283 << Visibility("Visible"); Text283 << Set Base Font("Text"); Text283 << Set Font Name("Arial"); Text283 << Set Font Style("Plain"); Text283 << Set Font Size(18); Text283 << Set Font Scale(1); Text283 << Set Text("Produced by File > Save As (Windows)"); Text283 << Bullet point(1); Text283 << Font Color(0); Text283 << Justify Text("Left"); Text283 << Rotate Text("Horizontal"); Text283 << Set Width(680); Text283 << Set Wrap(710); Text283 << Set Tip(""); Text283 << Set Min Size(55, 28); Text283 << Set Max Size(2000, 28); Text283 << Set Auto Stretching(1, 0); List273 << Background Color(2147483647); List273 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List273 << Enabled(1); List273 << Horizontal Alignment("Default"); List273 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List273 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List273 << Text Color(2147483647); List273 << Vertical Alignment("Default"); List273 << Visibility("Visible"); List273 << set horizontal(1); Spacer189 << Background Color(2147483647); Spacer189 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer189 << Enabled(1); Spacer189 << Horizontal Alignment("Left"); Spacer189 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer189 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer189 << Text Color(2147483647); Spacer189 << Vertical Alignment("Top"); Spacer189 << Visibility("Visible"); Spacer189 << Width(20); Spacer189 << Height(28); Spacer189 << Color(2147483647); Spacer189 << Set Fill(0); Spacer189 << Set Min Size(0, 0); Spacer189 << Set Max Size(30000, 30000); Spacer189 << Set Auto Stretching(0, 1); Text285 << Background Color(2147483647); Text285 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text285 << Enabled(1); Text285 << Horizontal Alignment("Left"); Text285 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text285 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text285 << Text Color(2147483647); Text285 << Vertical Alignment("Top"); Text285 << Visibility("Visible"); Text285 << Set Base Font("Text"); Text285 << Set Font Name("Arial"); Text285 << Set Font Style("Plain"); Text285 << Set Font Size(18); Text285 << Set Font Scale(1); Text285 << Set Text("Produced by File > Export (Mac)"); Text285 << Bullet point(1); Text285 << Font Color(0); Text285 << Justify Text("Left"); Text285 << Rotate Text("Horizontal"); Text285 << Set Width(680); Text285 << Set Wrap(710); Text285 << Set Tip(""); Text285 << Set Min Size(55, 28); Text285 << Set Max Size(2000, 28); Text285 << Set Auto Stretching(1, 0); List274 << Background Color(2147483647); List274 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List274 << Enabled(1); List274 << Horizontal Alignment("Default"); List274 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List274 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List274 << Text Color(2147483647); List274 << Vertical Alignment("Default"); List274 << Visibility("Visible"); List274 << set horizontal(1); Spacer190 << Background Color(2147483647); Spacer190 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer190 << Enabled(1); Spacer190 << Horizontal Alignment("Left"); Spacer190 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer190 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer190 << Text Color(2147483647); Spacer190 << Vertical Alignment("Top"); Spacer190 << Visibility("Visible"); Spacer190 << Width(20); Spacer190 << Height(28); Spacer190 << Color(2147483647); Spacer190 << Set Fill(0); Spacer190 << Set Min Size(0, 0); Spacer190 << Set Max Size(30000, 30000); Spacer190 << Set Auto Stretching(0, 1); Text281 << Background Color(2147483647); Text281 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text281 << Enabled(1); Text281 << Horizontal Alignment("Left"); Text281 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text281 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text281 << Text Color(2147483647); Text281 << Vertical Alignment("Top"); Text281 << Visibility("Visible"); Text281 << Set Base Font("Text"); Text281 << Set Font Name("Arial"); Text281 << Set Font Style("Plain"); Text281 << Set Font Size(18); Text281 << Set Font Scale(1); Text281 << Set Text("Runs the application when opened"); Text281 << Bullet point(1); Text281 << Font Color(0); Text281 << Justify Text("Left"); Text281 << Rotate Text("Horizontal"); Text281 << Set Width(680); Text281 << Set Wrap(710); Text281 << Set Tip(""); Text281 << Set Min Size(55, 28); Text281 << Set Max Size(2000, 28); Text281 << Set Auto Stretching(1, 0); TabPage19 << Background Color(2147483647); TabPage19 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage19 << Enabled(1); TabPage19 << Horizontal Alignment("Default"); TabPage19 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage19 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage19 << Text Color(2147483647); TabPage19 << Vertical Alignment("Default"); TabPage19 << Visibility("Visible"); TabPage19 << Title("Filter"); TabPage19 << Tip(""); TabPage19 << Icon(""); TabPage19 << Closeable(0); TabPage19 << Moveable(0); List224 << Background Color(2147483647); List224 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List224 << Enabled(1); List224 << Horizontal Alignment("Left"); List224 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List224 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List224 << Text Color(2147483647); List224 << Vertical Alignment("Top"); List224 << Visibility("Visible"); List224 << set horizontal(0); Scroll21 << Background Color(2); Scroll21 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll21 << Enabled(1); Scroll21 << Horizontal Alignment("Left"); Scroll21 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll21 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll21 << Text Color(2147483647); Scroll21 << User Resizable({1, 1}); Scroll21 << Vertical Alignment("Top"); Scroll21 << Visibility("Visible"); Scroll21 << Width(777); Scroll21 << Height(600); Scroll21 << Set Auto Scrollable(0); Scroll21 << Set Scrollers(0, 1); Scroll21 << Set Show Empty(1); Scroll21 << Set Clip Printing(0); Scroll21 << Set Min Size(717, 36); Scroll21 << Set Max Size(30057, 30000); Scroll21 << Set Auto Stretching(1, 1); List225 << Background Color(2147483647); List225 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List225 << Enabled(1); List225 << Horizontal Alignment("Left"); List225 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List225 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List225 << Text Color(2147483647); List225 << Vertical Alignment("Top"); List225 << Visibility("Visible"); List225 << set horizontal(0); Spacer162 << Background Color(2147483647); Spacer162 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer162 << Enabled(1); Spacer162 << Horizontal Alignment("Left"); Spacer162 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer162 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer162 << Text Color(2147483647); Spacer162 << Vertical Alignment("Top"); Spacer162 << Visibility("Visible"); Spacer162 << Width(720); Spacer162 << Height(5); Spacer162 << Color(2147483647); Spacer162 << Set Fill(0); Spacer162 << Set Min Size(0, 0); Spacer162 << Set Max Size(30000, 30000); Spacer162 << Set Auto Stretching(1, 1); Text251 << Background Color(2147483647); Text251 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text251 << Enabled(1); Text251 << Horizontal Alignment("Center"); Text251 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text251 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text251 << Text Color(2147483647); Text251 << Vertical Alignment("Top"); Text251 << Visibility("Visible"); Text251 << Set Base Font("Text"); Text251 << Set Font Name("Arial"); Text251 << Set Font Style("Bold"); Text251 << Set Font Size(36); Text251 << Set Font Scale(1); Text251 << Set Text("Shared Local Data Filter"); Text251 << Bullet point(0); Text251 << Font Color(0); Text251 << Justify Text("Left"); Text251 << Rotate Text("Horizontal"); Text251 << Set Width(-1); Text251 << Set Wrap(1000); Text251 << Set Tip(""); Text251 << Set Min Size(551, 56); Text251 << Set Max Size(551, 56); Text251 << Set Auto Stretching(0, 0); Spacer163 << Background Color(2147483647); Spacer163 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer163 << Enabled(1); Spacer163 << Horizontal Alignment("Left"); Spacer163 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer163 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer163 << Text Color(2147483647); Spacer163 << Vertical Alignment("Top"); Spacer163 << Visibility("Visible"); Spacer163 << Width(720); Spacer163 << Height(40); Spacer163 << Color(2147483647); Spacer163 << Set Fill(0); Spacer163 << Set Min Size(0, 0); Spacer163 << Set Max Size(30000, 30000); Spacer163 << Set Auto Stretching(1, 1); List226 << Background Color(2147483647); List226 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List226 << Enabled(1); List226 << Horizontal Alignment("Default"); List226 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List226 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List226 << Text Color(2147483647); List226 << Vertical Alignment("Default"); List226 << Visibility("Visible"); List226 << set horizontal(1); List227 << Background Color(2147483647); List227 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List227 << Enabled(1); List227 << Horizontal Alignment("Default"); List227 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List227 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List227 << Text Color(2147483647); List227 << Vertical Alignment("Default"); List227 << Visibility("Visible"); List227 << set horizontal(0); Text252 << Background Color(2147483647); Text252 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text252 << Enabled(1); Text252 << Horizontal Alignment("Left"); Text252 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text252 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text252 << Text Color(2147483647); Text252 << Vertical Alignment("Top"); Text252 << Visibility("Visible"); Text252 << Set Base Font("Text"); Text252 << Set Font Name("Arial"); Text252 << Set Font Style("Plain"); Text252 << Set Font Size(22); Text252 << Set Font Scale(1); Text252 << Set Text("Shared between multiple platforms"); Text252 << Bullet point(1); Text252 << Font Color(0); Text252 << Justify Text("Left"); Text252 << Rotate Text("Horizontal"); Text252 << Set Width(680); Text252 << Set Wrap(664); Text252 << Set Tip(""); Text252 << Set Min Size(55, 34); Text252 << Set Max Size(2000, 34); Text252 << Set Auto Stretching(1, 0); Text286 << Background Color(2147483647); Text286 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text286 << Enabled(1); Text286 << Horizontal Alignment("Left"); Text286 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text286 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text286 << Text Color(2147483647); Text286 << Vertical Alignment("Top"); Text286 << Visibility("Visible"); Text286 << Set Base Font("Text"); Text286 << Set Font Name("Arial"); Text286 << Set Font Style("Plain"); Text286 << Set Font Size(22); Text286 << Set Font Scale(1); Text286 << Set Text("Drag from Source Panel and drop in workspace"); Text286 << Bullet point(1); Text286 << Font Color(0); Text286 << Justify Text("Left"); Text286 << Rotate Text("Horizontal"); Text286 << Set Width(680); Text286 << Set Wrap(664); Text286 << Set Tip(""); Text286 << Set Min Size(55, 34); Text286 << Set Max Size(2000, 34); Text286 << Set Auto Stretching(1, 0); Spacer211 << Background Color(2147483647); Spacer211 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer211 << Enabled(1); Spacer211 << Horizontal Alignment("Left"); Spacer211 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer211 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer211 << Text Color(2147483647); Spacer211 << Vertical Alignment("Top"); Spacer211 << Visibility("Visible"); Spacer211 << Width(10); Spacer211 << Height(10); Spacer211 << Color(2147483647); Spacer211 << Set Fill(0); Spacer211 << Set Min Size(0, 0); Spacer211 << Set Max Size(30000, 30000); Spacer211 << Set Auto Stretching(0, 0); Picture11 << Background Color(2147483647); Picture11 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture11 << Enabled(1); Picture11 << Horizontal Alignment("Center"); Picture11 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture11 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture11 << Text Color(2147483647); Picture11 << User Resizable({1, 1}); Picture11 << Vertical Alignment("Default"); Picture11 << Visibility("Visible"); Picture11 << Set Image(Picture11Image); Picture11 << Set Width(620); Picture11 << Set Height(390); Picture11 << Set Min Size(620, 390); Picture11 << Set Max Size(620, 390); Picture11 << Set Auto Stretching(0, 0); TabPage20 << Background Color(2147483647); TabPage20 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage20 << Enabled(1); TabPage20 << Horizontal Alignment("Default"); TabPage20 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage20 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage20 << Text Color(2147483647); TabPage20 << Vertical Alignment("Default"); TabPage20 << Visibility("Visible"); TabPage20 << Title("Selection"); TabPage20 << Tip(""); TabPage20 << Icon(""); TabPage20 << Closeable(0); TabPage20 << Moveable(0); List228 << Background Color(2147483647); List228 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List228 << Enabled(1); List228 << Horizontal Alignment("Left"); List228 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List228 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List228 << Text Color(2147483647); List228 << Vertical Alignment("Top"); List228 << Visibility("Visible"); List228 << set horizontal(0); Scroll22 << Background Color(2); Scroll22 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll22 << Enabled(1); Scroll22 << Horizontal Alignment("Left"); Scroll22 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll22 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll22 << Text Color(2147483647); Scroll22 << User Resizable({1, 1}); Scroll22 << Vertical Alignment("Top"); Scroll22 << Visibility("Visible"); Scroll22 << Width(867); Scroll22 << Height(600); Scroll22 << Set Auto Scrollable(0); Scroll22 << Set Scrollers(0, 1); Scroll22 << Set Show Empty(1); Scroll22 << Set Clip Printing(0); Scroll22 << Set Min Size(727, 36); Scroll22 << Set Max Size(30057, 30000); Scroll22 << Set Auto Stretching(1, 1); List229 << Background Color(2147483647); List229 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List229 << Enabled(1); List229 << Horizontal Alignment("Left"); List229 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List229 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List229 << Text Color(2147483647); List229 << Vertical Alignment("Top"); List229 << Visibility("Visible"); List229 << set horizontal(0); Spacer164 << Background Color(2147483647); Spacer164 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer164 << Enabled(1); Spacer164 << Horizontal Alignment("Left"); Spacer164 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer164 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer164 << Text Color(2147483647); Spacer164 << Vertical Alignment("Top"); Spacer164 << Visibility("Visible"); Spacer164 << Width(810); Spacer164 << Height(5); Spacer164 << Color(2147483647); Spacer164 << Set Fill(0); Spacer164 << Set Min Size(0, 0); Spacer164 << Set Max Size(30000, 30000); Spacer164 << Set Auto Stretching(1, 1); Text253 << Background Color(2147483647); Text253 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text253 << Enabled(1); Text253 << Horizontal Alignment("Center"); Text253 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text253 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text253 << Text Color(2147483647); Text253 << Vertical Alignment("Top"); Text253 << Visibility("Visible"); Text253 << Set Base Font("Text"); Text253 << Set Font Name("Arial"); Text253 << Set Font Style("Bold"); Text253 << Set Font Size(36); Text253 << Set Font Scale(1); Text253 << Set Text("Selection Filter"); Text253 << Bullet point(0); Text253 << Font Color(0); Text253 << Justify Text("Left"); Text253 << Rotate Text("Horizontal"); Text253 << Set Width(-1); Text253 << Set Wrap(1000); Text253 << Set Tip(""); Text253 << Set Min Size(346, 56); Text253 << Set Max Size(346, 56); Text253 << Set Auto Stretching(0, 0); Spacer165 << Background Color(2147483647); Spacer165 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer165 << Enabled(1); Spacer165 << Horizontal Alignment("Left"); Spacer165 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer165 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer165 << Text Color(2147483647); Spacer165 << Vertical Alignment("Top"); Spacer165 << Visibility("Visible"); Spacer165 << Width(810); Spacer165 << Height(40); Spacer165 << Color(2147483647); Spacer165 << Set Fill(0); Spacer165 << Set Min Size(0, 0); Spacer165 << Set Max Size(30000, 30000); Spacer165 << Set Auto Stretching(1, 1); List230 << Background Color(2147483647); List230 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List230 << Enabled(1); List230 << Horizontal Alignment("Default"); List230 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List230 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List230 << Text Color(2147483647); List230 << Vertical Alignment("Default"); List230 << Visibility("Visible"); List230 << set horizontal(1); List231 << Background Color(2147483647); List231 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List231 << Enabled(1); List231 << Horizontal Alignment("Default"); List231 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List231 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List231 << Text Color(2147483647); List231 << Vertical Alignment("Default"); List231 << Visibility("Visible"); List231 << set horizontal(0); List287 << Background Color(2147483647); List287 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List287 << Enabled(1); List287 << Horizontal Alignment("Default"); List287 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List287 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List287 << Text Color(2147483647); List287 << Vertical Alignment("Default"); List287 << Visibility("Visible"); List287 << set horizontal(1); Text254 << Background Color(2147483647); Text254 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text254 << Enabled(1); Text254 << Horizontal Alignment("Left"); Text254 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text254 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text254 << Text Color(2147483647); Text254 << Vertical Alignment("Top"); Text254 << Visibility("Visible"); Text254 << Set Base Font("Text"); Text254 << Set Font Name("Arial"); Text254 << Set Font Style("Plain"); Text254 << Set Font Size(22); Text254 << Set Font Scale(1); Text254 << Set Text("Works like a Local Data Filter, but uses a JMP graph to filter other reports"); Text254 << Bullet point(1); Text254 << Font Color(0); Text254 << Justify Text("Left"); Text254 << Rotate Text("Horizontal"); Text254 << Set Width(580); Text254 << Set Wrap(564); Text254 << Set Tip(""); Text254 << Set Min Size(55, 68); Text254 << Set Max Size(2000, 68); Text254 << Set Auto Stretching(1, 0); Button2 << Background Color(2147483647); Button2 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button2 << Enabled(1); Button2 << Horizontal Alignment("Default"); Button2 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button2 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button2 << Text Color(2147483647); Button2 << Vertical Alignment("Top"); Button2 << Visibility("Visible"); Button2 << Set Button Name("Launch Filter Report"); Button2 << Style("Normal"); Button2 << Set(0); Button2 << Set Icon(""); Button2 << Set Icon Location("Right"); Button2 << Set Function(Launch Filter Report); Button2 << Set Min Size(146, 19); Button2 << Set Max Size(146, 19); Button2 << Set Auto Stretching(0, 0); Spacer212 << Background Color(2147483647); Spacer212 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer212 << Enabled(1); Spacer212 << Horizontal Alignment("Left"); Spacer212 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer212 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer212 << Text Color(2147483647); Spacer212 << Vertical Alignment("Top"); Spacer212 << Visibility("Visible"); Spacer212 << Width(10); Spacer212 << Height(10); Spacer212 << Color(2147483647); Spacer212 << Set Fill(0); Spacer212 << Set Min Size(0, 0); Spacer212 << Set Max Size(30000, 30000); Spacer212 << Set Auto Stretching(0, 0); Picture12 << Background Color(2147483647); Picture12 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture12 << Enabled(1); Picture12 << Horizontal Alignment("Center"); Picture12 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture12 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture12 << Text Color(2147483647); Picture12 << User Resizable({1, 1}); Picture12 << Vertical Alignment("Default"); Picture12 << Visibility("Visible"); Picture12 << Set Image(Picture12Image); Picture12 << Set Width(630); Picture12 << Set Height(390); Picture12 << Set Min Size(630, 390); Picture12 << Set Max Size(630, 390); Picture12 << Set Auto Stretching(0, 0); TabPage21 << Background Color(2147483647); TabPage21 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage21 << Enabled(1); TabPage21 << Horizontal Alignment("Default"); TabPage21 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage21 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage21 << Text Color(2147483647); TabPage21 << Vertical Alignment("Default"); TabPage21 << Visibility("Visible"); TabPage21 << Title("Summary"); TabPage21 << Tip(""); TabPage21 << Icon(""); TabPage21 << Closeable(0); TabPage21 << Moveable(0); List232 << Background Color(2147483647); List232 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List232 << Enabled(1); List232 << Horizontal Alignment("Left"); List232 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List232 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List232 << Text Color(2147483647); List232 << Vertical Alignment("Top"); List232 << Visibility("Visible"); List232 << set horizontal(0); Scroll23 << Background Color(2); Scroll23 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll23 << Enabled(1); Scroll23 << Horizontal Alignment("Left"); Scroll23 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll23 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll23 << Text Color(2147483647); Scroll23 << User Resizable({1, 1}); Scroll23 << Vertical Alignment("Top"); Scroll23 << Visibility("Visible"); Scroll23 << Width(777); Scroll23 << Height(600); Scroll23 << Set Auto Scrollable(0); Scroll23 << Set Scrollers(0, 1); Scroll23 << Set Show Empty(1); Scroll23 << Set Clip Printing(0); Scroll23 << Set Min Size(747, 36); Scroll23 << Set Max Size(30057, 30000); Scroll23 << Set Auto Stretching(1, 1); List233 << Background Color(2147483647); List233 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List233 << Enabled(1); List233 << Horizontal Alignment("Left"); List233 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List233 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List233 << Text Color(2147483647); List233 << Vertical Alignment("Top"); List233 << Visibility("Visible"); List233 << set horizontal(0); Spacer166 << Background Color(2147483647); Spacer166 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer166 << Enabled(1); Spacer166 << Horizontal Alignment("Left"); Spacer166 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer166 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer166 << Text Color(2147483647); Spacer166 << Vertical Alignment("Top"); Spacer166 << Visibility("Visible"); Spacer166 << Width(720); Spacer166 << Height(5); Spacer166 << Color(2147483647); Spacer166 << Set Fill(0); Spacer166 << Set Min Size(0, 0); Spacer166 << Set Max Size(30000, 30000); Spacer166 << Set Auto Stretching(1, 1); Text255 << Background Color(2147483647); Text255 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text255 << Enabled(1); Text255 << Horizontal Alignment("Center"); Text255 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text255 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text255 << Text Color(2147483647); Text255 << Vertical Alignment("Top"); Text255 << Visibility("Visible"); Text255 << Set Base Font("Text"); Text255 << Set Font Name("Arial"); Text255 << Set Font Style("Bold"); Text255 << Set Font Size(36); Text255 << Set Font Scale(1); Text255 << Set Text("Summary View"); Text255 << Bullet point(0); Text255 << Font Color(0); Text255 << Justify Text("Left"); Text255 << Rotate Text("Horizontal"); Text255 << Set Width(-1); Text255 << Set Wrap(1000); Text255 << Set Tip(""); Text255 << Set Min Size(343, 56); Text255 << Set Max Size(343, 56); Text255 << Set Auto Stretching(0, 0); Spacer167 << Background Color(2147483647); Spacer167 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer167 << Enabled(1); Spacer167 << Horizontal Alignment("Left"); Spacer167 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer167 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer167 << Text Color(2147483647); Spacer167 << Vertical Alignment("Top"); Spacer167 << Visibility("Visible"); Spacer167 << Width(720); Spacer167 << Height(40); Spacer167 << Color(2147483647); Spacer167 << Set Fill(0); Spacer167 << Set Min Size(0, 0); Spacer167 << Set Max Size(30000, 30000); Spacer167 << Set Auto Stretching(1, 1); List234 << Background Color(2147483647); List234 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List234 << Enabled(1); List234 << Horizontal Alignment("Default"); List234 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List234 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List234 << Text Color(2147483647); List234 << Vertical Alignment("Default"); List234 << Visibility("Visible"); List234 << set horizontal(1); List235 << Background Color(2147483647); List235 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List235 << Enabled(1); List235 << Horizontal Alignment("Default"); List235 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List235 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List235 << Text Color(2147483647); List235 << Vertical Alignment("Default"); List235 << Visibility("Visible"); List235 << set horizontal(0); Text256 << Background Color(2147483647); Text256 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text256 << Enabled(1); Text256 << Horizontal Alignment("Left"); Text256 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text256 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text256 << Text Color(2147483647); Text256 << Vertical Alignment("Top"); Text256 << Visibility("Visible"); Text256 << Set Base Font("Text"); Text256 << Set Font Name("Arial"); Text256 << Set Font Style("Plain"); Text256 << Set Font Size(22); Text256 << Set Font Scale(1); Text256 << Set Text("Makes graphs stretchable"); Text256 << Bullet point(1); Text256 << Font Color(0); Text256 << Justify Text("Left"); Text256 << Rotate Text("Horizontal"); Text256 << Set Width(680); Text256 << Set Wrap(664); Text256 << Set Tip(""); Text256 << Set Min Size(55, 34); Text256 << Set Max Size(2000, 34); Text256 << Set Auto Stretching(1, 0); Text287 << Background Color(2147483647); Text287 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text287 << Enabled(1); Text287 << Horizontal Alignment("Left"); Text287 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text287 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text287 << Text Color(2147483647); Text287 << Vertical Alignment("Top"); Text287 << Visibility("Visible"); Text287 << Set Base Font("Text"); Text287 << Set Font Name("Arial"); Text287 << Set Font Style("Plain"); Text287 << Set Font Size(22); Text287 << Set Font Scale(1); Text287 << Set Text("Hides most other content"); Text287 << Bullet point(1); Text287 << Font Color(0); Text287 << Justify Text("Left"); Text287 << Rotate Text("Horizontal"); Text287 << Set Width(680); Text287 << Set Wrap(664); Text287 << Set Tip(""); Text287 << Set Min Size(55, 34); Text287 << Set Max Size(2000, 34); Text287 << Set Auto Stretching(1, 0); Spacer213 << Background Color(2147483647); Spacer213 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer213 << Enabled(1); Spacer213 << Horizontal Alignment("Left"); Spacer213 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer213 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer213 << Text Color(2147483647); Spacer213 << Vertical Alignment("Top"); Spacer213 << Visibility("Visible"); Spacer213 << Width(10); Spacer213 << Height(10); Spacer213 << Color(2147483647); Spacer213 << Set Fill(0); Spacer213 << Set Min Size(0, 0); Spacer213 << Set Max Size(30000, 30000); Spacer213 << Set Auto Stretching(0, 0); Picture13 << Background Color(2147483647); Picture13 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture13 << Enabled(1); Picture13 << Horizontal Alignment("Center"); Picture13 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture13 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture13 << Text Color(2147483647); Picture13 << User Resizable({1, 1}); Picture13 << Vertical Alignment("Default"); Picture13 << Visibility("Visible"); Picture13 << Set Image(Picture13Image); Picture13 << Set Width(650); Picture13 << Set Height(345); Picture13 << Set Min Size(650, 345); Picture13 << Set Max Size(650, 345); Picture13 << Set Auto Stretching(0, 0); Spacer198 << Background Color(2147483647); Spacer198 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer198 << Enabled(1); Spacer198 << Horizontal Alignment("Left"); Spacer198 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer198 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer198 << Text Color(2147483647); Spacer198 << Vertical Alignment("Top"); Spacer198 << Visibility("Visible"); Spacer198 << Width(10); Spacer198 << Height(10); Spacer198 << Color(2147483647); Spacer198 << Set Fill(0); Spacer198 << Set Min Size(0, 0); Spacer198 << Set Max Size(30000, 30000); Spacer198 << Set Auto Stretching(0, 0); Button3 << Background Color(2147483647); Button3 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button3 << Enabled(1); Button3 << Horizontal Alignment("Default"); Button3 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button3 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button3 << Text Color(2147483647); Button3 << Vertical Alignment("Default"); Button3 << Visibility("Visible"); Button3 << Set Button Name("Launch Reports"); Button3 << Style("Normal"); Button3 << Set(0); Button3 << Set Icon(""); Button3 << Set Icon Location("Right"); Button3 << Set Function(Launch Summary); Button3 << Set Min Size(114, 19); Button3 << Set Max Size(114, 19); Button3 << Set Auto Stretching(0, 0); TabPage22 << Background Color(2147483647); TabPage22 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage22 << Enabled(1); TabPage22 << Horizontal Alignment("Default"); TabPage22 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage22 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage22 << Text Color(2147483647); TabPage22 << Vertical Alignment("Default"); TabPage22 << Visibility("Visible"); TabPage22 << Title("HTML"); TabPage22 << Tip(""); TabPage22 << Icon(""); TabPage22 << Closeable(0); TabPage22 << Moveable(0); List236 << Background Color(2147483647); List236 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List236 << Enabled(1); List236 << Horizontal Alignment("Left"); List236 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List236 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List236 << Text Color(2147483647); List236 << Vertical Alignment("Top"); List236 << Visibility("Visible"); List236 << set horizontal(0); Scroll24 << Background Color(2); Scroll24 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll24 << Enabled(1); Scroll24 << Horizontal Alignment("Left"); Scroll24 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll24 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll24 << Text Color(2147483647); Scroll24 << User Resizable({1, 1}); Scroll24 << Vertical Alignment("Top"); Scroll24 << Visibility("Visible"); Scroll24 << Width(777); Scroll24 << Height(600); Scroll24 << Set Auto Scrollable(0); Scroll24 << Set Scrollers(0, 1); Scroll24 << Set Show Empty(1); Scroll24 << Set Clip Printing(0); Scroll24 << Set Min Size(747, 36); Scroll24 << Set Max Size(30057, 30000); Scroll24 << Set Auto Stretching(1, 1); List237 << Background Color(2147483647); List237 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List237 << Enabled(1); List237 << Horizontal Alignment("Left"); List237 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List237 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List237 << Text Color(2147483647); List237 << Vertical Alignment("Top"); List237 << Visibility("Visible"); List237 << set horizontal(0); Spacer168 << Background Color(2147483647); Spacer168 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer168 << Enabled(1); Spacer168 << Horizontal Alignment("Left"); Spacer168 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer168 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer168 << Text Color(2147483647); Spacer168 << Vertical Alignment("Top"); Spacer168 << Visibility("Visible"); Spacer168 << Width(720); Spacer168 << Height(5); Spacer168 << Color(2147483647); Spacer168 << Set Fill(0); Spacer168 << Set Min Size(0, 0); Spacer168 << Set Max Size(30000, 30000); Spacer168 << Set Auto Stretching(1, 1); Text257 << Background Color(2147483647); Text257 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text257 << Enabled(1); Text257 << Horizontal Alignment("Center"); Text257 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text257 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text257 << Text Color(2147483647); Text257 << Vertical Alignment("Top"); Text257 << Visibility("Visible"); Text257 << Set Base Font("Text"); Text257 << Set Font Name("Arial"); Text257 << Set Font Style("Bold"); Text257 << Set Font Size(36); Text257 << Set Font Scale(1); Text257 << Set Text("HTML5 / JMP Live output"); Text257 << Bullet point(0); Text257 << Font Color(0); Text257 << Justify Text("Left"); Text257 << Rotate Text("Horizontal"); Text257 << Set Width(-1); Text257 << Set Wrap(1000); Text257 << Set Tip(""); Text257 << Set Min Size(572, 56); Text257 << Set Max Size(572, 56); Text257 << Set Auto Stretching(0, 0); Spacer169 << Background Color(2147483647); Spacer169 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer169 << Enabled(1); Spacer169 << Horizontal Alignment("Left"); Spacer169 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer169 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer169 << Text Color(2147483647); Spacer169 << Vertical Alignment("Top"); Spacer169 << Visibility("Visible"); Spacer169 << Width(720); Spacer169 << Height(40); Spacer169 << Color(2147483647); Spacer169 << Set Fill(0); Spacer169 << Set Min Size(0, 0); Spacer169 << Set Max Size(30000, 30000); Spacer169 << Set Auto Stretching(1, 1); List238 << Background Color(2147483647); List238 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List238 << Enabled(1); List238 << Horizontal Alignment("Default"); List238 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List238 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List238 << Text Color(2147483647); List238 << Vertical Alignment("Default"); List238 << Visibility("Visible"); List238 << set horizontal(1); List239 << Background Color(2147483647); List239 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List239 << Enabled(1); List239 << Horizontal Alignment("Default"); List239 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List239 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List239 << Text Color(2147483647); List239 << Vertical Alignment("Default"); List239 << Visibility("Visible"); List239 << set horizontal(0); Text258 << Background Color(2147483647); Text258 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text258 << Enabled(1); Text258 << Horizontal Alignment("Left"); Text258 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text258 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text258 << Text Color(2147483647); Text258 << Vertical Alignment("Top"); Text258 << Visibility("Visible"); Text258 << Set Base Font("Text"); Text258 << Set Font Name("Arial"); Text258 << Set Font Style("Plain"); Text258 << Set Font Size(22); Text258 << Set Font Scale(1); Text258 << Set Text("File > Save As > Interactive HTML"); Text258 << Bullet point(1); Text258 << Font Color(0); Text258 << Justify Text("Left"); Text258 << Rotate Text("Horizontal"); Text258 << Set Width(680); Text258 << Set Wrap(664); Text258 << Set Tip(""); Text258 << Set Min Size(55, 34); Text258 << Set Max Size(2000, 34); Text258 << Set Auto Stretching(1, 0); Text288 << Background Color(2147483647); Text288 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text288 << Enabled(1); Text288 << Horizontal Alignment("Left"); Text288 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text288 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text288 << Text Color(2147483647); Text288 << Vertical Alignment("Top"); Text288 << Visibility("Visible"); Text288 << Set Base Font("Text"); Text288 << Set Font Name("Arial"); Text288 << Set Font Style("Plain"); Text288 << Set Font Size(22); Text288 << Set Font Scale(1); Text288 << Set Text("File > Publish"); Text288 << Bullet point(1); Text288 << Font Color(0); Text288 << Justify Text("Left"); Text288 << Rotate Text("Horizontal"); Text288 << Set Width(680); Text288 << Set Wrap(664); Text288 << Set Tip(""); Text288 << Set Min Size(55, 34); Text288 << Set Max Size(2000, 34); Text288 << Set Auto Stretching(1, 0); Button4 << Background Color(2147483647); Button4 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button4 << Enabled(1); Button4 << Horizontal Alignment("Default"); Button4 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button4 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button4 << Text Color(2147483647); Button4 << Vertical Alignment("Default"); Button4 << Visibility("Visible"); Button4 << Set Button Name("Launch Reports"); Button4 << Style("Normal"); Button4 << Set(0); Button4 << Set Icon(""); Button4 << Set Icon Location("Right"); Button4 << Set Function(Launch Combine 2); Button4 << Set Min Size(114, 19); Button4 << Set Max Size(114, 19); Button4 << Set Auto Stretching(0, 0); Spacer214 << Background Color(2147483647); Spacer214 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer214 << Enabled(1); Spacer214 << Horizontal Alignment("Left"); Spacer214 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer214 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer214 << Text Color(2147483647); Spacer214 << Vertical Alignment("Top"); Spacer214 << Visibility("Visible"); Spacer214 << Width(10); Spacer214 << Height(10); Spacer214 << Color(2147483647); Spacer214 << Set Fill(0); Spacer214 << Set Min Size(0, 0); Spacer214 << Set Max Size(30000, 30000); Spacer214 << Set Auto Stretching(0, 0); Picture14 << Background Color(2147483647); Picture14 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture14 << Enabled(1); Picture14 << Horizontal Alignment("Center"); Picture14 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture14 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture14 << Text Color(2147483647); Picture14 << User Resizable({1, 1}); Picture14 << Vertical Alignment("Default"); Picture14 << Visibility("Visible"); Picture14 << Set Image(Picture14Image); Picture14 << Set Width(650); Picture14 << Set Height(367); Picture14 << Set Min Size(650, 367); Picture14 << Set Max Size(650, 367); Picture14 << Set Auto Stretching(0, 0); TabPage23 << Background Color(2147483647); TabPage23 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage23 << Enabled(1); TabPage23 << Horizontal Alignment("Default"); TabPage23 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage23 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage23 << Text Color(2147483647); TabPage23 << Vertical Alignment("Default"); TabPage23 << Visibility("Visible"); TabPage23 << Title("Query"); TabPage23 << Tip(""); TabPage23 << Icon(""); TabPage23 << Closeable(0); TabPage23 << Moveable(0); List240 << Background Color(2147483647); List240 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List240 << Enabled(1); List240 << Horizontal Alignment("Left"); List240 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List240 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List240 << Text Color(2147483647); List240 << Vertical Alignment("Top"); List240 << Visibility("Visible"); List240 << set horizontal(0); Scroll25 << Background Color(2); Scroll25 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll25 << Enabled(1); Scroll25 << Horizontal Alignment("Left"); Scroll25 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll25 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll25 << Text Color(2147483647); Scroll25 << User Resizable({1, 1}); Scroll25 << Vertical Alignment("Top"); Scroll25 << Visibility("Visible"); Scroll25 << Width(777); Scroll25 << Height(600); Scroll25 << Set Auto Scrollable(0); Scroll25 << Set Scrollers(0, 1); Scroll25 << Set Show Empty(1); Scroll25 << Set Clip Printing(0); Scroll25 << Set Min Size(490, 36); Scroll25 << Set Max Size(30057, 30000); Scroll25 << Set Auto Stretching(1, 1); List241 << Background Color(2147483647); List241 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List241 << Enabled(1); List241 << Horizontal Alignment("Left"); List241 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List241 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List241 << Text Color(2147483647); List241 << Vertical Alignment("Top"); List241 << Visibility("Visible"); List241 << set horizontal(0); Spacer170 << Background Color(2147483647); Spacer170 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer170 << Enabled(1); Spacer170 << Horizontal Alignment("Left"); Spacer170 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer170 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer170 << Text Color(2147483647); Spacer170 << Vertical Alignment("Top"); Spacer170 << Visibility("Visible"); Spacer170 << Width(720); Spacer170 << Height(5); Spacer170 << Color(2147483647); Spacer170 << Set Fill(0); Spacer170 << Set Min Size(0, 0); Spacer170 << Set Max Size(30000, 30000); Spacer170 << Set Auto Stretching(1, 1); Text259 << Background Color(2147483647); Text259 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text259 << Enabled(1); Text259 << Horizontal Alignment("Center"); Text259 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text259 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text259 << Text Color(2147483647); Text259 << Vertical Alignment("Top"); Text259 << Visibility("Visible"); Text259 << Set Base Font("Text"); Text259 << Set Font Name("Arial"); Text259 << Set Font Style("Bold"); Text259 << Set Font Size(36); Text259 << Set Font Scale(1); Text259 << Set Text("Query Builder"); Text259 << Bullet point(0); Text259 << Font Color(0); Text259 << Justify Text("Left"); Text259 << Rotate Text("Horizontal"); Text259 << Set Width(-1); Text259 << Set Wrap(1000); Text259 << Set Tip(""); Text259 << Set Min Size(319, 56); Text259 << Set Max Size(319, 56); Text259 << Set Auto Stretching(0, 0); Spacer171 << Background Color(2147483647); Spacer171 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer171 << Enabled(1); Spacer171 << Horizontal Alignment("Left"); Spacer171 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer171 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer171 << Text Color(2147483647); Spacer171 << Vertical Alignment("Top"); Spacer171 << Visibility("Visible"); Spacer171 << Width(720); Spacer171 << Height(40); Spacer171 << Color(2147483647); Spacer171 << Set Fill(0); Spacer171 << Set Min Size(0, 0); Spacer171 << Set Max Size(30000, 30000); Spacer171 << Set Auto Stretching(1, 1); List242 << Background Color(2147483647); List242 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List242 << Enabled(1); List242 << Horizontal Alignment("Default"); List242 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List242 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List242 << Text Color(2147483647); List242 << Vertical Alignment("Default"); List242 << Visibility("Visible"); List242 << set horizontal(1); List243 << Background Color(2147483647); List243 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List243 << Enabled(1); List243 << Horizontal Alignment("Default"); List243 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List243 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List243 << Text Color(2147483647); List243 << Vertical Alignment("Default"); List243 << Visibility("Visible"); List243 << set horizontal(0); Text260 << Background Color(2147483647); Text260 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text260 << Enabled(1); Text260 << Horizontal Alignment("Left"); Text260 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text260 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text260 << Text Color(2147483647); Text260 << Vertical Alignment("Top"); Text260 << Visibility("Visible"); Text260 << Set Base Font("Text"); Text260 << Set Font Name("Arial"); Text260 << Set Font Style("Plain"); Text260 << Set Font Size(22); Text260 << Set Font Scale(1); Text260 << Set Text("Tables created from Query Builder can be restored from a file, or the query can be rerun"); Text260 << Bullet point(1); Text260 << Font Color(0); Text260 << Justify Text("Left"); Text260 << Rotate Text("Horizontal"); Text260 << Set Width(680); Text260 << Set Wrap(664); Text260 << Set Tip(""); Text260 << Set Min Size(55, 68); Text260 << Set Max Size(2000, 68); Text260 << Set Auto Stretching(1, 0); Spacer215 << Background Color(2147483647); Spacer215 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer215 << Enabled(1); Spacer215 << Horizontal Alignment("Left"); Spacer215 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer215 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer215 << Text Color(2147483647); Spacer215 << Vertical Alignment("Top"); Spacer215 << Visibility("Visible"); Spacer215 << Width(10); Spacer215 << Height(10); Spacer215 << Color(2147483647); Spacer215 << Set Fill(0); Spacer215 << Set Min Size(0, 0); Spacer215 << Set Max Size(30000, 30000); Spacer215 << Set Auto Stretching(0, 0); Picture15 << Background Color(2147483647); Picture15 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture15 << Enabled(1); Picture15 << Horizontal Alignment("Center"); Picture15 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture15 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture15 << Text Color(2147483647); Picture15 << User Resizable({1, 1}); Picture15 << Vertical Alignment("Default"); Picture15 << Visibility("Visible"); Picture15 << Set Image(Picture15Image); Picture15 << Set Width(393); Picture15 << Set Height(165); Picture15 << Set Min Size(393, 165); Picture15 << Set Max Size(393, 165); Picture15 << Set Auto Stretching(0, 0); Spacer216 << Background Color(2147483647); Spacer216 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer216 << Enabled(1); Spacer216 << Horizontal Alignment("Left"); Spacer216 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer216 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer216 << Text Color(2147483647); Spacer216 << Vertical Alignment("Top"); Spacer216 << Visibility("Visible"); Spacer216 << Width(10); Spacer216 << Height(10); Spacer216 << Color(2147483647); Spacer216 << Set Fill(0); Spacer216 << Set Min Size(0, 0); Spacer216 << Set Max Size(30000, 30000); Spacer216 << Set Auto Stretching(0, 0); Button5 << Background Color(2147483647); Button5 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button5 << Enabled(1); Button5 << Horizontal Alignment("Default"); Button5 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button5 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button5 << Text Color(2147483647); Button5 << Vertical Alignment("Default"); Button5 << Visibility("Visible"); Button5 << Set Button Name("Run Query"); Button5 << Style("Normal"); Button5 << Set(0); Button5 << Set Icon(""); Button5 << Set Icon Location("Right"); Button5 << Set Function(Launch Query); Button5 << Set Min Size(94, 19); Button5 << Set Max Size(94, 19); Button5 << Set Auto Stretching(0, 0); TabPage24 << Background Color(2147483647); TabPage24 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage24 << Enabled(1); TabPage24 << Horizontal Alignment("Default"); TabPage24 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage24 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage24 << Text Color(2147483647); TabPage24 << Vertical Alignment("Default"); TabPage24 << Visibility("Visible"); TabPage24 << Title("AppBuilder"); TabPage24 << Tip(""); TabPage24 << Icon(""); TabPage24 << Closeable(0); TabPage24 << Moveable(0); List244 << Background Color(2147483647); List244 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List244 << Enabled(1); List244 << Horizontal Alignment("Left"); List244 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List244 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List244 << Text Color(2147483647); List244 << Vertical Alignment("Top"); List244 << Visibility("Visible"); List244 << set horizontal(0); Scroll26 << Background Color(2); Scroll26 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll26 << Enabled(1); Scroll26 << Horizontal Alignment("Left"); Scroll26 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll26 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll26 << Text Color(2147483647); Scroll26 << User Resizable({1, 1}); Scroll26 << Vertical Alignment("Top"); Scroll26 << Visibility("Visible"); Scroll26 << Width(768); Scroll26 << Height(600); Scroll26 << Set Auto Scrollable(0); Scroll26 << Set Scrollers(0, 1); Scroll26 << Set Show Empty(1); Scroll26 << Set Clip Printing(0); Scroll26 << Set Min Size(727, 36); Scroll26 << Set Max Size(30057, 30000); Scroll26 << Set Auto Stretching(1, 1); List245 << Background Color(2147483647); List245 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List245 << Enabled(1); List245 << Horizontal Alignment("Left"); List245 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List245 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List245 << Text Color(2147483647); List245 << Vertical Alignment("Top"); List245 << Visibility("Visible"); List245 << set horizontal(0); Spacer172 << Background Color(2147483647); Spacer172 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer172 << Enabled(1); Spacer172 << Horizontal Alignment("Left"); Spacer172 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer172 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer172 << Text Color(2147483647); Spacer172 << Vertical Alignment("Top"); Spacer172 << Visibility("Visible"); Spacer172 << Width(711); Spacer172 << Height(5); Spacer172 << Color(2147483647); Spacer172 << Set Fill(0); Spacer172 << Set Min Size(0, 0); Spacer172 << Set Max Size(30000, 30000); Spacer172 << Set Auto Stretching(1, 1); Text261 << Background Color(2147483647); Text261 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text261 << Enabled(1); Text261 << Horizontal Alignment("Center"); Text261 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text261 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text261 << Text Color(2147483647); Text261 << Vertical Alignment("Top"); Text261 << Visibility("Visible"); Text261 << Set Base Font("Text"); Text261 << Set Font Name("Arial"); Text261 << Set Font Style("Bold"); Text261 << Set Font Size(36); Text261 << Set Font Scale(1); Text261 << Set Text("Application Builder"); Text261 << Bullet point(0); Text261 << Font Color(0); Text261 << Justify Text("Left"); Text261 << Rotate Text("Horizontal"); Text261 << Set Width(-1); Text261 << Set Wrap(1000); Text261 << Set Tip(""); Text261 << Set Min Size(442, 56); Text261 << Set Max Size(442, 56); Text261 << Set Auto Stretching(0, 0); Spacer173 << Background Color(2147483647); Spacer173 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer173 << Enabled(1); Spacer173 << Horizontal Alignment("Left"); Spacer173 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer173 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer173 << Text Color(2147483647); Spacer173 << Vertical Alignment("Top"); Spacer173 << Visibility("Visible"); Spacer173 << Width(711); Spacer173 << Height(40); Spacer173 << Color(2147483647); Spacer173 << Set Fill(0); Spacer173 << Set Min Size(0, 0); Spacer173 << Set Max Size(30000, 30000); Spacer173 << Set Auto Stretching(1, 1); List246 << Background Color(2147483647); List246 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List246 << Enabled(1); List246 << Horizontal Alignment("Default"); List246 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List246 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List246 << Text Color(2147483647); List246 << Vertical Alignment("Default"); List246 << Visibility("Visible"); List246 << set horizontal(1); List247 << Background Color(2147483647); List247 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List247 << Enabled(1); List247 << Horizontal Alignment("Default"); List247 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List247 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List247 << Text Color(2147483647); List247 << Vertical Alignment("Default"); List247 << Visibility("Visible"); List247 << set horizontal(0); List288 << Background Color(2147483647); List288 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List288 << Enabled(1); List288 << Horizontal Alignment("Default"); List288 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List288 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List288 << Text Color(2147483647); List288 << Vertical Alignment("Default"); List288 << Visibility("Visible"); List288 << set horizontal(1); Text262 << Background Color(2147483647); Text262 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text262 << Enabled(1); Text262 << Horizontal Alignment("Left"); Text262 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text262 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text262 << Text Color(2147483647); Text262 << Vertical Alignment("Top"); Text262 << Visibility("Visible"); Text262 << Set Base Font("Text"); Text262 << Set Font Name("Arial"); Text262 << Set Font Style("Plain"); Text262 << Set Font Size(22); Text262 << Set Font Scale(1); Text262 << Set Text("File > New > Application"); Text262 << Bullet point(1); Text262 << Font Color(0); Text262 << Justify Text("Left"); Text262 << Rotate Text("Horizontal"); Text262 << Set Width(520); Text262 << Set Wrap(504); Text262 << Set Tip(""); Text262 << Set Min Size(55, 34); Text262 << Set Max Size(2000, 34); Text262 << Set Auto Stretching(1, 0); Button6 << Background Color(2147483647); Button6 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button6 << Enabled(1); Button6 << Horizontal Alignment("Default"); Button6 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button6 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button6 << Text Color(2147483647); Button6 << Vertical Alignment("Default"); Button6 << Visibility("Visible"); Button6 << Set Button Name("Launch Report"); Button6 << Style("Normal"); Button6 << Set(0); Button6 << Set Icon(""); Button6 << Set Icon Location("Right"); Button6 << Set Function(Launch Wrap Report); Button6 << Set Min Size(107, 19); Button6 << Set Max Size(107, 19); Button6 << Set Auto Stretching(0, 0); Spacer217 << Background Color(2147483647); Spacer217 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer217 << Enabled(1); Spacer217 << Horizontal Alignment("Left"); Spacer217 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer217 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer217 << Text Color(2147483647); Spacer217 << Vertical Alignment("Top"); Spacer217 << Visibility("Visible"); Spacer217 << Width(10); Spacer217 << Height(10); Spacer217 << Color(2147483647); Spacer217 << Set Fill(0); Spacer217 << Set Min Size(0, 0); Spacer217 << Set Max Size(30000, 30000); Spacer217 << Set Auto Stretching(0, 0); Picture16 << Background Color(2147483647); Picture16 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture16 << Enabled(1); Picture16 << Horizontal Alignment("Center"); Picture16 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture16 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture16 << Text Color(2147483647); Picture16 << User Resizable({1, 1}); Picture16 << Vertical Alignment("Default"); Picture16 << Visibility("Visible"); Picture16 << Set Image(Picture16Image); Picture16 << Set Width(630); Picture16 << Set Height(440); Picture16 << Set Min Size(630, 440); Picture16 << Set Max Size(630, 440); Picture16 << Set Auto Stretching(0, 0); TabPage25 << Background Color(2147483647); TabPage25 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage25 << Enabled(1); TabPage25 << Horizontal Alignment("Default"); TabPage25 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage25 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage25 << Text Color(2147483647); TabPage25 << Vertical Alignment("Default"); TabPage25 << Visibility("Visible"); TabPage25 << Title("PropEdit"); TabPage25 << Tip(""); TabPage25 << Icon(""); TabPage25 << Closeable(0); TabPage25 << Moveable(0); List248 << Background Color(2147483647); List248 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List248 << Enabled(1); List248 << Horizontal Alignment("Left"); List248 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List248 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List248 << Text Color(2147483647); List248 << Vertical Alignment("Top"); List248 << Visibility("Visible"); List248 << set horizontal(0); Scroll27 << Background Color(2); Scroll27 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll27 << Enabled(1); Scroll27 << Horizontal Alignment("Left"); Scroll27 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll27 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll27 << Text Color(2147483647); Scroll27 << User Resizable({1, 1}); Scroll27 << Vertical Alignment("Top"); Scroll27 << Visibility("Visible"); Scroll27 << Width(1077); Scroll27 << Height(600); Scroll27 << Set Auto Scrollable(0); Scroll27 << Set Scrollers(0, 1); Scroll27 << Set Show Empty(1); Scroll27 << Set Clip Printing(0); Scroll27 << Set Min Size(499, 36); Scroll27 << Set Max Size(30057, 30000); Scroll27 << Set Auto Stretching(1, 1); List249 << Background Color(2147483647); List249 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List249 << Enabled(1); List249 << Horizontal Alignment("Left"); List249 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List249 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List249 << Text Color(2147483647); List249 << Vertical Alignment("Top"); List249 << Visibility("Visible"); List249 << set horizontal(0); Spacer174 << Background Color(2147483647); Spacer174 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer174 << Enabled(1); Spacer174 << Horizontal Alignment("Left"); Spacer174 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer174 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer174 << Text Color(2147483647); Spacer174 << Vertical Alignment("Top"); Spacer174 << Visibility("Visible"); Spacer174 << Width(1020); Spacer174 << Height(5); Spacer174 << Color(2147483647); Spacer174 << Set Fill(0); Spacer174 << Set Min Size(0, 0); Spacer174 << Set Max Size(30000, 30000); Spacer174 << Set Auto Stretching(1, 1); Text263 << Background Color(2147483647); Text263 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text263 << Enabled(1); Text263 << Horizontal Alignment("Center"); Text263 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text263 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text263 << Text Color(2147483647); Text263 << Vertical Alignment("Top"); Text263 << Visibility("Visible"); Text263 << Set Base Font("Text"); Text263 << Set Font Name("Arial"); Text263 << Set Font Style("Bold"); Text263 << Set Font Size(36); Text263 << Set Font Scale(1); Text263 << Set Text("Application Builder"); Text263 << Bullet point(0); Text263 << Font Color(0); Text263 << Justify Text("Left"); Text263 << Rotate Text("Horizontal"); Text263 << Set Width(-1); Text263 << Set Wrap(1000); Text263 << Set Tip(""); Text263 << Set Min Size(442, 56); Text263 << Set Max Size(442, 56); Text263 << Set Auto Stretching(0, 0); Spacer175 << Background Color(2147483647); Spacer175 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer175 << Enabled(1); Spacer175 << Horizontal Alignment("Left"); Spacer175 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer175 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer175 << Text Color(2147483647); Spacer175 << Vertical Alignment("Top"); Spacer175 << Visibility("Visible"); Spacer175 << Width(1020); Spacer175 << Height(40); Spacer175 << Color(2147483647); Spacer175 << Set Fill(0); Spacer175 << Set Min Size(0, 0); Spacer175 << Set Max Size(30000, 30000); Spacer175 << Set Auto Stretching(1, 1); List250 << Background Color(2147483647); List250 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List250 << Enabled(1); List250 << Horizontal Alignment("Default"); List250 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List250 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List250 << Text Color(2147483647); List250 << Vertical Alignment("Default"); List250 << Visibility("Visible"); List250 << set horizontal(1); List251 << Background Color(2147483647); List251 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List251 << Enabled(1); List251 << Horizontal Alignment("Default"); List251 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List251 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List251 << Text Color(2147483647); List251 << Vertical Alignment("Default"); List251 << Visibility("Visible"); List251 << set horizontal(0); Text264 << Background Color(2147483647); Text264 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text264 << Enabled(1); Text264 << Horizontal Alignment("Left"); Text264 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text264 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text264 << Text Color(2147483647); Text264 << Vertical Alignment("Top"); Text264 << Visibility("Visible"); Text264 << Set Base Font("Text"); Text264 << Set Font Name("Arial"); Text264 << Set Font Style("Plain"); Text264 << Set Font Size(22); Text264 << Set Font Scale(1); Text264 << Set Text("Drag items from source panel to add to workspace"); Text264 << Bullet point(1); Text264 << Font Color(0); Text264 << Justify Text("Left"); Text264 << Rotate Text("Horizontal"); Text264 << Set Width(0); Text264 << Set Wrap(684); Text264 << Set Tip(""); Text264 << Set Min Size(0, 34); Text264 << Set Max Size(2000, 34); Text264 << Set Auto Stretching(1, 0); Text289 << Background Color(2147483647); Text289 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text289 << Enabled(1); Text289 << Horizontal Alignment("Left"); Text289 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text289 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text289 << Text Color(2147483647); Text289 << Vertical Alignment("Top"); Text289 << Visibility("Visible"); Text289 << Set Base Font("Text"); Text289 << Set Font Name("Arial"); Text289 << Set Font Style("Plain"); Text289 << Set Font Size(22); Text289 << Set Font Scale(1); Text289 << Set Text("Drag-and-drop within workspace to rearrange reports"); Text289 << Bullet point(1); Text289 << Font Color(0); Text289 << Justify Text("Left"); Text289 << Rotate Text("Horizontal"); Text289 << Set Width(680); Text289 << Set Wrap(664); Text289 << Set Tip(""); Text289 << Set Min Size(55, 68); Text289 << Set Max Size(2000, 68); Text289 << Set Auto Stretching(1, 0); Text290 << Background Color(2147483647); Text290 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text290 << Enabled(1); Text290 << Horizontal Alignment("Left"); Text290 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text290 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text290 << Text Color(2147483647); Text290 << Vertical Alignment("Top"); Text290 << Visibility("Visible"); Text290 << Set Base Font("Text"); Text290 << Set Font Name("Arial"); Text290 << Set Font Style("Plain"); Text290 << Set Font Size(22); Text290 << Set Font Scale(1); Text290 << Set Text("Select in workspace or object tree to view properties"); Text290 << Bullet point(1); Text290 << Font Color(0); Text290 << Justify Text("Left"); Text290 << Rotate Text("Horizontal"); Text290 << Set Width(560); Text290 << Set Wrap(664); Text290 << Set Tip(""); Text290 << Set Min Size(55, 68); Text290 << Set Max Size(2000, 68); Text290 << Set Auto Stretching(1, 0); Text291 << Background Color(2147483647); Text291 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text291 << Enabled(1); Text291 << Horizontal Alignment("Left"); Text291 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text291 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text291 << Text Color(2147483647); Text291 << Vertical Alignment("Top"); Text291 << Visibility("Visible"); Text291 << Set Base Font("Text"); Text291 << Set Font Name("Arial"); Text291 << Set Font Style("Plain"); Text291 << Set Font Size(22); Text291 << Set Font Scale(1); Text291 << Set Text("Edit properties within the property panel"); Text291 << Bullet point(1); Text291 << Font Color(0); Text291 << Justify Text("Left"); Text291 << Rotate Text("Horizontal"); Text291 << Set Width(550); Text291 << Set Wrap(664); Text291 << Set Tip(""); Text291 << Set Min Size(55, 34); Text291 << Set Max Size(2000, 34); Text291 << Set Auto Stretching(1, 0); Picture17 << Background Color(2147483647); Picture17 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture17 << Enabled(1); Picture17 << Horizontal Alignment("Default"); Picture17 << Margin({Left(20), Top(0), Right(0), Bottom(0)}); Picture17 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture17 << Text Color(2147483647); Picture17 << User Resizable({1, 1}); Picture17 << Vertical Alignment("Default"); Picture17 << Visibility("Visible"); Picture17 << Set Image(Picture17Image); Picture17 << Set Width(260); Picture17 << Set Height(413); Picture17 << Set Min Size(260, 413); Picture17 << Set Max Size(260, 413); Picture17 << Set Auto Stretching(0, 0); TabPage26 << Background Color(2147483647); TabPage26 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage26 << Enabled(1); TabPage26 << Horizontal Alignment("Default"); TabPage26 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage26 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage26 << Text Color(2147483647); TabPage26 << Vertical Alignment("Default"); TabPage26 << Visibility("Visible"); TabPage26 << Title("Param"); TabPage26 << Tip(""); TabPage26 << Icon(""); TabPage26 << Closeable(0); TabPage26 << Moveable(0); List252 << Background Color(2147483647); List252 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List252 << Enabled(1); List252 << Horizontal Alignment("Left"); List252 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List252 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List252 << Text Color(2147483647); List252 << Vertical Alignment("Top"); List252 << Visibility("Visible"); List252 << set horizontal(0); Scroll28 << Background Color(2); Scroll28 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll28 << Enabled(1); Scroll28 << Horizontal Alignment("Left"); Scroll28 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll28 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll28 << Text Color(2147483647); Scroll28 << User Resizable({1, 1}); Scroll28 << Vertical Alignment("Top"); Scroll28 << Visibility("Visible"); Scroll28 << Width(932); Scroll28 << Height(600); Scroll28 << Set Auto Scrollable(0); Scroll28 << Set Scrollers(0, 1); Scroll28 << Set Show Empty(1); Scroll28 << Set Clip Printing(0); Scroll28 << Set Min Size(517, 36); Scroll28 << Set Max Size(30057, 30000); Scroll28 << Set Auto Stretching(1, 1); List253 << Background Color(2147483647); List253 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List253 << Enabled(1); List253 << Horizontal Alignment("Left"); List253 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List253 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List253 << Text Color(2147483647); List253 << Vertical Alignment("Top"); List253 << Visibility("Visible"); List253 << set horizontal(0); Spacer176 << Background Color(2147483647); Spacer176 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer176 << Enabled(1); Spacer176 << Horizontal Alignment("Left"); Spacer176 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer176 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer176 << Text Color(2147483647); Spacer176 << Vertical Alignment("Top"); Spacer176 << Visibility("Visible"); Spacer176 << Width(875); Spacer176 << Height(5); Spacer176 << Color(2147483647); Spacer176 << Set Fill(0); Spacer176 << Set Min Size(0, 0); Spacer176 << Set Max Size(30000, 30000); Spacer176 << Set Auto Stretching(1, 1); Text265 << Background Color(2147483647); Text265 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text265 << Enabled(1); Text265 << Horizontal Alignment("Center"); Text265 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text265 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text265 << Text Color(2147483647); Text265 << Vertical Alignment("Top"); Text265 << Visibility("Visible"); Text265 << Set Base Font("Text"); Text265 << Set Font Name("Arial"); Text265 << Set Font Style("Bold"); Text265 << Set Font Size(36); Text265 << Set Font Scale(1); Text265 << Set Text("Parameterization"); Text265 << Bullet point(0); Text265 << Font Color(0); Text265 << Justify Text("Left"); Text265 << Rotate Text("Horizontal"); Text265 << Set Width(-1); Text265 << Set Wrap(1000); Text265 << Set Tip(""); Text265 << Set Min Size(388, 56); Text265 << Set Max Size(388, 56); Text265 << Set Auto Stretching(0, 0); Spacer177 << Background Color(2147483647); Spacer177 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer177 << Enabled(1); Spacer177 << Horizontal Alignment("Left"); Spacer177 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer177 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer177 << Text Color(2147483647); Spacer177 << Vertical Alignment("Top"); Spacer177 << Visibility("Visible"); Spacer177 << Width(875); Spacer177 << Height(40); Spacer177 << Color(2147483647); Spacer177 << Set Fill(0); Spacer177 << Set Min Size(0, 0); Spacer177 << Set Max Size(30000, 30000); Spacer177 << Set Auto Stretching(1, 1); List254 << Background Color(2147483647); List254 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List254 << Enabled(1); List254 << Horizontal Alignment("Default"); List254 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List254 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List254 << Text Color(2147483647); List254 << Vertical Alignment("Default"); List254 << Visibility("Visible"); List254 << set horizontal(1); List255 << Background Color(2147483647); List255 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List255 << Enabled(1); List255 << Horizontal Alignment("Default"); List255 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List255 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List255 << Text Color(2147483647); List255 << Vertical Alignment("Default"); List255 << Visibility("Visible"); List255 << set horizontal(0); Text266 << Background Color(2147483647); Text266 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text266 << Enabled(1); Text266 << Horizontal Alignment("Left"); Text266 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text266 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text266 << Text Color(2147483647); Text266 << Vertical Alignment("Top"); Text266 << Visibility("Visible"); Text266 << Set Base Font("Text"); Text266 << Set Font Name("Arial"); Text266 << Set Font Style("Plain"); Text266 << Set Font Size(22); Text266 << Set Font Scale(1); Text266 << Set Text("Allows column roles to change when application is run"); Text266 << Bullet point(1); Text266 << Font Color(0); Text266 << Justify Text("Left"); Text266 << Rotate Text("Horizontal"); Text266 << Set Width(0); Text266 << Set Wrap(474); Text266 << Set Tip(""); Text266 << Set Min Size(0, 68); Text266 << Set Max Size(2000, 68); Text266 << Set Auto Stretching(1, 0); Text292 << Background Color(2147483647); Text292 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text292 << Enabled(1); Text292 << Horizontal Alignment("Left"); Text292 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text292 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text292 << Text Color(2147483647); Text292 << Vertical Alignment("Top"); Text292 << Visibility("Visible"); Text292 << Set Base Font("Text"); Text292 << Set Font Name("Arial"); Text292 << Set Font Style("Plain"); Text292 << Set Font Size(22); Text292 << Set Font Scale(1); Text292 << Set Text("Choose which roles to parameterize"); Text292 << Bullet point(1); Text292 << Font Color(0); Text292 << Justify Text("Left"); Text292 << Rotate Text("Horizontal"); Text292 << Set Width(470); Text292 << Set Wrap(454); Text292 << Set Tip(""); Text292 << Set Min Size(55, 68); Text292 << Set Max Size(2000, 68); Text292 << Set Auto Stretching(1, 0); Text293 << Background Color(2147483647); Text293 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text293 << Enabled(1); Text293 << Horizontal Alignment("Left"); Text293 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text293 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text293 << Text Color(2147483647); Text293 << Vertical Alignment("Top"); Text293 << Visibility("Visible"); Text293 << Set Base Font("Text"); Text293 << Set Font Name("Arial"); Text293 << Set Font Style("Plain"); Text293 << Set Font Size(22); Text293 << Set Font Scale(1); Text293 << Set Text("Parameter name is a JSL variable name"); Text293 << Bullet point(1); Text293 << Font Color(0); Text293 << Justify Text("Left"); Text293 << Rotate Text("Horizontal"); Text293 << Set Width(380); Text293 << Set Wrap(454); Text293 << Set Tip(""); Text293 << Set Min Size(30, 68); Text293 << Set Max Size(2000, 68); Text293 << Set Auto Stretching(1, 0); Picture18 << Background Color(2147483647); Picture18 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture18 << Enabled(1); Picture18 << Horizontal Alignment("Center"); Picture18 << Margin({Left(0), Top(30), Right(0), Bottom(0)}); Picture18 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture18 << Text Color(2147483647); Picture18 << User Resizable({1, 1}); Picture18 << Vertical Alignment("Default"); Picture18 << Visibility("Visible"); Picture18 << Set Image(Picture18Image); Picture18 << Set Width(345); Picture18 << Set Height(336); Picture18 << Set Min Size(345, 336); Picture18 << Set Max Size(345, 336); Picture18 << Set Auto Stretching(0, 0); TabPage27 << Background Color(2147483647); TabPage27 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage27 << Enabled(1); TabPage27 << Horizontal Alignment("Default"); TabPage27 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage27 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage27 << Text Color(2147483647); TabPage27 << Vertical Alignment("Default"); TabPage27 << Visibility("Visible"); TabPage27 << Title("Param2"); TabPage27 << Tip(""); TabPage27 << Icon(""); TabPage27 << Closeable(0); TabPage27 << Moveable(0); List256 << Background Color(2147483647); List256 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List256 << Enabled(1); List256 << Horizontal Alignment("Left"); List256 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List256 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List256 << Text Color(2147483647); List256 << Vertical Alignment("Top"); List256 << Visibility("Visible"); List256 << set horizontal(0); Scroll29 << Background Color(2); Scroll29 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll29 << Enabled(1); Scroll29 << Horizontal Alignment("Left"); Scroll29 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll29 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll29 << Text Color(2147483647); Scroll29 << User Resizable({1, 1}); Scroll29 << Vertical Alignment("Top"); Scroll29 << Visibility("Visible"); Scroll29 << Width(674); Scroll29 << Height(600); Scroll29 << Set Auto Scrollable(0); Scroll29 << Set Scrollers(0, 1); Scroll29 << Set Show Empty(1); Scroll29 << Set Clip Printing(0); Scroll29 << Set Min Size(517, 36); Scroll29 << Set Max Size(30057, 30000); Scroll29 << Set Auto Stretching(1, 1); List257 << Background Color(2147483647); List257 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List257 << Enabled(1); List257 << Horizontal Alignment("Left"); List257 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List257 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List257 << Text Color(2147483647); List257 << Vertical Alignment("Top"); List257 << Visibility("Visible"); List257 << set horizontal(0); Spacer178 << Background Color(2147483647); Spacer178 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer178 << Enabled(1); Spacer178 << Horizontal Alignment("Left"); Spacer178 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer178 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer178 << Text Color(2147483647); Spacer178 << Vertical Alignment("Top"); Spacer178 << Visibility("Visible"); Spacer178 << Width(617); Spacer178 << Height(5); Spacer178 << Color(2147483647); Spacer178 << Set Fill(0); Spacer178 << Set Min Size(0, 0); Spacer178 << Set Max Size(30000, 30000); Spacer178 << Set Auto Stretching(1, 1); Text267 << Background Color(2147483647); Text267 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text267 << Enabled(1); Text267 << Horizontal Alignment("Center"); Text267 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text267 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text267 << Text Color(2147483647); Text267 << Vertical Alignment("Top"); Text267 << Visibility("Visible"); Text267 << Set Base Font("Text"); Text267 << Set Font Name("Arial"); Text267 << Set Font Style("Bold"); Text267 << Set Font Size(36); Text267 << Set Font Scale(1); Text267 << Set Text("Parameterization"); Text267 << Bullet point(0); Text267 << Font Color(0); Text267 << Justify Text("Left"); Text267 << Rotate Text("Horizontal"); Text267 << Set Width(-1); Text267 << Set Wrap(1000); Text267 << Set Tip(""); Text267 << Set Min Size(388, 56); Text267 << Set Max Size(388, 56); Text267 << Set Auto Stretching(0, 0); Spacer179 << Background Color(2147483647); Spacer179 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer179 << Enabled(1); Spacer179 << Horizontal Alignment("Left"); Spacer179 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer179 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer179 << Text Color(2147483647); Spacer179 << Vertical Alignment("Top"); Spacer179 << Visibility("Visible"); Spacer179 << Width(617); Spacer179 << Height(40); Spacer179 << Color(2147483647); Spacer179 << Set Fill(0); Spacer179 << Set Min Size(0, 0); Spacer179 << Set Max Size(30000, 30000); Spacer179 << Set Auto Stretching(1, 1); List258 << Background Color(2147483647); List258 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List258 << Enabled(1); List258 << Horizontal Alignment("Default"); List258 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List258 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List258 << Text Color(2147483647); List258 << Vertical Alignment("Default"); List258 << Visibility("Visible"); List258 << set horizontal(1); List259 << Background Color(2147483647); List259 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List259 << Enabled(1); List259 << Horizontal Alignment("Default"); List259 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List259 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List259 << Text Color(2147483647); List259 << Vertical Alignment("Default"); List259 << Visibility("Visible"); List259 << set horizontal(0); Text268 << Background Color(2147483647); Text268 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text268 << Enabled(1); Text268 << Horizontal Alignment("Left"); Text268 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text268 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text268 << Text Color(2147483647); Text268 << Vertical Alignment("Top"); Text268 << Visibility("Visible"); Text268 << Set Base Font("Text"); Text268 << Set Font Name("Arial"); Text268 << Set Font Style("Plain"); Text268 << Set Font Size(22); Text268 << Set Font Scale(1); Text268 << Set Text("Optionally customize the labels for the launch dialog"); Text268 << Bullet point(1); Text268 << Font Color(0); Text268 << Justify Text("Left"); Text268 << Rotate Text("Horizontal"); Text268 << Set Width(130); Text268 << Set Wrap(196); Text268 << Set Tip(""); Text268 << Set Min Size(55, 136); Text268 << Set Max Size(2000, 136); Text268 << Set Auto Stretching(1, 0); Picture19 << Background Color(2147483647); Picture19 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture19 << Enabled(1); Picture19 << Horizontal Alignment("Center"); Picture19 << Margin({Left(0), Top(30), Right(0), Bottom(0)}); Picture19 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture19 << Text Color(2147483647); Picture19 << User Resizable({1, 1}); Picture19 << Vertical Alignment("Default"); Picture19 << Visibility("Visible"); Picture19 << Set Image(Picture19Image); Picture19 << Set Width(345); Picture19 << Set Height(336); Picture19 << Set Min Size(345, 336); Picture19 << Set Max Size(345, 336); Picture19 << Set Auto Stretching(0, 0); TabPage28 << Background Color(2147483647); TabPage28 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage28 << Enabled(1); TabPage28 << Horizontal Alignment("Default"); TabPage28 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage28 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage28 << Text Color(2147483647); TabPage28 << Vertical Alignment("Default"); TabPage28 << Visibility("Visible"); TabPage28 << Title("Windows"); TabPage28 << Tip(""); TabPage28 << Icon(""); TabPage28 << Closeable(0); TabPage28 << Moveable(0); List260 << Background Color(2147483647); List260 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List260 << Enabled(1); List260 << Horizontal Alignment("Left"); List260 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List260 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List260 << Text Color(2147483647); List260 << Vertical Alignment("Top"); List260 << Visibility("Visible"); List260 << set horizontal(0); Scroll30 << Background Color(2); Scroll30 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll30 << Enabled(1); Scroll30 << Horizontal Alignment("Left"); Scroll30 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll30 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll30 << Text Color(2147483647); Scroll30 << User Resizable({1, 1}); Scroll30 << Vertical Alignment("Top"); Scroll30 << Visibility("Visible"); Scroll30 << Width(777); Scroll30 << Height(600); Scroll30 << Set Auto Scrollable(0); Scroll30 << Set Scrollers(0, 1); Scroll30 << Set Show Empty(1); Scroll30 << Set Clip Printing(0); Scroll30 << Set Min Size(639, 36); Scroll30 << Set Max Size(30057, 30000); Scroll30 << Set Auto Stretching(1, 1); List261 << Background Color(2147483647); List261 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List261 << Enabled(1); List261 << Horizontal Alignment("Left"); List261 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List261 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List261 << Text Color(2147483647); List261 << Vertical Alignment("Top"); List261 << Visibility("Visible"); List261 << set horizontal(0); Spacer180 << Background Color(2147483647); Spacer180 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer180 << Enabled(1); Spacer180 << Horizontal Alignment("Left"); Spacer180 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer180 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer180 << Text Color(2147483647); Spacer180 << Vertical Alignment("Top"); Spacer180 << Visibility("Visible"); Spacer180 << Width(720); Spacer180 << Height(5); Spacer180 << Color(2147483647); Spacer180 << Set Fill(0); Spacer180 << Set Min Size(0, 0); Spacer180 << Set Max Size(30000, 30000); Spacer180 << Set Auto Stretching(1, 1); Text269 << Background Color(2147483647); Text269 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text269 << Enabled(1); Text269 << Horizontal Alignment("Center"); Text269 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text269 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text269 << Text Color(2147483647); Text269 << Vertical Alignment("Top"); Text269 << Visibility("Visible"); Text269 << Set Base Font("Text"); Text269 << Set Font Name("Arial"); Text269 << Set Font Style("Bold"); Text269 << Set Font Size(36); Text269 << Set Font Scale(1); Text269 << Set Text("Multiple Windows"); Text269 << Bullet point(0); Text269 << Font Color(0); Text269 << Justify Text("Left"); Text269 << Rotate Text("Horizontal"); Text269 << Set Width(-1); Text269 << Set Wrap(1000); Text269 << Set Tip(""); Text269 << Set Min Size(407, 56); Text269 << Set Max Size(407, 56); Text269 << Set Auto Stretching(0, 0); Spacer181 << Background Color(2147483647); Spacer181 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer181 << Enabled(1); Spacer181 << Horizontal Alignment("Left"); Spacer181 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer181 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer181 << Text Color(2147483647); Spacer181 << Vertical Alignment("Top"); Spacer181 << Visibility("Visible"); Spacer181 << Width(720); Spacer181 << Height(40); Spacer181 << Color(2147483647); Spacer181 << Set Fill(0); Spacer181 << Set Min Size(0, 0); Spacer181 << Set Max Size(30000, 30000); Spacer181 << Set Auto Stretching(1, 1); List262 << Background Color(2147483647); List262 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List262 << Enabled(1); List262 << Horizontal Alignment("Default"); List262 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List262 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List262 << Text Color(2147483647); List262 << Vertical Alignment("Default"); List262 << Visibility("Visible"); List262 << set horizontal(1); List263 << Background Color(2147483647); List263 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List263 << Enabled(1); List263 << Horizontal Alignment("Default"); List263 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List263 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List263 << Text Color(2147483647); List263 << Vertical Alignment("Default"); List263 << Visibility("Visible"); List263 << set horizontal(0); Text270 << Background Color(2147483647); Text270 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text270 << Enabled(1); Text270 << Horizontal Alignment("Left"); Text270 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text270 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text270 << Text Color(2147483647); Text270 << Vertical Alignment("Top"); Text270 << Visibility("Visible"); Text270 << Set Base Font("Text"); Text270 << Set Font Name("Arial"); Text270 << Set Font Style("Plain"); Text270 << Set Font Size(22); Text270 << Set Font Scale(1); Text270 << Set Text("Multiple Report Windows"); Text270 << Bullet point(1); Text270 << Font Color(0); Text270 << Justify Text("Left"); Text270 << Rotate Text("Horizontal"); Text270 << Set Width(680); Text270 << Set Wrap(664); Text270 << Set Tip(""); Text270 << Set Min Size(55, 34); Text270 << Set Max Size(2000, 34); Text270 << Set Auto Stretching(1, 0); Text294 << Background Color(2147483647); Text294 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text294 << Enabled(1); Text294 << Horizontal Alignment("Left"); Text294 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text294 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text294 << Text Color(2147483647); Text294 << Vertical Alignment("Top"); Text294 << Visibility("Visible"); Text294 << Set Base Font("Text"); Text294 << Set Font Name("Arial"); Text294 << Set Font Style("Plain"); Text294 << Set Font Size(22); Text294 << Set Font Scale(1); Text294 << Set Text("Launch and Report"); Text294 << Bullet point(1); Text294 << Font Color(0); Text294 << Justify Text("Left"); Text294 << Rotate Text("Horizontal"); Text294 << Set Width(680); Text294 << Set Wrap(664); Text294 << Set Tip(""); Text294 << Set Min Size(55, 34); Text294 << Set Max Size(2000, 34); Text294 << Set Auto Stretching(1, 0); Spacer218 << Background Color(2147483647); Spacer218 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer218 << Enabled(1); Spacer218 << Horizontal Alignment("Left"); Spacer218 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer218 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer218 << Text Color(2147483647); Spacer218 << Vertical Alignment("Top"); Spacer218 << Visibility("Visible"); Spacer218 << Width(10); Spacer218 << Height(10); Spacer218 << Color(2147483647); Spacer218 << Set Fill(0); Spacer218 << Set Min Size(0, 0); Spacer218 << Set Max Size(30000, 30000); Spacer218 << Set Auto Stretching(0, 0); Picture20 << Background Color(2147483647); Picture20 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture20 << Enabled(1); Picture20 << Horizontal Alignment("Center"); Picture20 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture20 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture20 << Text Color(2147483647); Picture20 << User Resizable({1, 1}); Picture20 << Vertical Alignment("Default"); Picture20 << Visibility("Visible"); Picture20 << Set Image(Picture20Image); Picture20 << Set Width(542); Picture20 << Set Height(135); Picture20 << Set Min Size(542, 135); Picture20 << Set Max Size(542, 135); Picture20 << Set Auto Stretching(0, 0); Spacer219 << Background Color(2147483647); Spacer219 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer219 << Enabled(1); Spacer219 << Horizontal Alignment("Left"); Spacer219 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer219 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer219 << Text Color(2147483647); Spacer219 << Vertical Alignment("Top"); Spacer219 << Visibility("Visible"); Spacer219 << Width(10); Spacer219 << Height(10); Spacer219 << Color(2147483647); Spacer219 << Set Fill(0); Spacer219 << Set Min Size(0, 0); Spacer219 << Set Max Size(30000, 30000); Spacer219 << Set Auto Stretching(0, 0); Button7 << Background Color(2147483647); Button7 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button7 << Enabled(1); Button7 << Horizontal Alignment("Default"); Button7 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button7 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button7 << Text Color(2147483647); Button7 << Vertical Alignment("Default"); Button7 << Visibility("Visible"); Button7 << Set Button Name("Open Application"); Button7 << Style("Normal"); Button7 << Set(0); Button7 << Set Icon(""); Button7 << Set Icon Location("Right"); Button7 << Set Function(Launch Crime Custom Modules); Button7 << Set Min Size(177, 19); Button7 << Set Max Size(177, 19); Button7 << Set Auto Stretching(0, 0); TabPage29 << Background Color(2147483647); TabPage29 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage29 << Enabled(1); TabPage29 << Horizontal Alignment("Default"); TabPage29 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage29 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage29 << Text Color(2147483647); TabPage29 << Vertical Alignment("Default"); TabPage29 << Visibility("Visible"); TabPage29 << Title("Auto Launch"); TabPage29 << Tip(""); TabPage29 << Icon(""); TabPage29 << Closeable(0); TabPage29 << Moveable(0); List264 << Background Color(2147483647); List264 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List264 << Enabled(1); List264 << Horizontal Alignment("Left"); List264 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List264 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List264 << Text Color(2147483647); List264 << Vertical Alignment("Top"); List264 << Visibility("Visible"); List264 << set horizontal(0); Scroll31 << Background Color(2); Scroll31 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll31 << Enabled(1); Scroll31 << Horizontal Alignment("Left"); Scroll31 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll31 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll31 << Text Color(2147483647); Scroll31 << User Resizable({1, 1}); Scroll31 << Vertical Alignment("Top"); Scroll31 << Visibility("Visible"); Scroll31 << Width(828); Scroll31 << Height(600); Scroll31 << Set Auto Scrollable(0); Scroll31 << Set Scrollers(0, 1); Scroll31 << Set Show Empty(1); Scroll31 << Set Clip Printing(0); Scroll31 << Set Min Size(828, 36); Scroll31 << Set Max Size(30057, 30000); Scroll31 << Set Auto Stretching(1, 1); List265 << Background Color(2147483647); List265 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List265 << Enabled(1); List265 << Horizontal Alignment("Left"); List265 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List265 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List265 << Text Color(2147483647); List265 << Vertical Alignment("Top"); List265 << Visibility("Visible"); List265 << set horizontal(0); Spacer182 << Background Color(2147483647); Spacer182 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer182 << Enabled(1); Spacer182 << Horizontal Alignment("Left"); Spacer182 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer182 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer182 << Text Color(2147483647); Spacer182 << Vertical Alignment("Top"); Spacer182 << Visibility("Visible"); Spacer182 << Width(771); Spacer182 << Height(5); Spacer182 << Color(2147483647); Spacer182 << Set Fill(0); Spacer182 << Set Min Size(0, 0); Spacer182 << Set Max Size(30000, 30000); Spacer182 << Set Auto Stretching(1, 1); Text271 << Background Color(2147483647); Text271 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text271 << Enabled(1); Text271 << Horizontal Alignment("Center"); Text271 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text271 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text271 << Text Color(2147483647); Text271 << Vertical Alignment("Top"); Text271 << Visibility("Visible"); Text271 << Set Base Font("Text"); Text271 << Set Font Name("Arial"); Text271 << Set Font Style("Bold"); Text271 << Set Font Size(36); Text271 << Set Font Scale(1); Text271 << Set Text("Auto Launch Properties"); Text271 << Bullet point(0); Text271 << Font Color(0); Text271 << Justify Text("Left"); Text271 << Rotate Text("Horizontal"); Text271 << Set Width(-1); Text271 << Set Wrap(1000); Text271 << Set Tip(""); Text271 << Set Min Size(546, 56); Text271 << Set Max Size(546, 56); Text271 << Set Auto Stretching(0, 0); Spacer183 << Background Color(2147483647); Spacer183 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer183 << Enabled(1); Spacer183 << Horizontal Alignment("Left"); Spacer183 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer183 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer183 << Text Color(2147483647); Spacer183 << Vertical Alignment("Top"); Spacer183 << Visibility("Visible"); Spacer183 << Width(771); Spacer183 << Height(40); Spacer183 << Color(2147483647); Spacer183 << Set Fill(0); Spacer183 << Set Min Size(0, 0); Spacer183 << Set Max Size(30000, 30000); Spacer183 << Set Auto Stretching(1, 1); List266 << Background Color(2147483647); List266 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List266 << Enabled(1); List266 << Horizontal Alignment("Default"); List266 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List266 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List266 << Text Color(2147483647); List266 << Vertical Alignment("Default"); List266 << Visibility("Visible"); List266 << set horizontal(1); List267 << Background Color(2147483647); List267 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List267 << Enabled(1); List267 << Horizontal Alignment("Default"); List267 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List267 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List267 << Text Color(2147483647); List267 << Vertical Alignment("Default"); List267 << Visibility("Visible"); List267 << set horizontal(0); Text272 << Background Color(2147483647); Text272 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text272 << Enabled(1); Text272 << Horizontal Alignment("Left"); Text272 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text272 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text272 << Text Color(2147483647); Text272 << Vertical Alignment("Top"); Text272 << Visibility("Visible"); Text272 << Set Base Font("Text"); Text272 << Set Font Name("Arial"); Text272 << Set Font Style("Plain"); Text272 << Set Font Size(22); Text272 << Set Font Scale(1); Text272 << Set Text("Application Auto Launch controls launch dialog"); Text272 << Bullet point(1); Text272 << Font Color(0); Text272 << Justify Text("Left"); Text272 << Rotate Text("Horizontal"); Text272 << Set Width(680); Text272 << Set Wrap(715); Text272 << Set Tip(""); Text272 << Set Min Size(55, 34); Text272 << Set Max Size(2000, 34); Text272 << Set Auto Stretching(1, 0); Text295 << Background Color(2147483647); Text295 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text295 << Enabled(1); Text295 << Horizontal Alignment("Left"); Text295 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text295 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text295 << Text Color(2147483647); Text295 << Vertical Alignment("Top"); Text295 << Visibility("Visible"); Text295 << Set Base Font("Text"); Text295 << Set Font Name("Arial"); Text295 << Set Font Style("Plain"); Text295 << Set Font Size(22); Text295 << Set Font Scale(1); Text295 << Set Text("Module Auto Launch controls instance creation"); Text295 << Bullet point(1); Text295 << Font Color(0); Text295 << Justify Text("Left"); Text295 << Rotate Text("Horizontal"); Text295 << Set Width(680); Text295 << Set Wrap(715); Text295 << Set Tip(""); Text295 << Set Min Size(55, 34); Text295 << Set Max Size(2000, 34); Text295 << Set Auto Stretching(1, 0); List289 << Background Color(2147483647); List289 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List289 << Enabled(1); List289 << Horizontal Alignment("Center"); List289 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List289 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List289 << Text Color(2147483647); List289 << Vertical Alignment("Default"); List289 << Visibility("Visible"); List289 << set horizontal(1); Picture21 << Background Color(2147483647); Picture21 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture21 << Enabled(1); Picture21 << Horizontal Alignment("Center"); Picture21 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture21 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture21 << Text Color(2147483647); Picture21 << User Resizable({1, 1}); Picture21 << Vertical Alignment("Default"); Picture21 << Visibility("Visible"); Picture21 << Set Image(Picture21Image); Picture21 << Set Width(346); Picture21 << Set Height(392); Picture21 << Set Min Size(346, 392); Picture21 << Set Max Size(346, 392); Picture21 << Set Auto Stretching(0, 0); Picture22 << Background Color(2147483647); Picture22 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture22 << Enabled(1); Picture22 << Horizontal Alignment("Default"); Picture22 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture22 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture22 << Text Color(2147483647); Picture22 << User Resizable({1, 1}); Picture22 << Vertical Alignment("Default"); Picture22 << Visibility("Visible"); Picture22 << Set Image(Picture22Image); Picture22 << Set Width(345); Picture22 << Set Height(395); Picture22 << Set Min Size(345, 395); Picture22 << Set Max Size(345, 395); Picture22 << Set Auto Stretching(0, 0); TabPage30 << Background Color(2147483647); TabPage30 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage30 << Enabled(1); TabPage30 << Horizontal Alignment("Default"); TabPage30 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage30 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage30 << Text Color(2147483647); TabPage30 << Vertical Alignment("Default"); TabPage30 << Visibility("Visible"); TabPage30 << Title("Scripts"); TabPage30 << Tip(""); TabPage30 << Icon(""); TabPage30 << Closeable(0); TabPage30 << Moveable(0); List275 << Background Color(2147483647); List275 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List275 << Enabled(1); List275 << Horizontal Alignment("Left"); List275 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List275 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List275 << Text Color(2147483647); List275 << Vertical Alignment("Top"); List275 << Visibility("Visible"); List275 << set horizontal(0); Scroll32 << Background Color(2); Scroll32 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll32 << Enabled(1); Scroll32 << Horizontal Alignment("Left"); Scroll32 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll32 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll32 << Text Color(2147483647); Scroll32 << User Resizable({1, 1}); Scroll32 << Vertical Alignment("Top"); Scroll32 << Visibility("Visible"); Scroll32 << Width(947); Scroll32 << Height(600); Scroll32 << Set Auto Scrollable(0); Scroll32 << Set Scrollers(0, 1); Scroll32 << Set Show Empty(1); Scroll32 << Set Clip Printing(0); Scroll32 << Set Min Size(947, 36); Scroll32 << Set Max Size(30057, 30000); Scroll32 << Set Auto Stretching(1, 1); List276 << Background Color(2147483647); List276 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List276 << Enabled(1); List276 << Horizontal Alignment("Left"); List276 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List276 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List276 << Text Color(2147483647); List276 << Vertical Alignment("Top"); List276 << Visibility("Visible"); List276 << set horizontal(0); Spacer191 << Background Color(2147483647); Spacer191 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer191 << Enabled(1); Spacer191 << Horizontal Alignment("Left"); Spacer191 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer191 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer191 << Text Color(2147483647); Spacer191 << Vertical Alignment("Top"); Spacer191 << Visibility("Visible"); Spacer191 << Width(890); Spacer191 << Height(5); Spacer191 << Color(2147483647); Spacer191 << Set Fill(0); Spacer191 << Set Min Size(0, 0); Spacer191 << Set Max Size(30000, 30000); Spacer191 << Set Auto Stretching(1, 1); Text296 << Background Color(2147483647); Text296 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text296 << Enabled(1); Text296 << Horizontal Alignment("Center"); Text296 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text296 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text296 << Text Color(2147483647); Text296 << Vertical Alignment("Top"); Text296 << Visibility("Visible"); Text296 << Set Base Font("Text"); Text296 << Set Font Name("Arial"); Text296 << Set Font Style("Bold"); Text296 << Set Font Size(36); Text296 << Set Font Scale(1); Text296 << Set Text("Scripts"); Text296 << Bullet point(0); Text296 << Font Color(0); Text296 << Justify Text("Left"); Text296 << Rotate Text("Horizontal"); Text296 << Set Width(-1); Text296 << Set Wrap(1000); Text296 << Set Tip(""); Text296 << Set Min Size(164, 56); Text296 << Set Max Size(164, 56); Text296 << Set Auto Stretching(0, 0); Spacer192 << Background Color(2147483647); Spacer192 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer192 << Enabled(1); Spacer192 << Horizontal Alignment("Left"); Spacer192 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer192 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer192 << Text Color(2147483647); Spacer192 << Vertical Alignment("Top"); Spacer192 << Visibility("Visible"); Spacer192 << Width(890); Spacer192 << Height(40); Spacer192 << Color(2147483647); Spacer192 << Set Fill(0); Spacer192 << Set Min Size(0, 0); Spacer192 << Set Max Size(30000, 30000); Spacer192 << Set Auto Stretching(1, 1); List277 << Background Color(2147483647); List277 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List277 << Enabled(1); List277 << Horizontal Alignment("Default"); List277 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List277 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List277 << Text Color(2147483647); List277 << Vertical Alignment("Default"); List277 << Visibility("Visible"); List277 << set horizontal(1); List278 << Background Color(2147483647); List278 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List278 << Enabled(1); List278 << Horizontal Alignment("Default"); List278 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List278 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List278 << Text Color(2147483647); List278 << Vertical Alignment("Default"); List278 << Visibility("Visible"); List278 << set horizontal(0); Text297 << Background Color(2147483647); Text297 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text297 << Enabled(1); Text297 << Horizontal Alignment("Left"); Text297 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text297 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text297 << Text Color(2147483647); Text297 << Vertical Alignment("Top"); Text297 << Visibility("Visible"); Text297 << Set Base Font("Text"); Text297 << Set Font Name("Arial"); Text297 << Set Font Style("Plain"); Text297 << Set Font Size(22); Text297 << Set Font Scale(1); Text297 << Set Text("Right click on control to add script"); Text297 << Bullet point(1); Text297 << Font Color(0); Text297 << Justify Text("Left"); Text297 << Rotate Text("Horizontal"); Text297 << Set Width(680); Text297 << Set Wrap(834); Text297 << Set Tip(""); Text297 << Set Min Size(55, 34); Text297 << Set Max Size(2000, 34); Text297 << Set Auto Stretching(1, 0); Text298 << Background Color(2147483647); Text298 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text298 << Enabled(1); Text298 << Horizontal Alignment("Left"); Text298 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text298 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text298 << Text Color(2147483647); Text298 << Vertical Alignment("Top"); Text298 << Visibility("Visible"); Text298 << Set Base Font("Text"); Text298 << Set Font Name("Arial"); Text298 << Set Font Style("Plain"); Text298 << Set Font Size(22); Text298 << Set Font Scale(1); Text298 << Set Text("Customize script in the 'Scripts' tab"); Text298 << Bullet point(1); Text298 << Font Color(0); Text298 << Justify Text("Left"); Text298 << Rotate Text("Horizontal"); Text298 << Set Width(680); Text298 << Set Wrap(834); Text298 << Set Tip(""); Text298 << Set Min Size(55, 34); Text298 << Set Max Size(2000, 34); Text298 << Set Auto Stretching(1, 0); List290 << Background Color(2147483647); List290 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List290 << Enabled(1); List290 << Horizontal Alignment("Center"); List290 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List290 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List290 << Text Color(2147483647); List290 << Vertical Alignment("Default"); List290 << Visibility("Visible"); List290 << set horizontal(1); Picture23 << Background Color(2147483647); Picture23 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture23 << Enabled(1); Picture23 << Horizontal Alignment("Center"); Picture23 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture23 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture23 << Text Color(2147483647); Picture23 << User Resizable({1, 1}); Picture23 << Vertical Alignment("Default"); Picture23 << Visibility("Visible"); Picture23 << Set Image(Picture23Image); Picture23 << Set Width(401); Picture23 << Set Height(308); Picture23 << Set Min Size(401, 308); Picture23 << Set Max Size(401, 308); Picture23 << Set Auto Stretching(0, 0); List291 << Background Color(2147483647); List291 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List291 << Enabled(1); List291 << Horizontal Alignment("Default"); List291 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List291 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List291 << Text Color(2147483647); List291 << Vertical Alignment("Default"); List291 << Visibility("Visible"); List291 << set horizontal(0); Picture24 << Background Color(2147483647); Picture24 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture24 << Enabled(1); Picture24 << Horizontal Alignment("Default"); Picture24 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture24 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture24 << Text Color(2147483647); Picture24 << User Resizable({1, 1}); Picture24 << Vertical Alignment("Default"); Picture24 << Visibility("Visible"); Picture24 << Set Image(Picture24Image); Picture24 << Set Width(386); Picture24 << Set Height(189); Picture24 << Set Min Size(386, 189); Picture24 << Set Max Size(386, 189); Picture24 << Set Auto Stretching(0, 0); Picture25 << Background Color(2147483647); Picture25 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Picture25 << Enabled(1); Picture25 << Horizontal Alignment("Default"); Picture25 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Picture25 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Picture25 << Text Color(2147483647); Picture25 << User Resizable({1, 1}); Picture25 << Vertical Alignment("Default"); Picture25 << Visibility("Visible"); Picture25 << Set Image(Picture25Image); Picture25 << Set Width(389); Picture25 << Set Height(152); Picture25 << Set Min Size(389, 152); Picture25 << Set Max Size(389, 152); Picture25 << Set Auto Stretching(0, 0); TabPage31 << Background Color(2147483647); TabPage31 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage31 << Enabled(1); TabPage31 << Horizontal Alignment("Default"); TabPage31 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage31 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage31 << Text Color(2147483647); TabPage31 << Vertical Alignment("Default"); TabPage31 << Visibility("Visible"); TabPage31 << Title("JSL"); TabPage31 << Tip(""); TabPage31 << Icon(""); TabPage31 << Closeable(0); TabPage31 << Moveable(0); List279 << Background Color(2147483647); List279 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List279 << Enabled(1); List279 << Horizontal Alignment("Left"); List279 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List279 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List279 << Text Color(2147483647); List279 << Vertical Alignment("Top"); List279 << Visibility("Visible"); List279 << set horizontal(0); Scroll33 << Background Color(2); Scroll33 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll33 << Enabled(1); Scroll33 << Horizontal Alignment("Left"); Scroll33 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll33 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll33 << Text Color(2147483647); Scroll33 << User Resizable({1, 1}); Scroll33 << Vertical Alignment("Top"); Scroll33 << Visibility("Visible"); Scroll33 << Width(777); Scroll33 << Height(600); Scroll33 << Set Auto Scrollable(0); Scroll33 << Set Scrollers(0, 1); Scroll33 << Set Show Empty(1); Scroll33 << Set Clip Printing(0); Scroll33 << Set Min Size(515, 36); Scroll33 << Set Max Size(30057, 30000); Scroll33 << Set Auto Stretching(1, 1); List280 << Background Color(2147483647); List280 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List280 << Enabled(1); List280 << Horizontal Alignment("Left"); List280 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List280 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List280 << Text Color(2147483647); List280 << Vertical Alignment("Top"); List280 << Visibility("Visible"); List280 << set horizontal(0); Spacer193 << Background Color(2147483647); Spacer193 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer193 << Enabled(1); Spacer193 << Horizontal Alignment("Left"); Spacer193 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer193 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer193 << Text Color(2147483647); Spacer193 << Vertical Alignment("Top"); Spacer193 << Visibility("Visible"); Spacer193 << Width(720); Spacer193 << Height(5); Spacer193 << Color(2147483647); Spacer193 << Set Fill(0); Spacer193 << Set Min Size(0, 0); Spacer193 << Set Max Size(30000, 30000); Spacer193 << Set Auto Stretching(1, 1); Text299 << Background Color(2147483647); Text299 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text299 << Enabled(1); Text299 << Horizontal Alignment("Center"); Text299 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text299 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text299 << Text Color(2147483647); Text299 << Vertical Alignment("Top"); Text299 << Visibility("Visible"); Text299 << Set Base Font("Text"); Text299 << Set Font Name("Arial"); Text299 << Set Font Style("Bold"); Text299 << Set Font Size(36); Text299 << Set Font Scale(1); Text299 << Set Text("JSL for Dashboards"); Text299 << Bullet point(0); Text299 << Font Color(0); Text299 << Justify Text("Left"); Text299 << Rotate Text("Horizontal"); Text299 << Set Width(-1); Text299 << Set Wrap(1000); Text299 << Set Tip(""); Text299 << Set Min Size(458, 56); Text299 << Set Max Size(458, 56); Text299 << Set Auto Stretching(0, 0); Spacer194 << Background Color(2147483647); Spacer194 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer194 << Enabled(1); Spacer194 << Horizontal Alignment("Left"); Spacer194 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer194 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer194 << Text Color(2147483647); Spacer194 << Vertical Alignment("Top"); Spacer194 << Visibility("Visible"); Spacer194 << Width(720); Spacer194 << Height(40); Spacer194 << Color(2147483647); Spacer194 << Set Fill(0); Spacer194 << Set Min Size(0, 0); Spacer194 << Set Max Size(30000, 30000); Spacer194 << Set Auto Stretching(1, 1); List281 << Background Color(2147483647); List281 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List281 << Enabled(1); List281 << Horizontal Alignment("Default"); List281 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List281 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List281 << Text Color(2147483647); List281 << Vertical Alignment("Default"); List281 << Visibility("Visible"); List281 << set horizontal(1); List282 << Background Color(2147483647); List282 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List282 << Enabled(1); List282 << Horizontal Alignment("Default"); List282 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List282 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List282 << Text Color(2147483647); List282 << Vertical Alignment("Default"); List282 << Visibility("Visible"); List282 << set horizontal(0); Text300 << Background Color(2147483647); Text300 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text300 << Enabled(1); Text300 << Horizontal Alignment("Left"); Text300 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text300 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text300 << Text Color(2147483647); Text300 << Vertical Alignment("Top"); Text300 << Visibility("Visible"); Text300 << Set Base Font("Text"); Text300 << Set Font Name("Arial"); Text300 << Set Font Style("Plain"); Text300 << Set Font Size(22); Text300 << Set Font Scale(1); Text300 << Set Text("TabPageBox can be used standalone"); Text300 << Bullet point(1); Text300 << Font Color(0); Text300 << Justify Text("Left"); Text300 << Rotate Text("Horizontal"); Text300 << Set Width(680); Text300 << Set Wrap(664); Text300 << Set Tip(""); Text300 << Set Min Size(55, 34); Text300 << Set Max Size(2000, 34); Text300 << Set Auto Stretching(1, 0); Text301 << Background Color(2147483647); Text301 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text301 << Enabled(1); Text301 << Horizontal Alignment("Left"); Text301 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text301 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text301 << Text Color(2147483647); Text301 << Vertical Alignment("Top"); Text301 << Visibility("Visible"); Text301 << Set Base Font("Text"); Text301 << Set Font Name("Arial"); Text301 << Set Font Style("Plain"); Text301 << Set Font Size(22); Text301 << Set Font Scale(1); Text301 << Set Text("TabPageBox << Moveable(0 | 1)"); Text301 << Bullet point(1); Text301 << Font Color(0); Text301 << Justify Text("Left"); Text301 << Rotate Text("Horizontal"); Text301 << Set Width(680); Text301 << Set Wrap(664); Text301 << Set Tip(""); Text301 << Set Min Size(55, 34); Text301 << Set Max Size(2000, 34); Text301 << Set Auto Stretching(1, 0); Text305 << Background Color(2147483647); Text305 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text305 << Enabled(1); Text305 << Horizontal Alignment("Left"); Text305 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text305 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text305 << Text Color(2147483647); Text305 << Vertical Alignment("Top"); Text305 << Visibility("Visible"); Text305 << Set Base Font("Text"); Text305 << Set Font Name("Arial"); Text305 << Set Font Style("Plain"); Text305 << Set Font Size(22); Text305 << Set Font Scale(1); Text305 << Set Text("SplitterBox << Dockable(0 | 1)"); Text305 << Bullet point(1); Text305 << Font Color(0); Text305 << Justify Text("Left"); Text305 << Rotate Text("Horizontal"); Text305 << Set Width(680); Text305 << Set Wrap(664); Text305 << Set Tip(""); Text305 << Set Min Size(55, 34); Text305 << Set Max Size(2000, 34); Text305 << Set Auto Stretching(1, 0); Text306 << Background Color(2147483647); Text306 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text306 << Enabled(1); Text306 << Horizontal Alignment("Left"); Text306 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text306 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text306 << Text Color(2147483647); Text306 << Vertical Alignment("Top"); Text306 << Visibility("Visible"); Text306 << Set Base Font("Text"); Text306 << Set Font Name("Arial"); Text306 << Set Font Style("Plain"); Text306 << Set Font Size(22); Text306 << Set Font Scale(1); Text306 << Set Text("TabBox << Dockable(0 | 1)"); Text306 << Bullet point(1); Text306 << Font Color(0); Text306 << Justify Text("Left"); Text306 << Rotate Text("Horizontal"); Text306 << Set Width(680); Text306 << Set Wrap(664); Text306 << Set Tip(""); Text306 << Set Min Size(55, 34); Text306 << Set Max Size(2000, 34); Text306 << Set Auto Stretching(1, 0); Text307 << Background Color(2147483647); Text307 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text307 << Enabled(1); Text307 << Horizontal Alignment("Left"); Text307 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text307 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text307 << Text Color(2147483647); Text307 << Vertical Alignment("Top"); Text307 << Visibility("Visible"); Text307 << Set Base Font("Text"); Text307 << Set Font Name("Arial"); Text307 << Set Font Style("Plain"); Text307 << Set Font Size(22); Text307 << Set Font Scale(1); Text307 << Set Text("Platform << Report View(\!"Full\!" | \!"Summary\!")"); Text307 << Bullet point(1); Text307 << Font Color(0); Text307 << Justify Text("Left"); Text307 << Rotate Text("Horizontal"); Text307 << Set Width(680); Text307 << Set Wrap(664); Text307 << Set Tip(""); Text307 << Set Min Size(55, 34); Text307 << Set Max Size(2000, 34); Text307 << Set Auto Stretching(1, 0); Button8 << Background Color(2147483647); Button8 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button8 << Enabled(1); Button8 << Horizontal Alignment("Default"); Button8 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button8 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button8 << Text Color(2147483647); Button8 << Vertical Alignment("Default"); Button8 << Visibility("Visible"); Button8 << Set Button Name("Open Script"); Button8 << Style("Normal"); Button8 << Set(0); Button8 << Set Icon(""); Button8 << Set Icon Location("Right"); Button8 << Set Function(OpenDashScript); Button8 << Set Min Size(94, 19); Button8 << Set Max Size(94, 19); Button8 << Set Auto Stretching(0, 0); TabPage32 << Background Color(2147483647); TabPage32 << Border({Left(0), Top(0), Right(0), Bottom(0)}); TabPage32 << Enabled(1); TabPage32 << Horizontal Alignment("Default"); TabPage32 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); TabPage32 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); TabPage32 << Text Color(2147483647); TabPage32 << Vertical Alignment("Default"); TabPage32 << Visibility("Visible"); TabPage32 << Title("JSL2"); TabPage32 << Tip(""); TabPage32 << Icon(""); TabPage32 << Closeable(0); TabPage32 << Moveable(0); List283 << Background Color(2147483647); List283 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List283 << Enabled(1); List283 << Horizontal Alignment("Left"); List283 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List283 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List283 << Text Color(2147483647); List283 << Vertical Alignment("Top"); List283 << Visibility("Visible"); List283 << set horizontal(0); Scroll34 << Background Color(2); Scroll34 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Scroll34 << Enabled(1); Scroll34 << Horizontal Alignment("Left"); Scroll34 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Scroll34 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Scroll34 << Text Color(2147483647); Scroll34 << User Resizable({1, 1}); Scroll34 << Vertical Alignment("Top"); Scroll34 << Visibility("Visible"); Scroll34 << Width(777); Scroll34 << Height(600); Scroll34 << Set Auto Scrollable(0); Scroll34 << Set Scrollers(0, 1); Scroll34 << Set Show Empty(1); Scroll34 << Set Clip Printing(0); Scroll34 << Set Min Size(381, 36); Scroll34 << Set Max Size(30057, 30000); Scroll34 << Set Auto Stretching(1, 1); List284 << Background Color(2147483647); List284 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List284 << Enabled(1); List284 << Horizontal Alignment("Left"); List284 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List284 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List284 << Text Color(2147483647); List284 << Vertical Alignment("Top"); List284 << Visibility("Visible"); List284 << set horizontal(0); Spacer195 << Background Color(2147483647); Spacer195 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer195 << Enabled(1); Spacer195 << Horizontal Alignment("Left"); Spacer195 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer195 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer195 << Text Color(2147483647); Spacer195 << Vertical Alignment("Top"); Spacer195 << Visibility("Visible"); Spacer195 << Width(720); Spacer195 << Height(5); Spacer195 << Color(2147483647); Spacer195 << Set Fill(0); Spacer195 << Set Min Size(0, 0); Spacer195 << Set Max Size(30000, 30000); Spacer195 << Set Auto Stretching(1, 1); Text302 << Background Color(2147483647); Text302 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text302 << Enabled(1); Text302 << Horizontal Alignment("Center"); Text302 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text302 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text302 << Text Color(2147483647); Text302 << Vertical Alignment("Top"); Text302 << Visibility("Visible"); Text302 << Set Base Font("Text"); Text302 << Set Font Name("Arial"); Text302 << Set Font Style("Bold"); Text302 << Set Font Size(36); Text302 << Set Font Scale(1); Text302 << Set Text("JSL for Filters"); Text302 << Bullet point(0); Text302 << Font Color(0); Text302 << Justify Text("Left"); Text302 << Rotate Text("Horizontal"); Text302 << Set Width(-1); Text302 << Set Wrap(1000); Text302 << Set Tip(""); Text302 << Set Min Size(324, 56); Text302 << Set Max Size(324, 56); Text302 << Set Auto Stretching(0, 0); Spacer196 << Background Color(2147483647); Spacer196 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Spacer196 << Enabled(1); Spacer196 << Horizontal Alignment("Left"); Spacer196 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Spacer196 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Spacer196 << Text Color(2147483647); Spacer196 << Vertical Alignment("Top"); Spacer196 << Visibility("Visible"); Spacer196 << Width(720); Spacer196 << Height(40); Spacer196 << Color(2147483647); Spacer196 << Set Fill(0); Spacer196 << Set Min Size(0, 0); Spacer196 << Set Max Size(30000, 30000); Spacer196 << Set Auto Stretching(1, 1); List285 << Background Color(2147483647); List285 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List285 << Enabled(1); List285 << Horizontal Alignment("Default"); List285 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List285 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List285 << Text Color(2147483647); List285 << Vertical Alignment("Default"); List285 << Visibility("Visible"); List285 << set horizontal(1); List286 << Background Color(2147483647); List286 << Border({Left(0), Top(0), Right(0), Bottom(0)}); List286 << Enabled(1); List286 << Horizontal Alignment("Default"); List286 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); List286 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); List286 << Text Color(2147483647); List286 << Vertical Alignment("Default"); List286 << Visibility("Visible"); List286 << set horizontal(0); Text303 << Background Color(2147483647); Text303 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text303 << Enabled(1); Text303 << Horizontal Alignment("Left"); Text303 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text303 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text303 << Text Color(2147483647); Text303 << Vertical Alignment("Top"); Text303 << Visibility("Visible"); Text303 << Set Base Font("Text"); Text303 << Set Font Name("Arial"); Text303 << Set Font Style("Plain"); Text303 << Set Font Size(22); Text303 << Set Font Scale(1); Text303 << Set Text("DataFilterContextBox defines the filter extent"); Text303 << Bullet point(1); Text303 << Font Color(0); Text303 << Justify Text("Left"); Text303 << Rotate Text("Horizontal"); Text303 << Set Width(680); Text303 << Set Wrap(664); Text303 << Set Tip(""); Text303 << Set Min Size(55, 34); Text303 << Set Max Size(2000, 34); Text303 << Set Auto Stretching(1, 0); Text304 << Background Color(2147483647); Text304 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Text304 << Enabled(1); Text304 << Horizontal Alignment("Left"); Text304 << Margin({Left(0), Top(0), Right(0), Bottom(0)}); Text304 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Text304 << Text Color(2147483647); Text304 << Vertical Alignment("Top"); Text304 << Visibility("Visible"); Text304 << Set Base Font("Text"); Text304 << Set Font Name("Arial"); Text304 << Set Font Style("Plain"); Text304 << Set Font Size(22); Text304 << Set Font Scale(1); Text304 << Set Text("DataFilterSourceBox identifies the selection filter"); Text304 << Bullet point(1); Text304 << Font Color(0); Text304 << Justify Text("Left"); Text304 << Rotate Text("Horizontal"); Text304 << Set Width(680); Text304 << Set Wrap(664); Text304 << Set Tip(""); Text304 << Set Min Size(55, 34); Text304 << Set Max Size(2000, 34); Text304 << Set Auto Stretching(1, 0); Button9 << Background Color(2147483647); Button9 << Border({Left(0), Top(0), Right(0), Bottom(0)}); Button9 << Enabled(1); Button9 << Horizontal Alignment("Default"); Button9 << Margin({Left(2), Top(2), Right(2), Bottom(2)}); Button9 << Padding({Left(0), Top(0), Right(0), Bottom(0)}); Button9 << Text Color(2147483647); Button9 << Vertical Alignment("Default"); Button9 << Visibility("Visible"); Button9 << Set Button Name("Open Script"); Button9 << Style("Normal"); Button9 << Set(0); Button9 << Set Icon(""); Button9 << Set Icon Location("Right"); Button9 << Set Function(OpenFilterScript); Button9 << Set Min Size(94, 19); Button9 << Set Max Size(94, 19); Button9 << Set Auto Stretching(0, 0)))), Initialize(Module1 << Auto Launch(1); Module1 << Set Module Type("Report"); Module1 << Set Window Title("Building Dashboards in JMP"); Module1 << Set Min Size(0, 0); Module1 << Set Max Size(30000, 30000); Module1 << Set Auto Stretching(., .)))