![]() |
| The AccuTerm forum has moved. Go to community.rocketsoftware.com to register for the new Rocket forum. |
|
Post Reply
|
| Author | |
ralph
Newbie
Joined: July 06 2008 Location: Australia Status: Offline Points: 3 |
Post Options
Thanks(0)
Quote Reply
Topic: Wyse60 emulation problemPosted: July 28 2008 at 3:29pm |
|
FOR I = 1 TO 3
CRT @(0,23):'HELLO'
NEXT I When I run the above code on a dynamic connect in wyse60 mode I get the following output. HELLO
HELLO
HELLO
When run on AccuTerm in wyse60 mode I get the following output.
HELLO
To make it work the same as Dynamic connect on AccuTerm I have to change the code to the following.
FOR I = 1 TO 3
CRT @(0,23):'HELLO'
CRT
NEXT I The above code would produce this on Dynamic Connect.
HELLO
HELLO
HELLO
On AccuTerm it produces.
HELLO
HELLO
HELLO
It appears to be a bug in the AccuTerm emulator. |
|
![]() |
|
giannimaione
Groupie
Joined: April 29 2006 Location: Italy Status: Offline Points: 64 |
Post Options
Thanks(0)
Quote Reply
Posted: July 28 2008 at 6:07pm |
|
Try:
CRT@(0,23):'HELLO': or change number of rows in Accuterm Settings -- 4 Screen -- Normal rows |
|
|
Gianni Maione
|
|
![]() |
|
ralph
Newbie
Joined: July 06 2008 Location: Australia Status: Offline Points: 3 |
Post Options
Thanks(0)
Quote Reply
Posted: July 28 2008 at 9:19pm |
|
Thanks Gianni, Changing the number of rows from 25 to 24 fixes the problem. I am not sure how it was set to 25. It makes sense that the code would not work when the number of rows is set to 25.
|
|
![]() |
|
Post Reply
|
|
|
Tweet
|
| Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |