❔ how to show what i put in the text box only
can i please know how to my my text box show as the pic
10 Replies
Get the input with the Text property
someTextBox.Text
. You can take that string and show it with MessageBox.Show()
i dont understand what u mean
if (checkBox1.Checked)
MessageBox.Show("movies");
how to remove all this
and keep only what i write there
someTextBox.Text
where i put this
The Text property is a string you can use in place of the "movies" constant
and the click box how
if (checkBox1.Checked)
MessageBox.Show("movies"+textBox1);
i do like this
but it show system.windows.format text;
textBox1 is the textbox itself and not the text
textBox1.Text
yessss
now i understand
thank u
i did like this
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.