<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Entry Parse</AppTitle>
	<AppShortName>MABOT</AppShortName>
	<Author>Author name</Author>
	<Version>1.0</Version>
	<DesignDeviceName>Desktop</DesignDeviceName>
	<Variables>[AjaxData],[barraprogreso_login],[bbdd_conn_array([items_array])],[bbdd_conn_array(0)],[bbdd_conn_array],[bbdd_conn_cfg],[bbdd_conn_pass],[bbdd_conn_string],[bbdd_conn_user],[bbdd_conn_val],[Data],[edad],[Empty],[items_array],[items_array_length],[m],[menu],[Nombre],[password],[radio_user],[ReturnStatus],[s],[Score],[souser],[Status],[timer],[user_connect],[usuario],[v_dsn],[v_flow],[v_mail],[v_nombre],[v_usuario]</Variables>
	<VariablesScanned>True</VariablesScanned>
	<PageWidth>1280</PageWidth>
	<PageHeight>800</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<WebBuildTarget>D:\Xampp\htdocs\fill_combobox</WebBuildTarget>
	<MobileBuildTarget>C:\Users\yapssr\OneDrive - TERNIUM\Proyectos\NeoPython\Compilado\neosinf.zip</MobileBuildTarget>
	<AppIcon>C:\Users\yapssr\Documents\VisualNeoWeb\Libraries\img\default-icon.png</AppIcon>
	<LanguageCode>es</LanguageCode>
	<IsPWA>True</IsPWA>
	<IsNWJS>True</IsNWJS>
	<ThemeColor>#000000</ThemeColor>
	<MobileOSTypes>[AndroidOS,iOS,WindowsPhoneOS]</MobileOSTypes>
	<WindowState>normal</WindowState>
	<TitleBar>False</TitleBar>
	<Sizeable>False</Sizeable>
	<MaximizeBtn>False</MaximizeBtn>
	<MinimizeBtn>False</MinimizeBtn>
	<SystemMenu>False</SystemMenu>
	<ContextMenu>False</ContextMenu>
	<AlwaysOnTop>False</AlwaysOnTop>
	<ShowInTaskbar>False</ShowInTaskbar>
	<SingleInstance>False</SingleInstance>
	<ChromeKioskMode>False</ChromeKioskMode>
	<startup>slCenterApp 1280 800
slAppBackgroundColor &quot;#efefef&quot;
slSetCSSProperty &quot;Home&quot; &quot;border&quot; &quot;1px solid black&quot;
slSetCSSProperty &quot;Home&quot; &quot;overflow&quot; &quot;hidden&quot;</startup>
	<Components>
		<FunctionList name="Subroutines">
			<Components>
				<Function name="Logout">
					<Code>LoadApp &quot;http://localhost&quot;
.SetVar [password] &quot;&quot;
.SetVar [user_connect] &quot;&quot;</Code>
				</Function>
				<Function name="Checktime">
					<Code>Math &quot;([s]+1)&quot; 0 [s]
If [s] == 60
  SetVar [s] 0
  Math &quot;([m]+1)&quot; 0 [m]
EndIf</Code>
				</Function>
			</Components>
		</FunctionList>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="parse">
					<background_masterpage>MastePage</background_masterpage>
					<pageenter> .Leo el archivo para conocer las entradas escritas
    .read the file (i put this is on page enter)
    FileToVar &quot;http://localhost/fill_Combobox/bbdd_conn.txt&quot; [bbdd_conn_cfg]</pageenter>
					<Components>
						<Container id="Container2">
							<left>328px</left>
							<top>120px</top>
							<width>648px</width>
							<height>200px</height>
							<style>color:#000000;background-color:#A8A8A8;border-style:solid;border-width:1px;box-shadow:0px 0px 10px black</style>
							<Components>
								<Combobox id="bbdd_conn_combox">
									<left>16px</left>
									<top>64px</top>
									<width>612px</width>
									<height>32px</height>
									<style>font-size:10pt;font-weight:bold;box-shadow:0px 0px 10px black</style>
									<prop_name>bbdd_conn_val</prop_name>
									<variable>[bbdd_conn_val]</variable>
									<multi_select>False</multi_select>
								</Combobox>
								<Paragraph id="Paragraph9">
									<left>16px</left>
									<top>16px</top>
									<width>224px</width>
									<height>24px</height>
									<style>color:#000000;font-size:10pt;font-weight:bold</style>
									<text>String de conexión a la bbdd:</text>
								</Paragraph>
								<PushButton id="PushButton1">
									<left>224px</left>
									<top>128px</top>
									<width>216px</width>
									<height>40px</height>
									<caption>Cargar entradas de bbdd</caption>
									<click>DeleteVar [items_array_length]
SetVar [items_array_length] 0
If [items_array_length] == 0
    .Leo el archivo para conocer las entradas escritas
    .Paseo las lineas separadas por coma (,)
    .parsing the lines by (,)
    StrParse &quot;[bbdd_conn_cfg]&quot; &quot;,&quot; [bbdd_conn_array]
    .traigo el largo de la cadena que sería 4 en este ejemplo
    ArrayLen [bbdd_conn_array] [items_array_length]
    .Seteo la variable items_array en 0 para empezar el calculo
     SetVar [items_array] 0
           .Adiciono el primer array (0)
           ListBoxAddItem &quot;bbdd_conn_combox&quot; &quot;[bbdd_conn_array(0)]&quot; &quot;[bbdd_conn_array(0)]&quot;
           .mientras el items_array sera menor que el largo total del array formado aumenta en 1}
           .while items_array be less than or equal items_array_length sum 1
           While [items_array] &lt; [items_array_length]
                 .sumo +1
                 Math &quot;([items_array]+1)&quot; 0 [items_array]
                 .AlertBox &quot;Prueba&quot; &quot;El valor del array es: [items_array]&quot; &quot;&quot;
                 .ListBoxAddItem &quot;bbdd_conn_combox&quot; &quot;[bbdd_conn_array(0)]&quot; &quot;[bbdd_conn_array(0)]&quot;
                 .Add a new item array to the combobox until complete items_array_length
                 ListBoxAddItem &quot;bbdd_conn_combox&quot; &quot;[bbdd_conn_array([items_array])]&quot; &quot;[bbdd_conn_array([items_array])]&quot;
           EndWhile
    ListBoxSort &quot;bbdd_conn_combox&quot;
EndIf</click>
								</PushButton>
							</Components>
						</Container>
					</Components>
				</Page>
			</Components>
		</PageList>
		<PageList name="Master">
			<Components>
				<Page id="MastePage">
					<Components>
						<Container id="ContainerMenu">
							<left>0px</left>
							<top>0px</top>
							<width>1280px</width>
							<height>280px</height>
							<style>background-color:#FFFFFF</style>
							<align>top</align>
						</Container>
						<Container id="Container1">
							<left>0px</left>
							<top>728px</top>
							<width>1280px</width>
							<height>72px</height>
							<style>background-color:#FFFFFF;padding-left:4px;overflow-y:auto</style>
						</Container>
					</Components>
				</Page>
			</Components>
		</PageList>
		<PageList name="Dialog">
			<Components>
				<Page id="NewDialog">
					<Components>
						<DialogContainer id="DialogContainer1">
							<left>0px</left>
							<top>0px</top>
							<width>640px</width>
							<height>480px</height>
							<close_button>False</close_button>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
