Private Python2VBText As New TextBox ' if-else statement example (recommending clothing) Public Sub main(): Dim temperature As Integer temperature = InputBox("What is the temperature? ") if temperature > 70 Then Python2VBText.Text = Python2VBText.Text + "Wear shorts." + vbNewLine Python2VBText.MultiLine = True Python2VBText.Width = 200 Python2VBText.Height = 100 Form1.Controls.Add(Python2VBText) else Python2VBText.Text = Python2VBText.Text + "Wear long pants." + vbNewLine End If Python2VBText.Text = Python2VBText.Text + "Get some exercise outside." + vbNewLine End Sub 'main()