Private Python2VBText As New TextBox ' A very simple program, ' showing how short a Python program can be! ' Authors: ___, ___ ' Public Sub Routine2 Python2VBText.Text = Python2VBText.Text + "Hello world!" + vbNewLine 'This is a stupid comment after the # mark Python2VBText.MultiLine = True Python2VBText.Width = 200 Python2VBText.Height = 100 Form1.Controls.Add(Python2VBText) End Sub