New Post: Partial network problem in Twitter
In the meantime I tried it now on three different laptops with two different authorized Twitter accounts and from home and work so different IP addresses. But I am still experiencing the same problem...
View ArticleNew Post: Partial network problem in Twitter
I'm not sure what's causing this. I've asked for help on the Twitter programmer forums. -- Tonyhttp://dev.twitter.com/discussions/18999
View ArticleNew Post: Partial network problem in Twitter
Thanks Tony. My clock is automatically syncing with the Windows Internet clock so it can not be too much out of syc. Seems to me that if the described error occurs the program should add some slack...
View ArticleNew Post: Partial network problem in Twitter
Thanks, Tony, I look forward to hearing what they come up with. In addition to the timing issue, I wonder if a Twitter client running on the same router IP might trigger a problem as well. I turned off...
View ArticleNew Post: Partial network problem in Twitter
Hi, Remko: I don't want to add a "try again" mechanism here. We have that already, but it kicks in only for network errors. This is not an error; it is a legitimate response from Twitter. I could add...
View ArticleNew Post: Partial network problem in Twitter
Would it be worth trying to change our clock settings? I assume from your response that NodeXL is basing its timing on the system clock, If it is running a counter, then the speed of my system might be...
View ArticleNew Post: Partial network problem in Twitter
Another possibility is that Twitter is deliberately halting further requests based on server load. In the Twitter Search Network, I've found that identical requests made a few minutes apart will return...
View ArticleNew Post: Partial network problem in Twitter
You can certainly try that, John. You would want to temporarily set your clock backwards, so NodeXL will pause for a longer period. This could cause other problems, though. If you get an error from...
View ArticleCreated Unassigned: TargetException example file [24432]
Attached if the file that causes the problems described in the bug report here: https://nodexl.codeplex.com/discussions/447004
View ArticleNew Post: Build 238/Excel2007: [TargetException]: Object does not match...
Thanks Tony. I downloaded and installed the PIA per instructions and did not have any different result. I have uploaded the file that generates this issues...
View ArticleNew Post: Partial network problem in Twitter
Regarding the timing. I tried three different laptops so that would mean that I had three times bad luck with the clock settings ...
View ArticleNew Post: Partial network problem in Twitter
What OS are you using, Remko? I'm running the same search on Windows 7 right now (and a slower PC as well) that was tripping up before on my Windows 8 machine. It's been going a while and hasn't hit a...
View ArticleNew Post: How to get the location of a vertex?
private void nodeXLControl1_VerticesMoved(object sender, VerticesMovedEventArgs e) { IVertex[] v = (IVertex[])e.MovedVertices; string currentVertexName = v[0].Name.ToString(); How to get the location?...
View ArticleNew Post: How to get the location of a vertex?
dynamic veterx = v[0]; double XCoordinate = veterx.Location.X; double YCoordinate = veterx.Location.Y; Another question - how to set a location of a vertex? Tnx.
View ArticleNew Post: Is there a way to determine the way vertices are placed?
Another question please - how do I set the vertex locations myself? Tnx.
View ArticleUpdated Wiki: Home
NodeXL is a free, open-source template for Microsoft® Excel® 2007, 2010 and (possibly) 2013 that makes it easy to explorenetwork graphs. With NodeXL, you can enter a network edge list in a worksheet,...
View ArticleNew Post: Partial network problem in Twitter
So the collection is still running, but my previous efforts had crashed by now, so this is very encouraging. The differences between then and now: 1) I shut down absolutely everything in the house that...
View ArticleNew Post: Build 238/Excel2007: [TargetException]: Object does not match...
Chris: Unfortunately, your workbook opened and calculated graph metrics without a problem on my computer. I was hoping a workbook corruption issue would explain things. I'm stumped at the moment. I'll...
View ArticleNew Post: Is there a way to determine the way vertices are placed?
Here is how you can change the location of one vertex: // Set the vertex location. myVertex.Location = new System.Drawing.PointF(1.234, 5.678); // Draw the graph without laying out the vertices again....
View ArticleNew Post: How to get the location of a vertex?
It looks like you answered the first question yourself. (But don't use "dynamic" for the vertex type; use "IVertex" instead.) I've answered the second question at...
View Article