i want that:
if the user write "o bolo é gostoso" in the textbox1, code saves in label1.caption "bolo":"gostoso"; (EQL)
if the user write "os jogos são legais" in the textbox1, code saves in label1.caption "jogos":"legais"; (EQL)
if the user write "eu como bolo" in the textbox1, code saves in label1.caption "[username] como":"bolo"; (EQL)
[username] = label2.caption
the variable words is bold
a Ex-PPTGames admin helped me on amino
valores = Split(TextBox1.Text)
arg = valores(1) + ":" + valores(3)
Label1.Caption = Caption + arg
is the code.
I Edit for another situations.