<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
		<id>https://de.arcowiki.com/index.php?action=history&amp;feed=atom&amp;title=W%C3%A4hlen_Sie_einen_Teil_eines_Programms</id>
		<title>Wählen Sie einen Teil eines Programms - Versionsgeschichte</title>
		<link rel="self" type="application/atom+xml" href="https://de.arcowiki.com/index.php?action=history&amp;feed=atom&amp;title=W%C3%A4hlen_Sie_einen_Teil_eines_Programms"/>
		<link rel="alternate" type="text/html" href="https://de.arcowiki.com/index.php?title=W%C3%A4hlen_Sie_einen_Teil_eines_Programms&amp;action=history"/>
		<updated>2026-04-09T14:01:07Z</updated>
		<subtitle>Versionsgeschichte dieser Seite in ArcoWiki</subtitle>
		<generator>MediaWiki 1.29.1</generator>

	<entry>
		<id>https://de.arcowiki.com/index.php?title=W%C3%A4hlen_Sie_einen_Teil_eines_Programms&amp;diff=297&amp;oldid=prev</id>
		<title>Slia: Die Seite wurde neu angelegt: „During the creation of a DMIS program, it might be necessary to ask the user to make a choice and then the program will execute accordingly.&lt;br /&gt; In order…“</title>
		<link rel="alternate" type="text/html" href="https://de.arcowiki.com/index.php?title=W%C3%A4hlen_Sie_einen_Teil_eines_Programms&amp;diff=297&amp;oldid=prev"/>
				<updated>2018-06-15T09:48:23Z</updated>
		
		<summary type="html">&lt;p&gt;Die Seite wurde neu angelegt: „During the creation of a &lt;a href=&quot;/index.php/DMIS&quot; title=&quot;DMIS&quot;&gt;DMIS&lt;/a&gt; program, it might be necessary to ask the user to make a choice and then the program will execute accordingly.&amp;lt;br /&amp;gt; In order…“&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;During the creation of a [[DMIS]] program, it might be necessary to ask the user to make a choice and then the program will execute accordingly.&amp;lt;br /&amp;gt;&lt;br /&gt;
In order to do so the commands [[Select Case|SELECT CASE]] and [[JumpTo|JUMPTO]] are useful tools.&amp;lt;br /&amp;gt;&lt;br /&gt;
This example shows how to ask an user input and then using the combination of a [[Select Case|SELECT CASE]] structure with [[JumpTo|JUMPTO]] commands to reach the part of the program required.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;(ASK_AGAIN)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;TEXT/QUERY,(AN_QUERY),40,N,L,'DO YOU WANT TO [[Jump|JUMP]] SOMEWHERE? (PRESS 0 FOR NO, 1 FOR YES)'&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;SELECT/AN_QUERY&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;CASE/0&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;JUMPTO/(SELECTED_NO)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;ENDCAS&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;CASE/1&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;JUMPTO/(SELECTED_YES)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;ENDCAS&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;DFTCAS&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;JUMPTO/(ASK_AGAIN)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;ENDCAS&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;ENDSEL&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;(SELECTED_NO)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;TEXT/OPER,'YOU SELECTED NO'&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;JUMPTO/(END_PROGRAM)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;(SELECTED_YES)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
::&amp;lt;code&amp;gt;TEXT/OPER,'YOU SELECTED YES'&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;(END_PROGRAM)&amp;lt;/code&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[it:Seleziona una parte di un programma]]&lt;br /&gt;
[[zh-cn:选择一个程序的一部分]]&lt;br /&gt;
[[pt:Selecione uma parte de um programa]]&lt;br /&gt;
[[de:Wählen Sie einen Teil eines Programms]]&lt;br /&gt;
[[es:Seleccione una porción de un programa]]&lt;br /&gt;
[[en:Select a Portion of a Program]]&lt;/div&gt;</summary>
		<author><name>Slia</name></author>	</entry>

	</feed>