Notifications
Clear all

[Closed] scrolling text box

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
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