STATIC PUBLIC SUB Main() hForm AS Fmain hForm = NEW Fmain hForm.show END PUBLIC SUB Button1_Click() hello("Ernie", " + Bert") END PUBLIC SUB Button2_Click() hello("Ernie") END PUBLIC SUB hello(strErnie AS String, OPTIONAL strBert AS String) TextLabel1.Text= strErnie & strBert END