if i make a text box to enter text,
for example, i enter the text like below:
ask 122
then can i get the string "122" and display it in message box?
Printable View
if i make a text box to enter text,
for example, i enter the text like below:
ask 122
then can i get the string "122" and display it in message box?
Exactly what are you looking for?
If you want to display second word of the text box do this:
VB Code:
MsgBox(Mid(Text1.Text, Find(" ", Text1.Text) + 1))