Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 2 online users. » 0 Member(s) | 1 Guest(s) Google
|
Latest Threads |
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
02-27-2025, 12:59 PM
» Replies: 1
» Views: 1,978
|
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
01-08-2025, 11:00 PM
» Replies: 1
» Views: 1,065
|
Find Local Women Looking ...
Forum: Random Discussion
Last Post: iHOMEz
12-27-2024, 12:11 AM
» Replies: 0
» Views: 492
|
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 1,312
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 1,300
|
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 1,401
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 1,541
|
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 2,354
|
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 2,549
|
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 21,451
|
|
|
Nice forum - can you help me with the Twitter App |
Posted by: romanos8 - 07-27-2011, 01:46 AM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (2)
|
 |
I think that I followed all steps but I getting this error: {"Exception of type 'TwitterAPIException' was thrown."}
Can you check the code?
Imports TwitterVB2
Public Class twitter
Public tw As New TwitterAPI
Dim consumer As String = "QQT9vjRAYODUr8VNDM6A5w"
Dim consumersecret As String = "4fM7Tkw24HpWlCxh3hJPyjNbu1jtKuUWtvUSJyf94g"
Public oauthtoken As String
Public oauthtokensecret As String
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Try
Dim url As String = tw.GetAuthorizationLink(consumer, consumersecret)
Process.Start(url)
Catch ex As Exception
End Try
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If TextBox1.Text = "" Then
MsgBox("You must insert a code!")
Else
'Proceed
Dim isValid As Boolean = tw.ValidatePIN(TextBox1.Text)
If isValid = True Then
oauthtoken = tw.OAuth_Token
oauthtokensecret = tw.OAuth_TokenSecret
tw.AuthenticateWith(consumer, consumersecret, oauthtoken, oauthtokensecret)
Label2.Text = tw.AccountInformation.Name
Else
MsgBox("Wrong code!")
End If
End If
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
tw.AuthenticateWith(consumer, consumersecret, oauthtoken, oauthtokensecret)
tw.Update(TextBox2.Text)
End Sub
End Class
|
|
|
Displaying Data in WebBrowser |
Posted by: VicDesigns - 07-26-2011, 03:21 AM - Forum: Programming Help
- Replies (10)
|
 |
Hi folks,
I am extremely new to Visual Basic. In fact I have only created one simple program and now want to revamp it. Basically, in a ListBox you select a word and it will display the meaning of that word in a TextBox.
Now, what I want to do, is instead of displaying the word meaning in a TextBox, I want to display it in a WebBrowser.
I have searched google for the past two days and can not find the code anywhere to do it so I am hoping someone here can provide a working fix?
Your help is greatly appreciated.
Cheers,
Danno
|
|
|
Securing Software (HWID)? |
Posted by: GeordieBen - 07-25-2011, 12:07 PM - Forum: Programming Help
- Replies (1)
|
 |
Hi all,
I'm a begginer in vb.net and looking for a little help on solving this annoying problem.....
I have been trying to figure out a way to make a hardware id lock for my software in vb.net.
i would like to be able to use all hardware and not just the proccessor if thats possible, abit like how winlicense's hwid lock is.
here is what code i have atm
Code: Public Shared Function gethwid() As String
Return New System.Management.ManagementClass("win32_processor").GetInstances() _
(0).properties("processorID").value.ToString()
End Function
Also, if possible can i get a hwid that looks like this format '12345-1234-12345-12345' instead of the format 'BFEBFBFF000006FB'
Look forward to your reply's
Thanks
Geordie
|
|
|
vb 2008 software outputs software too? |
Posted by: cry1978 - 07-11-2011, 04:29 PM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (1)
|
 |
in visual basic 2008 I know it has its own project exe file, this is not my case?
when you open a file like a pdf file, you can some how turn it into an exe file? You can't just use filter in the savefiledialog box to make this happen, so what do I need for this project? a built in vb converter? lol
this is to make a form appear before the pdf appears?
this is a validation form for users to insert there user keys before the ebook opens.
I have a website connecting to a vb software, the software does not work, so I am creating a new one, if god could help me lol
any ideas?
|
|
|
connect to mysql client |
Posted by: cry1978 - 07-11-2011, 04:18 PM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (2)
|
 |
connect to mysql client in visual basic 2008
I saw your tutorial
<!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=r7V2vLK9rHc">http://www.youtube.com/watch?v=r7V2vLK9rHc</a><!-- m -->
You said that this would be useful for a database online?
I have a project and it needs to connect to mysql client for my online website to check validation fields, how do I protect my database username, database name, and password in my visual basic project?
how does a programmer set this up for protection?
I see your encryption tutorial, do I put this encryption code within my project to protect database info? and do I leave this encrypted code in the project and leave the form that created my database details?
I am not sure how to use this for my database, if I leave the encrypt file in the project I am sure people can decrypt it lol, so how do I do this please?
can you give me a tutorial on this?
|
|
|
Custom Webbrowser Component |
Posted by: vbcodegeek - 07-11-2011, 10:13 AM - Forum: Programming Help
- Replies (2)
|
 |
I was just in the middle of making a webbrowser project. For this project I do not want to use the webbrowser component that comes with Visual Basic 2010 Express. I wanted to make a custom webbrowser component from scratch (like the GeckoWebBrowser component) but don't know how. Can anyone Please help me out here?
|
|
|
Cod5 hack help |
Posted by: Sea Serpent13 - 07-06-2011, 09:27 AM - Forum: Programming Help
- Replies (5)
|
 |
Hi I joined because I need help with Cod5. I need to make a DLL file for a Cod5 hack. I have source codes but i dont know what to do with them. (copy and paste into a new sub, DLL file?)If you can help me, then make a youtube tutorial or leave a comment. <!-- s:| --><img src="{SMILIES_PATH}/icon_neutral.gif" alt=":|" title="Neutral" /><!-- s:| -->
|
|
|
|