Results 1 to 5 of 5

Thread: Input Option Into A Link?

  1. #1

    Thread Starter
    New Member
    Join Date
    Mar 2006
    Posts
    3

    Exclamation Input Option Into A Link?

    hallo everyone,
    i am a bit new in programming and i would like to ask u all about something difficult for me.
    well i have a link for example "http://www.sms.gr/Servlet?code=6944444444"
    where the "6944444444" is a defult mobile phone number (this site has not an extension at the end like html etc and i hope that help)
    to the point now i want to have into my form a TextBox in which i will write any phone and the vb will put it into the previous link
    something like this but in visual basic code
    Code:
    if TextBox text = 6945217321
    then System.Diagnostics.Process.Start("iexplore", "http://www.sms.gr/Servlet?code=6945217321")
    and finally i want a button (the submit button) which will open the last link with the number of the TextBox
    i dont know if i ask for many things but i think it is possible
    thanks in advance for ur time and convinience

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Input Option Into A Link?

    So your base URL is "http://www.sms.gr/Servlet?code=" and you want to concatenate the contents of a TextBox, right? Then open that URL in a browser? I'd leave out the first argument to Process.Start so that it opens in the default browser instead of IE. Most people who go to the effort of changing their default browser get annoyed if applications then force them to use IE.
    VB Code:
    1. Process.Start("http://www.sms.gr/Servlet?code=" & myTextBox.Text)
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3

    Thread Starter
    New Member
    Join Date
    Mar 2006
    Posts
    3

    Exclamation Re: Input Option Into A Link?

    Oh really thanks jmcilhinney that was very helpful. now i have one last question. Before a few months i heard of a program called ''msn messenger account freezer" that program as i can undertand uses the site of the hotmail and it brute force the password box (with a text dictionary) but when u start the program of course it doesnt loads u 1 millon sites for every password of the list so i think that there is a way to make the links open in the backround..... so i ask if there is any command for this
    thanks again for the help and time

  4. #4
    PowerPoster
    Join Date
    Aug 2005
    Location
    College Station, TX
    Posts
    4,521

    Re: Input Option Into A Link?

    what exactly are you asking?? we arent here to influence or help deviant behavior...

    If you are referring to sending the messages without having to open a browser, you would have to find out ways to send the form information through code...
    Last edited by gigemboy; Mar 10th, 2006 at 04:44 AM.

  5. #5

    Thread Starter
    New Member
    Join Date
    Mar 2006
    Posts
    3

    Exclamation Re: Input Option Into A Link?

    no no no i dont want help for deviant behavior. look this site can send an sms well i want to make a program which will use this site but if my program open the site there isnt any meaning to do that. the msn messenger account cracker was just an example of what i want to do (backround process) i dont want to make a brute force tool i just want to transfer the site into my program please if u know how to do that let me know and thanks again for ur time

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width