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 :wave:
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:
Process.Start("http://www.sms.gr/Servlet?code=" & myTextBox.Text)
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 :)
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...
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