aleksandr.mikhailov.96
New Member
Hi!
I have issue with frames and scrollbars in tty mode.
When i start this code (below), if a frame is wider then a screen where the frame is located, than some unprintable charachter (looks like space) appears in underline (botton border) of the frame. If you tab fields then this pointer movesas well, showing current position of cursor in general frame width.
I want to print some info (tips, key binds) in this bottom border. Is there option to remove such a behaviour of scrollbar?
I hope that my explanation is clear.
Thanks.
I have issue with frames and scrollbars in tty mode.
When i start this code (below), if a frame is wider then a screen where the frame is located, than some unprintable charachter (looks like space) appears in underline (botton border) of the frame. If you tab fields then this pointer movesas well, showing current position of cursor in general frame width.
Code:
def var vStr1 as char init "1" no-undo.
def var vStr2 as char init "2" no-undo.
def var vStr3 as char init "3" no-undo.
def var vStr4 as char init "4" no-undo.
def var vStr5 as char init "5" no-undo.
def var vStr6 as char init "6" no-undo.
form
vStr1 format "x(20)" column-label "first"
vStr2 format "x(10)" column-label "second"
vStr3 format "x(40)" column-label "third"
vStr4 format "x(30)" column-label "fourth"
vStr5 format "x(30)" column-label "fifth"
vStr6 format "x(10)" column-label "sixth"
with frame frm1 title "test1" width 340.
update vstr1 vstr2 vstr3 vstr4 vstr5 vstr6 with frame frm1.
I want to print some info (tips, key binds) in this bottom border. Is there option to remove such a behaviour of scrollbar?
I hope that my explanation is clear.
Thanks.