Addin Views programatically uses these steps:
Declare the view
Create the view
Add it to the activity...
Example:
In Globals:
Dim Label1, Label2, Label3 As Label
In Activity_Create:
Label1.Initialize("") 'No event to monitor
Label2.Initialize("") 'No event to monitor
Label2.Initialize("") 'No event to monitor
Activity.AddView(Label1,20,20,50,200)
Activity.AddView(Label2,70,20,50,200)
Activity.AddView(Label3,120,20,50,200)
We now have 3 empty Labels, ready to receive text using Label1.Text = "Anyting you need"