Private Sub
Page_Load(ByVal sender As
System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'set
the message .. notice the use of html tags.
Marquee1.Message =
"Message set at <b>runtime<b>"
'change
the scroll direction using Marquee Direction
Marquee1.Direction =
SilkWebware.Marquee.Direction.Down
'change
the backcolor to Red
Marquee1.BackColor =
Color.Red
End Sub