<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Untitled Application</AppTitle>
	<AppShortName>MyApp</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>Apple iPhone 3G</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>320</PageWidth>
	<PageHeight>480</PageHeight>
	<AutoSizeWidth>True</AutoSizeWidth>
	<AutoSizeHeight>True</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<AppIcon>C:\Users\svann\OneDrive\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<LanguageCode>en</LanguageCode>
	<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"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<pageenter>.removes the space at the top of the Listbox
ListBoxDeleteItem &quot;Listbox1&quot; 0 

.removes the space at the top of the Combobox
ListBoxDeleteItem &quot;Combobox1&quot; 0

.display the selected items
ListBoxGetSelectedItem &quot;Listbox1&quot; [r1]
ConsoleLog &quot;Listbox1: [r1]&quot;

ListBoxGetSelectedItem &quot;Combobox1&quot; [r2]
ConsoleLog &quot;Combobox1: [r2]&quot;

ListBoxGetSelectedItem &quot;Dropdown1&quot; [r3]
ConsoleLog &quot;Dropdown1: [r3]&quot;</pageenter>
					<Components>
						<Rectangle id="Rectangle2">
							<left>21px</left>
							<top>5px</top>
							<width>256px</width>
							<height>116px</height>
							<style>fill:#8FBC8F;opacity:0.5;stroke:black;stroke-width:1px</style>
							<corner_radius>0</corner_radius>
						</Rectangle>
						<Rectangle id="Rectangle1">
							<left>21px</left>
							<top>139px</top>
							<width>256px</width>
							<height>116px</height>
							<style>fill:#8FBC8F;opacity:0.5;stroke:black;stroke-width:1px</style>
							<corner_radius>0</corner_radius>
						</Rectangle>
						<Listbox id="Listbox1">
							<left>29px</left>
							<top>34px</top>
							<width>61px</width>
							<height>48px</height>
							<items>A,B,C</items>
							<variable>[lb1]</variable>
							<init_value>B</init_value>
							<multi_select>False</multi_select>
						</Listbox>
						<Combobox id="Combobox1">
							<left>122px</left>
							<top>34px</top>
							<width>61px</width>
							<height>48px</height>
							<items>A,B,C</items>
							<variable>[lb2]</variable>
							<init_value>B</init_value>
							<multi_select>False</multi_select>
						</Combobox>
						<Dropdown id="Dropdown1">
							<left>204px</left>
							<top>34px</top>
							<width>61px</width>
							<height>48px</height>
							<items>A,B,C</items>
							<variable>[lb3]</variable>
							<init_value>B</init_value>
						</Dropdown>
						<Headline id="Headline1">
							<left>29px</left>
							<top>11px</top>
							<width>238px</width>
							<height>17px</height>
							<text>Design time</text>
							<kind>h5</kind>
						</Headline>
						<Headline id="Headline2">
							<left>29px</left>
							<top>146px</top>
							<width>238px</width>
							<height>17px</height>
							<text>Programmatically</text>
							<kind>h5</kind>
						</Headline>
						<Listbox id="Listbox2">
							<left>29px</left>
							<top>172px</top>
							<width>61px</width>
							<height>48px</height>
							<variable>[lb4]</variable>
							<multi_select>False</multi_select>
							<click>ListBoxGetSelectedIndex &quot;Listbox2&quot; [rl]
ConsoleLog &quot;Item selected on click: [rl]&quot;</click>
						</Listbox>
						<PushButton id="PushButton1">
							<left>122px</left>
							<top>174px</top>
							<width>112px</width>
							<height>25px</height>
							<caption>Populate</caption>
							<kind>primary</kind>
							<size>small</size>
							<click>ListBoxSize &quot;Listbox2&quot; [i]
Loop 1 [i] [li]
ListBoxDeleteItem &quot;Listbox2&quot; 1
endloop

ListBoxAddItem &quot;Listbox2&quot; &quot;A&quot; &quot;&quot;
ListBoxAddItem &quot;Listbox2&quot; &quot;B&quot; &quot;&quot;
ListBoxAddItem &quot;Listbox2&quot; &quot;C&quot; &quot;&quot;

.refresh
Wait 100
BeginJS
  $(&quot;#Listbox2 option&quot;).filter(function() {
    return $(this).text() == &quot;B&quot;;
  }).prop(&apos;selected&apos;, true);
EndJS
ListBoxGetSelectedIndex &quot;Listbox2&quot; [r2]
ConsoleLog &quot;Initial item selected: [r2]&quot;
EndWait



ListBoxGetSelectedIndex &quot;Listbox2&quot; [rl]
ConsoleLog &quot;Initial item selected: [rl]&quot;
</click>
						</PushButton>
						<PushButton id="PushButton2">
							<left>122px</left>
							<top>200px</top>
							<width>112px</width>
							<height>25px</height>
							<caption>Reset</caption>
							<kind>danger</kind>
							<size>small</size>
							<click>ListBoxSize &quot;Listbox2&quot; [i]
Loop 1 [i] [li]
ListBoxDeleteItem &quot;Listbox2&quot; 1
endloop</click>
						</PushButton>
					</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>320px</width>
							<height>480px</height>
							<close_button>False</close_button>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
