Click here to Skip to main content
15,887,596 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: simple multi thread app behaving weirdly Pin
Dave Kreskowiak7-May-14 6:07
mveDave Kreskowiak7-May-14 6:07 
GeneralRe: simple multi thread app behaving weirdly Pin
Tony Snowden7-May-14 21:37
Tony Snowden7-May-14 21:37 
QuestionCombobox value not showed in the datagridview Pin
D.Manivelan1-May-14 23:33
D.Manivelan1-May-14 23:33 
SuggestionRe: Combobox value not showed in the datagridview Pin
Maciej Los2-May-14 8:55
mveMaciej Los2-May-14 8:55 
QuestionSubject message not passing to outlook window from VB6.0 Pin
kk20141-May-14 3:53
kk20141-May-14 3:53 
AnswerRe: Subject message not passing to outlook window from VB6.0 Pin
Dave Kreskowiak1-May-14 5:23
mveDave Kreskowiak1-May-14 5:23 
QuestionNeed help on "Competition Scheduling" Algorithm Pin
N.Wang30-Apr-14 16:43
professionalN.Wang30-Apr-14 16:43 
QuestionTwitter REST API V1.1 Pin
Pete_12328-Apr-14 8:10
Pete_12328-Apr-14 8:10 
Hi All,
i have a project that uses a Dll file that the owners are no longer maintaining but have released the source code. i have edited all the URLS to comply with the new twitter api v1.1. my problem is, is that the responses from the server are now sent back via JSON format and no longer XML but all the parse code is parsed via XML. i have no experience in XML or JSON so i was wondering how to go by fixing this so many people who like me are needing this .dll updated would really appreciated if someone can help convert it or some guidance on how to convert it. Bellow are some of the code that needs to be converted but there is a lot more.

Private Function ParseRelationships(ByVal Xml As String) As List(Of TwitterRelationship)
Dim XmlDoc As New XmlDocument
XmlDoc.LoadXml(Xml)

Dim Relationships As New List(Of TwitterRelationship)
For Each RelationshipNode As XmlNode In XmlDoc.SelectNodes("//relationship")
Relationships.Add(New TwitterRelationship(RelationshipNode))
Next

Return Relationships
End Function

Private Function ParseLists(ByVal Xml As String, ByRef NextCursor As Int64) As List(Of TwitterList)
Dim XmlDoc As New XmlDocument
XmlDoc.LoadXml(Xml)

Dim Lists As New List(Of TwitterList)
For Each ListNode As XmlNode In XmlDoc.SelectNodes("//list")
Lists.Add(New TwitterList(ListNode))
Next

NextCursor = Convert.ToInt64(XmlDoc.SelectSingleNode("//next_cursor").InnerText)
Return Lists
End Function
AnswerRe: Twitter REST API V1.1 Pin
Richard Deeming28-Apr-14 8:27
mveRichard Deeming28-Apr-14 8:27 
GeneralRe: Twitter REST API V1.1 Pin
Pete_12328-Apr-14 9:20
Pete_12328-Apr-14 9:20 
AnswerRe: Twitter REST API V1.1 Pin
HenryHugo28-Apr-14 21:38
professionalHenryHugo28-Apr-14 21:38 
QuestionVB.Net - Best practice to store paths as relative path Pin
Bart Van Eyndhoven27-Apr-14 23:42
Bart Van Eyndhoven27-Apr-14 23:42 
AnswerRe: VB.Net - Best practice to store paths as relative path Pin
Richard Deeming28-Apr-14 2:07
mveRichard Deeming28-Apr-14 2:07 
GeneralRe: VB.Net - Best practice to store paths as relative path Pin
Bart Van Eyndhoven28-Apr-14 2:41
Bart Van Eyndhoven28-Apr-14 2:41 
GeneralRe: VB.Net - Best practice to store paths as relative path Pin
Richard Deeming28-Apr-14 2:48
mveRichard Deeming28-Apr-14 2:48 
Questionhow to combine 3 cells into one cell in datagridview Pin
sensizbenlik26-Apr-14 15:22
sensizbenlik26-Apr-14 15:22 
AnswerRe: how to combine 3 cells into one cell in datagridview Pin
khei-chan00729-Apr-14 20:48
khei-chan00729-Apr-14 20:48 
AnswerRe: how to combine 3 cells into one cell in datagridview Pin
Simon_Whale29-Apr-14 22:14
Simon_Whale29-Apr-14 22:14 
QuestionPrevent clicking on controls inside a groupbox without disabling Pin
dilkonika26-Apr-14 2:38
dilkonika26-Apr-14 2:38 
AnswerRe: Prevent clicking on controls inside a groupbox without disabling Pin
Dave Kreskowiak26-Apr-14 3:07
mveDave Kreskowiak26-Apr-14 3:07 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
dilkonika26-Apr-14 4:06
dilkonika26-Apr-14 4:06 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
Dave Kreskowiak26-Apr-14 13:31
mveDave Kreskowiak26-Apr-14 13:31 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
dilkonika27-Apr-14 3:35
dilkonika27-Apr-14 3:35 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
Dave Kreskowiak27-Apr-14 6:45
mveDave Kreskowiak27-Apr-14 6:45 
GeneralRe: Prevent clicking on controls inside a groupbox without disabling Pin
dilkonika27-Apr-14 7:47
dilkonika27-Apr-14 7:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.