Advanced Forum Search Results
-
I know this is possible, I'm sure I saw an article about it, but I can't remember or find it now. Can anyone point me in the right direction.
-
I have a basic timeline that does some resizing that is producing the following error:
Cannot resolve TargetProperty (UIElement.RenderTransform).(TransformGroup.Children)[3].(TranslateTransform.Y) on specified object
I looked for all the elements in this timeline that contain that text, and removing them one by one did not resolve the ...
-
I have a group of list elements that I need to create on application start. I don't know how many lists I'll have because they are created based on database info. I then need to be able to access a specific list based on user submitted data. For instance, say I'm working with groups, and I pull down lists of users in ...
-
I want to try and do some VE integration and was wondering how easy it is to do with Silverlight, and if anyone can point me to some resources to help me get started.
-
That method wants an IAsyncResult value. I found out there's issues with Twitter's CrossDomain policy anyway, so I'm going to get the twitter feed from the server and pass it that way.
-
Also I'm testing it with my own twitter feed, and verified the URL is correct and pulls back a feed: http://twitter.com/statuses/user_timeline/lukeconner.xml
-
No, on the last line of the method:
this is the whole method.
public void PullTwitterFeed()
{
string u = "http://twitter.com/statuses/user_timeline/" + this.twitter_username + ".xml";
Uri url = new Uri(u);
HttpWebRequest request = ...
-
I'm trying to pull down a user's twitter feed with the following:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(new Uri("http://twitter.com/statuses/user_timeline/" + this.twitter_username + ".xml"));
request.BeginGetRequestStream(new AsyncCallback(ProcessTwitterFeed), request);
I get an ...
-
I can't set it on init, we're talking about more than 200 textblocks. Can't my ToString() solution work some way?
-
After reading your first response again, I think I understand what you're saying, except I don't think that is possible. This loops through and sets the colors, but I don't know what the default color will be, so I have no way of applying the default like you're suggesting because when it does it's very first loop it will ...