Private time As String Private interviewer As String Private applicant As String Private Python2VBText As New TextBox ' Compare print with concatenation and with format string. Public Sub Routine2 applicant = InputBox("Enter the applicant's name: ") interviewer = InputBox("Enter the interviewer's name: ") time = InputBox("Enter the appointment time: ") Python2VBText.Text = Python2VBText.Text +interviewer + " will interview " + applicant + " at " + time +".".ToString + vbNewLine Python2VBText.MultiLine = True Python2VBText.Width = 200 Python2VBText.Height = 100 Form1.Controls.Add(Python2VBText) Python2VBText.Text = Python2VBText.Text + "" + (interviewer).toString + " will interview " + (applicant).toString + " at " + (time).toString + "." + vbNewLine End Sub