Notifications
Clear all
[Closed] scrolling text box
Jun 18, 2014 12:01 pm
I’d like to create a text box with ability to scroll down through the text. Just a pop up rollout or dotnet form to explain lengthy licence conditions. What do I use?
1 Reply
Jun 18, 2014 12:01 pm
try(destroydialog tb_dialog) catch()
rollout tb_dialog "Text BOX" width:200 height:200
(
dotnetcontrol tb "TextBox" width:192 height:192 pos:[4,4]
on tb_dialog open do
(
tb.Multiline = on
tb.ScrollBars = tb.ScrollBars.Vertical
)
)
createdialog tb_dialog