Re: [Ql-Users] TYPE_IN

2017-10-06 Thread Michael Bulford via Ql-Users
Hi Lee, Yes, I am most satisfied, thanks so much, yours is a very nice reply. I was thinking first off perhaps you was up to doing some SBASIC self-modifying code - I wonder if anyone has ever tried this. There could be some instances where doing this could make the code more efficient - who kn

Re: [Ql-Users] TYPE_IN

2017-10-04 Thread Lee Privett via Ql-Users
Thanks guys and especially to Michael, and to his last few questions. Firstly I placed the query (cut down) to avoid a lengthy and possibly boring explanation I am periodically (while I can) in pre-production of a lengthy project that I have dabbled in over the last two years and as I think about a

Re: [Ql-Users] TYPE_IN

2017-10-04 Thread Michael Bulford via Ql-Users
Hi all, I am hoping now to explain what is going on. First, here is some code that does work .. 100 DIM Top$ (100) : Top$ = "REMark " & FILL$( "*" ,20) 110 DIM Final$(100) : Final$ = "REMark " & FILL$("text",20) 120 An = 2 1920 TYPE_IN An&":"&CHR$(10) 1930 TYPE_IN (An+1)&Top$&CHR

Re: [Ql-Users] TYPE_IN

2017-10-02 Thread Derek via Ql-Users
-us...@q-v-d.com Cc: Tobias Fröschle Subject: Re: [Ql-Users] TYPE_IN Lee, are you running on SMSQ/E? Are you maybe running PE with PE_BGOFF? That will not allow your background program to run when it has (even partially) obstructed windows. So, if you "TYPE_IN" something into an ob

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Tobias Fröschle via Ql-Users
Lee, are you running on SMSQ/E? Are you maybe running PE with PE_BGOFF? That will not allow your background program to run when it has (even partially) obstructed windows. So, if you "TYPE_IN" something into an obstructed S*Basic window, the job owning that window will not be able to digest you

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Michael Bulford via Ql-Users
> Fellow QL'ers > > I have a slight problem with TYPE_IN > > Using it to put some commands in #0, works well in an instance until I > reach what appears to be a maximum set of characters, where the QL just > hangs. > > e.g. > > 1920 TYPE_IN An&":"&CHR$(10) > 1930 TYPE_IN (An+1)&

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Lee Privett via Ql-Users
Yes the string is about 60 characters long which is probably why it fails on the third TYPE_IN tried using Pause to no effect :( Lee Virus-free. www.avast.com

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Derek via Ql-Users
Hi, Why just allocate section memory to save the keyboard buffer. RegardsDerek Original message From: Wolfgang Lenerz via Ql-Users Date: 30/09/2017 13:38 (GMT+00:00) To: ql-us...@q-v-d.com Cc: Wolfgang Lenerz Subject: Re: [Ql-Users] TYPE_IN Or perhaps even directly into

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Wolfgang Lenerz via Ql-Users
Or perhaps even directly into channel #0... Wolfgang Hi, Is it possibile to extend the 128 byte QL keyboard buffer. Hi, no once allocated, I don't think you can extend it. Was TYPE_IN an a attempt to do this? I don't know, wasn't it just a keyword to type things into the keyboard queue

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Wolfgang Lenerz via Ql-Users
RegardsDerek Original message From: Wolfgang Lenerz via Ql-Users Date: 30/09/2017 12:38 (GMT+00:00) To: ql-us...@q-v-d.com Cc: Wolfgang Lenerz Subject: Re: [Ql-Users] TYPE_IN Hi, I have a slight problem with TYPE_IN Using it to put some commands in #0, works well in an instanc

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Tobias Fröschle via Ql-Users
om: Wolfgang Lenerz via Ql-Users > Date: 30/09/2017 12:38 (GMT+00:00) To: > ql-us...@q-v-d.com Cc: Wolfgang Lenerz Subject: Re: > [Ql-Users] TYPE_IN > Hi, > >> I have a slight problem with TYPE_IN >> >> Using it to put some commands in #0, works well in a

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Derek via Ql-Users
Hi, Is it possibile to extend the 128 byte QL keyboard buffer. Was TYPE_IN an a attempt to do this? RegardsDerek Original message From: Wolfgang Lenerz via Ql-Users Date: 30/09/2017 12:38 (GMT+00:00) To: ql-us...@q-v-d.com Cc: Wolfgang Lenerz Subject: Re: [Ql-Users] TYPE_IN

Re: [Ql-Users] TYPE_IN

2017-09-30 Thread Wolfgang Lenerz via Ql-Users
Hi, I have a slight problem with TYPE_IN Using it to put some commands in #0, works well in an instance until I reach what appears to be a maximum set of characters, where the QL just hangs. e.g. 1920 TYPE_IN An&":"&CHR$(10) 1930 TYPE_IN (An+1)&Top$&CHR$(10) 1932 TYPE_IN (An+2)&Final$&CHR$

[Ql-Users] TYPE_IN

2017-09-30 Thread Lee Privett via Ql-Users
Fellow QL'ers I have a slight problem with TYPE_IN Using it to put some commands in #0, works well in an instance until I reach what appears to be a maximum set of characters, where the QL just hangs. e.g. 1920 TYPE_IN An&":"&CHR$(10) 1930 TYPE_IN (An+1)&Top$&CHR$(10) 1932 TYPE_IN (An+2)&Fin