QuestionEmail Help [solved]

Posts 18 of 8 · Page 1 of 1
Email Help [solved]
I have a program set to email me the text from two text boxes.

I want it to have a space in between the text.

Right now it emails me:
Code:
TextBox1 TestTextBox2 Test
Note how there is no space.

I want it to send me:
Code:
TextBox1 Test
TextBox2 Test
or
Code:
TextBox1 Test TextBox2 Test
Whichever is easier for you to give me
I don't get it , so you want it to send the text in first + text in second , if so then

Textbox1.text + Textbox2.text

This one without space

with space is

Textbox1.text + " " + Textbox2.text
Quote Originally Posted by Shadeyz346 View Post
I don't get it , so you want it to send the text in first + text in second , if so then

Textbox1.text + Textbox2.text

This one without space

with space is

Textbox1.text + " " + Textbox2.text
I already fixed it with a nifty thing I thought of.

I added two invisible text boxes and made them say
Code:
ID:
and
Code:
.
PW:
and set them to email like this
Code:
TextboxBEFOREID.Text + TextboxID.Text + TextboxBEFOREPW.Text + TextboxPW.Text
So it emails me like this:
Code:
ID: ExampleID
PW: ExamplePW
I'm a good thinker

@Shadeyz346
Solved. You keylogging fuck.
Quote Originally Posted by Jason View Post
Solved. You keylogging fuck.
Phishing
@Jason
Quote Originally Posted by Sketchy View Post

Phishing
@Jason
Same shit, different arsehole. You're still scum of the Earth.
Quote Originally Posted by Sketchy View Post

I already fixed it with a nifty thing I thought of.

I added two invisible text boxes and made them say
Code:
ID:
and
Code:
.
PW:
and set them to email like this
Code:
TextboxBEFOREID.Text + TextboxID.Text + TextboxBEFOREPW.Text + TextboxPW.Text
So it emails me like this:
Code:
ID: ExampleID
PW: ExamplePW
I'm a good thinker

@Shadeyz346
Could actually do

"ID: " + TextboxID.text + "ID: " + TextboxPW.text

Mhm..

Or make a dim saying Dim ID As String = "ID: "
and put ID instead of "ID: "


Quote Originally Posted by Jason View Post


Same shit, different arsehole. You're still scum of the Earth.
I SEE YOU MAD
Thread closed.
Posts 18 of 8 · Page 1 of 1
This thread is closed for replies.

Tags for this Thread

None

Need help?