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
Originally Posted by Sнαdeчz 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 @Sнαdeчz
Originally Posted by iFacebook Phishing @Chooka Same shit, different arsehole. You're still scum of the Earth.
Originally Posted by iFacebook 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 @Sнαdeчz 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: " Originally Posted by Chooka Same shit, different arsehole. You're still scum of the Earth. I SEE YOU MAD