<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Application sans titre</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>Desktop</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>1280</PageWidth>
	<PageHeight>800</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<ResponsiveSize>False</ResponsiveSize>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>E:\Philippe\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<LanguageCode>en</LanguageCode>
	<DisplayMode>standalone</DisplayMode>
	<ServiceWorker>Offline page</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="LoadMydata">
					<Code>neoTableResetColumns &quot;Container1&quot;
neoTableEditColumnAsText &quot;Container1&quot; &quot;2&quot; &quot;inline&quot; &quot;&quot; &quot;&quot; &quot;&quot; false &quot;&quot; false &quot;&quot;
neoTableEditColumnAsText &quot;Container1&quot; &quot;3&quot; &quot;inline&quot; &quot;&quot; &quot;&quot; &quot;&quot; false &quot;&quot; false &quot;&quot;
neoTableSetColumn &quot;Container1&quot; 1 &quot;id&quot; &quot;Id&quot; &quot;&quot; false false false &quot;&quot;
neoTableSetColumn &quot;Container1&quot; 2 &quot;name&quot; &quot;First Name&quot; &quot;&quot; false true true &quot;&quot;
neoTableSetColumn &quot;Container1&quot; 3 &quot;surname&quot; &quot;Last Name&quot; &quot;&quot; true true true &quot;fmtSurname&quot;
neoTableSetColumn &quot;Container1&quot; 4 &quot;age&quot; &quot;Age&quot; &quot;&quot; true false false &quot;fmtAge&quot;

neoTableInitTable &quot;Container1&quot; &quot;&quot; 0 &quot;Table&quot; false false false false false &quot;&quot;

neoTableLoadData &quot;Container1&quot; [mydata]

ArrayCopy [mydata] 0 8 [array1]
LoadArray1
SetVar [array2] [mydata]
LoadArray2</Code>
				</Function>
				<Function name="LoadArray1">
					<Code>neoTableResetColumns &quot;Container2&quot;
neoTableSetColumn &quot;Container2&quot; 1 &quot;id&quot; &quot;Id&quot; &quot;&quot; false false false &quot;&quot;
neoTableSetColumn &quot;Container2&quot; 2 &quot;name&quot; &quot;First Name&quot; &quot;&quot; false false true &quot;&quot;
neoTableSetColumn &quot;Container2&quot; 3 &quot;surname&quot; &quot;Last Name&quot; &quot;&quot; true false true &quot;fmtSurname&quot;
neoTableSetColumn &quot;Container2&quot; 4 &quot;age&quot; &quot;Age&quot; &quot;&quot; true false false &quot;fmtAge&quot;

neoTableInitTable &quot;Container2&quot; &quot;&quot; 0 &quot;Table&quot; false false false false false &quot;&quot;

neoTableLoadData &quot;Container2&quot; [array1]
</Code>
				</Function>
				<Function name="LoadArray2">
					<Code>neoTableResetColumns &quot;Container3&quot;
neoTableSetColumn &quot;Container3&quot; 1 &quot;id&quot; &quot;Id&quot; &quot;&quot; false false false &quot;&quot;
neoTableSetColumn &quot;Container3&quot; 2 &quot;name&quot; &quot;First Name&quot; &quot;&quot; false false true &quot;&quot;
neoTableSetColumn &quot;Container3&quot; 3 &quot;surname&quot; &quot;Last Name&quot; &quot;&quot; true false true &quot;fmtSurname&quot;
neoTableSetColumn &quot;Container3&quot; 4 &quot;age&quot; &quot;Age&quot; &quot;&quot; true false false &quot;fmtAge&quot;

neoTableInitTable &quot;Container3&quot; &quot;&quot; 0 &quot;Table&quot; false false false false false &quot;&quot;

neoTableLoadData &quot;Container3&quot; [array2]
</Code>
				</Function>
			</Components>
		</FunctionList>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<pageenter>CreateEmptyArray [mydata]

.Then we populate the array with data
.double click on any command to bring up the code wizard and better understand what&apos;s happening.

.id field has a unique value per row
Loop 0 9 [idnumber]
  neoTableSetData [mydata] [idnumber] &quot;id&quot; [idnumber]
EndLoop

.first row
neoTableSetData [mydata] 0 &quot;name&quot; &quot;John&quot;
neoTableSetData [mydata] 0 &quot;surname&quot; &quot;Travolta&quot;
neoTableSetData [mydata] 0 &quot;age&quot; 64

.second row
neoTableSetData [mydata] 1 &quot;name&quot; &quot;Tom&quot;
neoTableSetData [mydata] 1 &quot;surname&quot; &quot;Cruise&quot;
neoTableSetData [mydata] 1 &quot;age&quot; 56

.third row
neoTableSetData [mydata] 2 &quot;name&quot; &quot;Melanie&quot;
neoTableSetData [mydata] 2 &quot;surname&quot; &quot;Griffith&quot;
neoTableSetData [mydata] 2 &quot;age&quot; 61

.fourth row
neoTableSetData [mydata] 3 &quot;name&quot; &quot;Kate&quot;
neoTableSetData [mydata] 3 &quot;surname&quot; &quot;Winslet&quot;
neoTableSetData [mydata] 3 &quot;age&quot; 43

.more rows...
neoTableSetData [mydata] 4 &quot;name&quot; &quot;Meryl&quot;
neoTableSetData [mydata] 4 &quot;surname&quot; &quot;Streep&quot;
neoTableSetData [mydata] 4 &quot;age&quot; 69

neoTableSetData [mydata] 5 &quot;name&quot; &quot;Liam&quot;
neoTableSetData [mydata] 5 &quot;surname&quot; &quot;Neeson&quot;
neoTableSetData [mydata] 5 &quot;age&quot; 66

neoTableSetData [mydata] 6 &quot;name&quot; &quot;Angelina&quot;
neoTableSetData [mydata] 6 &quot;surname&quot; &quot;Jolie&quot;
neoTableSetData [mydata] 6 &quot;age&quot; 43

neoTableSetData [mydata] 7 &quot;name&quot; &quot;Susan&quot;
neoTableSetData [mydata] 7 &quot;surname&quot; &quot;Sarandon&quot;
neoTableSetData [mydata] 7 &quot;age&quot; 72


neoTableSetData [mydata] 8 &quot;name&quot; &quot;Little&quot;
neoTableSetData [mydata] 8 &quot;surname&quot; &quot;McJohn&quot;
neoTableSetData [mydata] 8 &quot;age&quot; 9999

neoTableSetData [mydata] 9 &quot;name&quot; &quot;Magic&quot;
neoTableSetData [mydata] 9 &quot;surname&quot; &quot;Johnson&quot;
neoTableSetData [mydata] 9 &quot;age&quot; 59

LoadMydata</pageenter>
					<Components>
						<Container id="Container1">
							<left>193px</left>
							<top>306px</top>
							<width>341px</width>
							<height>369px</height>
							<style>background-color:#fff;border-style:solid;border-width:1px;overflow-y:auto</style>
						</Container>
						<Container id="Container2">
							<left>558px</left>
							<top>24px</top>
							<width>408px</width>
							<height>361px</height>
							<style>background-color:#fff;border-style:solid;border-width:1px;overflow-y:auto</style>
						</Container>
						<Container id="Container3">
							<left>560px</left>
							<top>405px</top>
							<width>406px</width>
							<height>372px</height>
							<style>background-color:#fff;border-style:solid;border-width:1px;overflow-y:auto</style>
						</Container>
						<Headline id="Headline1">
							<left>1027px</left>
							<top>137px</top>
							<width>210px</width>
							<height>105px</height>
							<text>Array 1&lt;br&gt; (ArrayCopy)</text>
							<kind>h2</kind>
						</Headline>
						<Headline id="Headline2">
							<left>1031px</left>
							<top>527px</top>
							<width>209px</width>
							<height>95px</height>
							<text>Array 2&lt;br&gt;(SetVar)</text>
							<kind>h2</kind>
						</Headline>
						<Headline id="Headline3">
							<left>302px</left>
							<top>255px</top>
							<width>121px</width>
							<height>47px</height>
							<text>Mydata</text>
							<kind>h2</kind>
						</Headline>
						<Container id="Container4">
							<left>194px</left>
							<top>104px</top>
							<width>349px</width>
							<height>116px</height>
							<style>border-width:1px;border-style:solid;background-color:#fff;</style>
							<html>Update any First Name or Last Name of Mydata&lt;br&gt;

After click on Reload, the arrays are also updated with no code.</html>
						</Container>
						<PushButton id="PushButton1">
							<left>243px</left>
							<top>735px</top>
							<width>125px</width>
							<height>38px</height>
							<caption>Reload 1 &amp; 2</caption>
							<click>LoadArray1

LoadArray2</click>
						</PushButton>
						<Headline id="Headline4">
							<left>60px</left>
							<top>20px</top>
							<width>434px</width>
							<height>47px</height>
							<style>background-color:#FFEBCD</style>
							<text>Problem with copy arrays</text>
						</Headline>
					</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>600px</width>
							<height>800px</height>
							<close_button>False</close_button>
							<kind>custom</kind>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
