dbTalk Databases Forums  

Extending Terminal Length in Dynamic Connect

comp.databases.pick comp.databases.pick


Discuss Extending Terminal Length in Dynamic Connect in the comp.databases.pick forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
rgisi@nortom.com
 
Posts: n/a

Default Extending Terminal Length in Dynamic Connect - 09-14-2005 , 11:41 AM






Has anyone figured out how to extend the Terminal length of a screen
using Dynamic Connect, from say 24 Lines to 45 line in Basic code .
I'm looking specifically for the Escape sequence. ie "\e[?3h", is
View132. Also does anyone know the Escape sequence for the Carriage
Retun. If not where would I start to look for this info? Thanks


Reply With Quote
  #2  
Old   
Bruce Nichol
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-14-2005 , 03:34 PM






On 14 Sep 2005 09:41:34 -0700, rgisi (AT) nortom (DOT) com wrote:

Quote:
Has anyone figured out how to extend the Terminal length of a screen
using Dynamic Connect, from say 24 Lines to 45 line in Basic code .
I'm looking specifically for the Escape sequence. ie "\e[?3h", is
View132. Also does anyone know the Escape sequence for the Carriage
Retun. If not where would I start to look for this info? Thanks
Wouldn't the ESC sequence, if any, depend on the mode of emulation
you've chosen?


Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....


Reply With Quote
  #3  
Old   
Kilo MicroAir
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-14-2005 , 04:39 PM



If you are using Accuterm, try the following:

* ACCUTERM.COL
* CHANGE NUMBER OF COLUMNS ON THE FLY
* FEB 2004
*
EQU STX TO CHAR(02); * START OF TEXT
EQU CR TO CHAR(13); * CARRIAGE RETURN
EQU ESC TO CHAR(27); * ESCAPE
*
10 * TOP
*
PRINT 'NUMBER OF COLUMNS' :
*
INPUT REPLY
*
IF REPLY EQ '' THEN
STOP
END
*
PRINT ESC : STX : 'P InitSession.NormCols=' : REPLY : CR :
*
PRINT
PRINT 'Number of Columns changed to ' : REPLY
PRINT
PRINT STR('*', REPLY)
PRINT
*
GOTO 10
*

rgisi (AT) nortom (DOT) com wrote:
Quote:
Has anyone figured out how to extend the Terminal length of a screen
using Dynamic Connect, from say 24 Lines to 45 line in Basic code .
I'm looking specifically for the Escape sequence. ie "\e[?3h", is
View132. Also does anyone know the Escape sequence for the Carriage
Retun. If not where would I start to look for this info? Thanks



Reply With Quote
  #4  
Old   
Bruce Nichol
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-14-2005 , 11:36 PM



Mate,

Without getting into a "pissing contest", this response would have to
be the most useless attempt at help I've ever come across in this
NG....

The OP mentions "Dynamic Connect" .. .you're off on a tangent to
"Accuterm" (ESC:STX....), absolutely nothing to do with DC - where's
your logic in that?,

The OP wants "screen lines" ... you're on about "columns" - only
90deg out there!

On Wed, 14 Sep 2005 13:39:44 -0800, "Kilo MicroAir"
<kilomike[at]gci.net> wrote:

Quote:
If you are using Accuterm, try the following:

* ACCUTERM.COL
* CHANGE NUMBER OF COLUMNS ON THE FLY
* FEB 2004
*
EQU STX TO CHAR(02); * START OF TEXT
EQU CR TO CHAR(13); * CARRIAGE RETURN
EQU ESC TO CHAR(27); * ESCAPE
*
10 * TOP
*
PRINT 'NUMBER OF COLUMNS' :
*
INPUT REPLY
*
IF REPLY EQ '' THEN
STOP
END
*
PRINT ESC : STX : 'P InitSession.NormCols=' : REPLY : CR :
*
PRINT
PRINT 'Number of Columns changed to ' : REPLY
PRINT
PRINT STR('*', REPLY)
PRINT
*
GOTO 10
*

rgisi (AT) nortom (DOT) com wrote:
Has anyone figured out how to extend the Terminal length of a screen
using Dynamic Connect, from say 24 Lines to 45 line in Basic code .
I'm looking specifically for the Escape sequence. ie "\e[?3h", is
View132. Also does anyone know the Escape sequence for the Carriage
Retun. If not where would I start to look for this info? Thanks

Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....


Reply With Quote
  #5  
Old   
Kilo MicroAir
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-15-2005 , 04:12 AM



Thanks Bruce,

Just dyslexic and left handed.

Bruce Nichol wrote:
Quote:
Mate,

Without getting into a "pissing contest", this response would have to
be the most useless attempt at help I've ever come across in this
NG....

The OP mentions "Dynamic Connect" .. .you're off on a tangent to
"Accuterm" (ESC:STX....), absolutely nothing to do with DC - where's
your logic in that?,

The OP wants "screen lines" ... you're on about "columns" - only
90deg out there!

On Wed, 14 Sep 2005 13:39:44 -0800, "Kilo MicroAir"
kilomike[at]gci.net> wrote:

If you are using Accuterm, try the following:

* ACCUTERM.COL
* CHANGE NUMBER OF COLUMNS ON THE FLY
* FEB 2004
*
EQU STX TO CHAR(02); * START OF TEXT
EQU CR TO CHAR(13); * CARRIAGE RETURN
EQU ESC TO CHAR(27); * ESCAPE
*
10 * TOP
*
PRINT 'NUMBER OF COLUMNS' :
*
INPUT REPLY
*
IF REPLY EQ '' THEN
STOP
END
*
PRINT ESC : STX : 'P InitSession.NormCols=' : REPLY : CR :
*
PRINT
PRINT 'Number of Columns changed to ' : REPLY
PRINT
PRINT STR('*', REPLY)
PRINT
*
GOTO 10
*

rgisi (AT) nortom (DOT) com wrote:
Has anyone figured out how to extend the Terminal length of a screen
using Dynamic Connect, from say 24 Lines to 45 line in Basic code .
I'm looking specifically for the Escape sequence. ie "\e[?3h",
is View132. Also does anyone know the Escape sequence for the
Carriage Retun. If not where would I start to look for this info?
Thanks


Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....



Reply With Quote
  #6  
Old   
rgisi@nortom.com
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-15-2005 , 10:10 AM



Thanks Burce, The emulation I'm working with is VT100.


Reply With Quote
  #7  
Old   
Jeffrey Kaufman
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-15-2005 , 12:20 PM



Bruce,

Be kind to Kilo. Even though he screwed up this time, he has posted a number
of very useful code snips.

Jeff

"Bruce Nichol" <reverse_ecurb (AT) taloncs (DOT) com.au> wrote

Quote:
Mate,

Without getting into a "pissing contest", this response would have to
be the most useless attempt at help I've ever come across in this
NG....

The OP mentions "Dynamic Connect" .. .you're off on a tangent to
"Accuterm" (ESC:STX....), absolutely nothing to do with DC - where's
your logic in that?,

The OP wants "screen lines" ... you're on about "columns" - only
90deg out there!

On Wed, 14 Sep 2005 13:39:44 -0800, "Kilo MicroAir"
kilomike[at]gci.net> wrote:

If you are using Accuterm, try the following:

* ACCUTERM.COL
* CHANGE NUMBER OF COLUMNS ON THE FLY
* FEB 2004
*
EQU STX TO CHAR(02); * START OF TEXT
EQU CR TO CHAR(13); * CARRIAGE RETURN
EQU ESC TO CHAR(27); * ESCAPE
*
10 * TOP
*
PRINT 'NUMBER OF COLUMNS' :
*
INPUT REPLY
*
IF REPLY EQ '' THEN
STOP
END
*
PRINT ESC : STX : 'P InitSession.NormCols=' : REPLY : CR :
*
PRINT
PRINT 'Number of Columns changed to ' : REPLY
PRINT
PRINT STR('*', REPLY)
PRINT
*
GOTO 10
*

rgisi (AT) nortom (DOT) com wrote:
Has anyone figured out how to extend the Terminal length of a screen
using Dynamic Connect, from say 24 Lines to 45 line in Basic code .
I'm looking specifically for the Escape sequence. ie "\e[?3h", is
View132. Also does anyone know the Escape sequence for the Carriage
Retun. If not where would I start to look for this info? Thanks


Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....



Reply With Quote
  #8  
Old   
Bruce Nichol
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-15-2005 , 10:34 PM



On Thu, 15 Sep 2005 17:20:20 GMT, "Jeffrey Kaufman"
<jkaufman (AT) keydata (DOT) us> wrote:

Quote:
Bruce,

Be kind to Kilo.
I was ....... Extremely kind, I thought


Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....


Reply With Quote
  #9  
Old   
Bruce Nichol
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-15-2005 , 10:49 PM



On 15 Sep 2005 08:10:10 -0700, rgisi (AT) nortom (DOT) com wrote:

Quote:
Thanks Burce, The emulation I'm working with is VT100.
In that case look here:

http://www.comptechdoc.org/os/linux/...x_hlvt100.html
Regards,

Bruce Nichol
Talon Computer Services
ALBURY NSW Australia

http://www.taloncs.com.au

If it ain't broke, fix it until it is....


Reply With Quote
  #10  
Old   
rgisi@nortom.com
 
Posts: n/a

Default Re: Extending Terminal Length in Dynamic Connect - 09-16-2005 , 10:05 AM



Thank you Bruce, That was most helpful.... Thanks to all who posted..


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.