Results 1 to 8 of 8
  1. #1
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired

    Question 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

  2. #2
    Shadeyz346's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    General.
    Posts
    4,023
    Reputation
    133
    Thanks
    240
    My Mood
    In Love
    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

  3. The Following User Says Thank You to Shadeyz346 For This Useful Post:

    Sketchy (05-09-2011)

  4. #3
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired
    Quote Originally Posted by Sнαdeчz 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

    @Sнαdeчz

  5. #4
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Solved. You keylogging fuck.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  6. #5
    Sketchy's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    4,876
    Reputation
    515
    Thanks
    663
    My Mood
    Inspired
    Quote Originally Posted by Chooka View Post
    Solved. You keylogging fuck.
    Phishing
    @Chooka

  7. #6
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Quote Originally Posted by iFacebook View Post

    Phishing
    @Chooka
    Same shit, different arsehole. You're still scum of the Earth.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)

  8. The Following User Says Thank You to Jason For This Useful Post:

    Hassan (08-21-2011)

  9. #7
    Shadeyz346's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    General.
    Posts
    4,023
    Reputation
    133
    Thanks
    240
    My Mood
    In Love
    Quote Originally Posted by iFacebook 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

    @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: "


    Quote Originally Posted by Chooka View Post


    Same shit, different arsehole. You're still scum of the Earth.
    I SEE YOU MAD

  10. #8
    Jason's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    /dev/null
    Posts
    5,704
    Reputation
    918
    Thanks
    7,676
    My Mood
    Mellow
    Thread closed.

    Quote Originally Posted by Jeremy S. Anderson
    There are only two things to come out of Berkley, Unix and LSD,
    and I don’t think this is a coincidence
    You can win the rat race,
    But you're still nothing but a fucking RAT.


    ++Latest Projects++
    [Open Source] Injection Library
    Simple PE Cipher
    FilthyHooker - Simple Hooking Class
    CLR Injector - Inject .NET dlls with ease
    Simple Injection - An in-depth look
    MPGH's .NET SDK
    eJect - Simple Injector
    Basic PE Explorer (BETA)