Re: Input Info From browser?
so what do u want to do? fill in the form and click the sign in button thru code?
Re: Input Info From browser?
There is an email FAQ in the VB faq
Re: Input Info From browser?
i want it so when the user types in their email/password it will load it in the myspace webpage and log them in when they click sign in ;)
Re: Input Info From browser?
use reference to ie. set ie's new navigation url to http://www.myspace.com/index.cfm?fuseaction=login.process&name=<put email here>&id=<put password here>
hope it works
Re: Input Info From browser?
VB Code:
Private Sub Command1_Click()
brwWebBrowser.Navigate2 = "http://www.myspace.com/index.cfm?fuseaction=login.process&name=" & Text1.Text & "&id=" & Text2.Text
End Sub
I tried that and it didnt work.. any ideas?
Re: Input Info From browser?
what u need to do is figure out where the login button leads to. if u figure it out, u can do it. currently, i dont have an account there and i dont want to create one either. so if u figure it out, post the url here and i may be able to help u create a code to automate it.
Re: Input Info From browser?
OK say we skip that step then, the user would just login and yadi yadi ya..
What happens if i would want to add a bunch of people to a list for example:
http://www.myspace.com/index.cfm?fus...endID=32197655
i would want the Start and Stop to replace the # 87843921 with the variable of lets just say 1-3000 members, and add all those members to a list.
:confused: