Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 5 online users. » 1 Member(s) | 1 Guest(s) Applebot, Bing, Google, MorrissgoX
|
Latest Threads |
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
11-16-2024, 09:18 PM
» Replies: 0
» Views: 491
|
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 778
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 808
|
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 911
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 1,068
|
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
07-28-2024, 10:26 AM
» Replies: 0
» Views: 1,441
|
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 1,862
|
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 1,678
|
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 20,675
|
How to: Search files from...
Forum: VB.NET
Last Post: brandonio21
11-25-2017, 12:55 PM
» Replies: 1
» Views: 15,987
|
|
|
Retrieving the source of a tweet using TwitterVB |
Posted by: brandonio21 - 08-04-2011, 09:35 PM - Forum: Code Snippets
- Replies (4)
|
|
Someone asked me on one of my YouTube videos how to retrieve the source of a tweet. Well here is the code. This code is meant to be directly added into the source code found in this tutorial : <!-- m --><a class="postlink" href="http://www.youtube.com/watch?v=zd2gYBsCjqI&list=UUVwwElhbjWhU">http://www.youtube.com/watch?v=zd2gYBsC ... wwElhbjWhU</a><!-- m -->
Code: Dim source As String = ""
If entry.Source.ToString.Contains("<") Then
'Source is link, get rid of link crap
source = entry.Source.ToString.Replace("</a>", "")
Dim int As Integer = source.LastIndexOf(">")
source = source.Remove(0, int + 1)
Else
source = entry.Source.ToString
End If
'Source variable is now ready to use
n.SubItems.Add(source)
In this code, the variable named 'Source' actually contains the information about where a tweet was posted from.
Hope this helps!
|
|
|
Update Data Tabel From Edit |
Posted by: mfbf - 07-30-2011, 05:10 AM - Forum: Programming Help
- Replies (1)
|
|
I am trying to update the database when I make changes to the data but this code won't work. Thanks for the help in advanced!!
me.validate()
me.customersbindingsource.endedit()
me.tableadaptermanager.updateall()
msgbox("Successfully Updated")
I get the message box but when I re load the application the changes are gone.
|
|
|
Help with Crystal Reporting |
Posted by: mfbf - 07-28-2011, 05:04 AM - Forum: Programming Help
- Replies (1)
|
|
I am generating a invoicing system for my bms software. I am trying to get a crystal report to load from the data typed in on my form. Does anyone know how to code that in vb.
Thanks,
|
|
|
|