Advanced Forum Search Results
-
Hi Craig, Yes, hitting this in Expression as well. Vote placed as requested. Cheers
-
Thanks to Shawn (theADOguy)'s blog http://adoguy.com/2008/06/06/Upgrading_your_Silverlight_2_Projects_to_Beta_2.aspx
I needed to add a referrence to System.Windows.Controls.Extended.dll in Blend
-
Hi,
After moving to SL2 beta 2 and moving to the June preview of Blend 2.5 I'm getting "GridSplitter is not supported in a Silverlight project" on my main project (which is a shame as the GridSplitter control is a key element in this project...). All was fine in SL2 beta 1.
I've looked over the breaking changes in Beta 2 ...
-
Hi Yi-Lun Luo, robhouweling,
I've marked both replies as answers: Rob's solutions works and is a neat solution that allows a relative uri, and Yi-Lun Luo's reply adds to the explanation as to why the relative uri wasn't working with HttpWebRequest (though I'm pretty certain I tried it as just the filename ...
-
Hi Rob,
Thanks for the response. But it's appearing that there is something wrong with the Uri variable (or how I'm trying to use it) as soon as it relative. I've tried all combinations of relative paths, in the end I've even put the XML file in the clientbin directory with the xap file and then just referenced the ...
-
Hi ,
on Silverlight beta 2 I'm trying to read an XML file in. If using Uri myPath = new Uri("http://localhost/TamsSilverLight/tamsservers.xml",UriKind.Absolute);
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(myPath);
it all works fine. But changing it to anything relative, such as Uri myPath = new ...