|
-
Oct 28th, 2005, 01:12 AM
#1
Thread Starter
Member
Input Info From browser?
Ok so i havnt used vb since 3.0 back in the aol days, but i figured id come back and try out 6.0 (getting a heads up for school).. I figured to get my feet wet to make one of those myspace friend adders.
I need to help with the whole submitting email thing for example

Check out http://www.myspace.com to see the login screen as well
Last edited by mlewis412; Oct 28th, 2005 at 01:25 AM.
-
Oct 28th, 2005, 01:38 AM
#2
Frenzied Member
Re: Input Info From browser?
so what do u want to do? fill in the form and click the sign in button thru code?
-
Oct 28th, 2005, 01:38 AM
#3
Re: Input Info From browser?
There is an email FAQ in the VB faq
-
Oct 28th, 2005, 01:43 AM
#4
Thread Starter
Member
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
Last edited by mlewis412; Oct 28th, 2005 at 01:49 AM.
-
Oct 28th, 2005, 01:51 AM
#5
Frenzied Member
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
-
Oct 28th, 2005, 01:57 AM
#6
Thread Starter
Member
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?
Last edited by mlewis412; Oct 28th, 2005 at 02:01 AM.
-
Oct 28th, 2005, 02:21 AM
#7
Frenzied Member
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.
-
Oct 28th, 2005, 02:35 AM
#8
Thread Starter
Member
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.
Last edited by mlewis412; Oct 28th, 2005 at 02:54 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|