<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>neoSql Sample App</AppTitle>
	<AppShortName>neoSql</AppShortName>
	<Author>SinLios</Author>
	<Version>1.0</Version>
	<Description>neoSql Sample App</Description>
	<DesignDeviceName>Samsung Galaxy Tab 7</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>1024</PageWidth>
	<PageHeight>600</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>C:\Users\sinli\OneDrive\Documentos\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<CustomCSS>.cabecera{
   font-weight:bold;
}
.neobody, .neopage{
      width:100%;
      height:100%;
      margin-top:0px;
      max-width:1024px;
}
.neopage{
      overflow:visible!important;
}</CustomCSS>
	<LanguageCode>en</LanguageCode>
	<DisplayMode>standalone</DisplayMode>
	<ServiceWorker>OfflineCopyOfPages</ServiceWorker>
	<ThemeColor>#000000</ThemeColor>
	<MobileOSTypes>[AndroidOS,iOS,WindowsPhoneOS]</MobileOSTypes>
	<WindowState>normal</WindowState>
	<TitleBar>True</TitleBar>
	<Sizeable>True</Sizeable>
	<MaximizeBtn>False</MaximizeBtn>
	<MinimizeBtn>True</MinimizeBtn>
	<SystemMenu>True</SystemMenu>
	<ContextMenu>False</ContextMenu>
	<AlwaysOnTop>False</AlwaysOnTop>
	<ShowInTaskbar>True</ShowInTaskbar>
	<SingleInstance>False</SingleInstance>
	<ChromeKioskMode>False</ChromeKioskMode>
	<Components>
		<FunctionList name="Subroutines">
			<Components>
				<Function name="parseData">
					<Code>ConsoleLog [data(0)]</Code>
				</Function>
			</Components>
		</FunctionList>
		<LibraryList name="Libraries">
			<Components>
				<LibraryItem>
					<FileName>sample.xlsx</FileName>
				</LibraryItem>
			</Components>
		</LibraryList>
		<PageList name="Main">
			<Components>
				<Page id="home">
					<style>overflow-x:visible;overflow-y:visible;bottom:0px</style>
					<pageenter>AppPosition &quot;top&quot; &quot;center&quot;</pageenter>
					<Components>
						<TextInput id="TextInput1">
							<left>16px</left>
							<top>144px</top>
							<width>85%</width>
							<height>40px</height>
							<variable>[theQuery]</variable>
							<init_value>SELECT * FROM ? WHERE City LIKE &apos;Ba%&apos; ORDER BY FirstName</init_value>
							<place_holder>SELECT * FROM ? WHERE City LIKE &apos;Ba%&apos; ORDER BY FirstName</place_holder>
						</TextInput>
						<Paragraph id="Paragraph1">
							<left>16px</left>
							<top>120px</top>
							<width>104px</width>
							<height>24px</height>
							<style>font-weight:bold</style>
							<text>SQL Query:</text>
						</Paragraph>
						<Headline id="Headline1">
							<left>0px</left>
							<top>0px</top>
							<width>100%</width>
							<height>104px</height>
							<style>color:#FFFAFA;text-align:center;background-color:#DF7326;padding-top:10px</style>
							<text>neoSql Sample</text>
						</Headline>
						<Paragraph id="Paragraph2">
							<left>0px</left>
							<top>45px</top>
							<width>100%</width>
							<height>56px</height>
							<style>color:#FFFAFA;text-align:center</style>
							<text>&lt;h4&gt;SQL over .xlsx Excel files&lt;br&gt;No server side scripting&lt;h4&gt;</text>
						</Paragraph>
						<PushButton id="PushButton1">
							<top>144px</top>
							<width>62px</width>
							<height>40px</height>
							<style>color:#FFFAFA;font-weight:bold;background-color:#015475;right:85px</style>
							<caption>SQL</caption>
							<kind>custom</kind>
							<click>neoSqlExcel &quot;sample.xlsx&quot; &quot;sheet1&quot; &quot;[theQuery]&quot; [data] &quot;parseData&quot;</click>
						</PushButton>
						<PushButton id="PushButton3">
							<top>144px</top>
							<width>62px</width>
							<height>40px</height>
							<style>color:#FFFAFA;font-weight:bold;background-color:#015475;right:20px</style>
							<caption>Save</caption>
							<kind>custom</kind>
							<click>neoSqlSaveExcel &quot;queryresult.xlsx&quot; [data]</click>
						</PushButton>
						<Container id="Container7">
							<left>0px</left>
							<top>200px</top>
							<width>100%</width>
							<style>background-color:#fff</style>
							<html>&lt;span ng-repeat=&quot;datafield in data&quot;&gt;
  &lt;div class=&quot;panel-primary col-sm-6&quot; style=&quot;margin-bottom:20px;&quot;&gt;
        &lt;div class=&quot;panel-heading&quot; style=&quot;background:#DF7326;&quot;&gt;[datafield.FirstName] [datafield.LastName]&lt;/div&gt;
        &lt;div class=&quot;panel-body&quot; style=&quot;padding:0px;&quot;&gt;
             &lt;table style=&quot;text-align:left;&quot; class=&quot;table table-striped&quot;&gt;
                    &lt;tr&gt;
                      &lt;td class=&quot;cabecera&quot;&gt;Company Name:&lt;/td&gt;
                      &lt;td&gt;[datafield.CompanyName]&lt;/td&gt;
                    &lt;/tr&gt;
                    &lt;tr&gt;
                      &lt;td class=&quot;cabecera&quot;&gt;Address:&lt;/td&gt;
                      &lt;td&gt;[datafield.Address]&lt;/td&gt;
                    &lt;/tr&gt;
                    &lt;tr&gt;
                      &lt;td class=&quot;cabecera&quot;&gt;City:&lt;/td&gt;
                      &lt;td&gt;[datafield.City]&lt;/td&gt;
                    &lt;/tr&gt;
                    &lt;tr&gt;
                      &lt;td class=&quot;cabecera&quot;&gt;State:&lt;/td&gt;
                      &lt;td&gt;[datafield.State]&lt;/td&gt;
                    &lt;/tr&gt;
             &lt;/table&gt;
        &lt;/div&gt;
  &lt;/div&gt;
  &lt;div ng-if=&quot;[$odd]==&apos;true&apos;&quot; class=&quot;row&quot;&gt;&lt;/div&gt;
&lt;/span&gt;</html>
						</Container>
					</Components>
				</Page>
			</Components>
		</PageList>
		<PageList name="Master">
			<Components>
				<Page id="MasterPage"/>
			</Components>
		</PageList>
		<PageList name="Dialog">
			<Components>
				<Page id="NewDialog">
					<Components>
						<DialogContainer id="DialogContainer1">
							<left>0px</left>
							<top>0px</top>
							<width>1024px</width>
							<height>600px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
