VERSION 5.00 Begin VB.Form Form1 Caption = "Form1" ClientHeight = 5565 ClientLeft = 60 ClientTop = 345 ClientWidth = 7665 BeginProperty Font Name = "MS Sans Serif" Size = 18 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty LinkTopic = "Form1" ScaleHeight = 5565 ScaleWidth = 7665 StartUpPosition = 3 'Windows Default Begin VB.PictureBox picOut Height = 3375 Left = 3360 ScaleHeight = 3315 ScaleWidth = 4155 TabIndex = 2 Top = 360 Width = 4215 End Begin VB.CommandButton cmdGo Caption = "Go!" Height = 495 Left = 1800 TabIndex = 1 Top = 2640 Width = 1215 End Begin VB.TextBox txtName Height = 555 Left = 240 TabIndex = 0 Top = 1320 Width = 2655 End End Attribute VB_Name = "Form1" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub cmdGo_Click() Dim name_they_typed As String name_they_typed = txtName.Text Call print_fancy_name(name_they_typed) End Sub Private Sub print_fancy_name(name As String) picOut.Print "***** "; name; " *****" End Sub