What is the error: Private Sub btnDisplay_Click(…) Handles btnDisplay.Click Dim word As String, number As Double word = “seven” …
What is the error: Private Sub btnDisplay_Click(…) Handles btnDisplay.Click Dim word As String, number As Double word = “seven” number = 7 Display(word, number) End Sub Sub Display(ByVal num As Double, ByVal term As String) txtOutput.Text = num & ” ” & term End Sub