Hello guys,
I want your help to make such as a simple program.
This program's function is posting via itself to the facebook.
Will explain more for your understand.
First ~
Will login with ID and PW to facebook with the application.
Controls :
2 Text Boxes (ID & PW), 1 Button (Login)
Next ~
If logged in successfully show the posting form.
Controls :
1 TextBox (Post Text), 1 Button (Post Button)
And
Note :
We won't add any pictures or videos attaching options, just a text for make it easier creating.
If we're gonna use the HttpWebRequest method then those information may help you :
SS1 [Post TextBox Element Inspect]
SS2 [Post Button Element Inspect]
Is that possible?
Posts 1–8 of 8 · Page 1 of 1
Post a Reply
Tags for this Thread
None
You need ID for it man. also you need Button for..
I think Visual Basic is not able to make this application. At least C++ or C#.
Originally Posted by Lina Yearn
I think Visual Basic is not able to make this application. At least C++ or C#.
Nope. Is possible. Why you think that?
Originally Posted by abuckau907
Nope. Is possible. Why you think that?
Just what I know, Visual Basic encoding is not advanced than C++. Lol.
so because it's not 'more advanced' than C++, this application can't be made in vb? Dumb...
I agree C++ is generally faster, but the app can still be made in vb... as well as 99.99999% any other app :|
Maybe it sucks, but easiest way is to use a WebBrowser component..it'll maintain all that for you, but it is possible to do yourself (using socket class if you want to go hardcore...). With the WebBrowser you'll loop over the page elements (like Biesi suggests), and invoke some members (SetValue to set text boxes...Click() for the buttons: something like that).