Thanks Bill, that illustrates it very well.&nbsp; I tend to think of / use screen as being a handy way to position the cursor, not a sort of shelling out process, so tt wouldn't be the behaviour I would intuit.&nbsp; <br><br>Tyler<br>
<br>Message: 1<br>Date: Fri, 17 Feb 2006 16:37:19 -0500<br>From: &quot;William Randall&quot; &lt;<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:wrandall@fptech.com">wrandall@fptech.com</a>&gt;<br>Subject: Re: GOSUB and SCREEN and closer reading....
<br>To: &lt;<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:filepro-list@lists.celestial.com">filepro-list@lists.celestial.com</a>&gt;<br>Message-ID: &lt;08ac01c6340a$54fb4af0$cd00a8c0<div id="mb_0">
@bill64&gt;<br>Content-Type: text/plain; format=flowed; charset=&quot;iso-8859-1&quot;;<br> &nbsp; &nbsp; &nbsp; &nbsp;reply-type=original<br><br>I used this in a class that I gave to demonstrate filePro logic on the<br>screen command. &nbsp;If you try it, you might understand it better or you may
<br>just understand from reading it.<br><br>top:::<br>::msgbox &quot;Now I am proceessing from the top of the table where I belong&quot;:<br>::end:<br>@keys:::<br>::gosub chkthis:<br>::msgbox &quot;Made it back to where I started&quot; ; goto top:
<br>chkthis:::<br>::screen &quot;0&quot;:<br>::msgbox &quot;I came back here&quot;:<br>::msgbox &quot;I think I should return&quot; ; return:<br><br>Bill</div>