How to catenate strings


catenate.png
' Gambas class file

PUBLIC SUB Button1_Click()
  'use & to catenate strings :
  TextLabel1.Text = "Hello " & TextBox1.Text
END

-- JochenGeorges - 28 Dec 2004