I have this program
Quote:
var fontID : int
fontID := Font.New ("Times New Roman:18x12:Bold")
var theDateTime : string
theDateTime := Time.Date
var l, u := 1
var h : int
get h %how high it goes after completeing one row
loop
    View.Update
    l := l + 1
    if l >= maxx then
        u := u + h
        if u >= maxy then
            u := 0
        end if
        l := 1
    end if
    Font.Draw (Time.Date, l, u, fontID, black)
    delay (10)
    cls
end loop
How can I make it so that the User can choose the parameters in Quote:
fontID := Font.New ("Times New Roman:18x12:Bold")