helloimmp Posted October 12, 2011 Posted October 12, 2011 Hey guys! I just want to ask help about TwitterVB . It's a DLL file added as a reference in a Visual Basic application. I'm using it to create a Twitter Application in Microsoft Visual Basic 2010 Express Edition. I'm almost finished with my goal. The application has a GET CODE button wherein when you clicked it, it will redirect the user to the default web browser and the user will click the Authorize App Button in the site and when you do that a PIN will be shown and you will copy the PIN and you put the PIN in the VB application and when you click enter, the information about your Twitter account will be shown in the application. I am already finished with all of that. My problem is that... is there a way wherein the application dont need to open a default browser. Rather, it will just open a webbrowser in the application itself. Something like a mini broswer. And is there a way wherein the application will be the only one to read the PIN. It will like automatically read the PIN. The user dont need to view the PIN. It's like when the user click the Authorize App Button, it will automatically authorize the application to view necessary info about the user's account. Private Sub GetCode_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles GetCode.Click Try Dim url As String = twitter.GetAuthorizationLink(consumerkey, consumerkeysecret) Process.Start(url) Catch ex As Exception End Try End Sub I think I need to edit the Process.Start(url) since that line is for opening the default browser.What should I do to disable opening the default browser but rather open a mini browser in the application itself.
JohnOne Posted October 12, 2011 Posted October 12, 2011 I don't know if you are aware of this, but you are at an AutoIt forum. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Recommended Posts