Multi-Line Textbox: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
(Created page with " '''Multi-Line TextBoxes''' are accomplished in BR! by using an Input Fields statement. Here is a sample: 00010 DIM Buff$*2048 00012 LET Buff$='start with ...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
   00012  LET Buff$='start with something'
   00012  LET Buff$='start with something'
   00020  RINPUT FIELDS '#0,5,2,text 14/58/20,[D]s': Buff$
   00020  RINPUT FIELDS '#0,5,2,text 14/58/20,[D]s': Buff$
Syntax: Text [Rows]/[Columns]/[Max Char]


<noinclude>
<noinclude>
[[Category:Widget]]
[[Category:Widget]]
</noinclude>
</noinclude>

Latest revision as of 18:30, 20 October 2018

Multi-Line TextBoxes are accomplished in BR! by using an Input Fields statement. Here is a sample:


 00010   DIM Buff$*2048
 00012   LET Buff$='start with something'
 00020   RINPUT FIELDS '#0,5,2,text 14/58/20,[D]s': Buff$

Syntax: Text [Rows]/[Columns]/[Max Char]