Advanced Forum Search Results
-
Hi!
I've being exploring the Silverlight 2 controls, and I've planned to share my research results.
Here is the firs post of what i hope will be a big serie of documents I'll be writing about Silverlight and some other .net techonologies.
You can see it here.
-
Hi!
I'm using a silverlight app. to add richness to some elements of my ASP.Net - AJAX page... I'm using an asp:Silverlight control to embed my Silverlight app, the asp:Silverlight is inside a div wich is invisible (style="display: none;")...
I've noticed that the SL app starts loadig until I make (using ...
-
Hi!!
I'm accesing the DOM from managed code (actually using the invoke method of the window element) and verifying if the document is completly loaded using HtmlPage.Document.IsReady... it works great in IE (even in IE 8) but in Firefox is always get False... no mather how long I wait.
Have any idiea whats going on?
-
Hi ralph123 !!
I'm not sure if this applies to your case but you hould check this link: http://community.irritatedvowel.com/blogs/pete_browns_blog/archive/2008/03/09/Silverlight-2-Beta-1-Path-and-File-Resolution.aspx
Regards.
-
Hi sdaubin !!
I think you shoul check the Breaking Changes Document (comming with the Silvelight 2 SDK)... go to the end of page 10.
Regards.
-
Hi easy28 !!
This link may help you:
http://community.irritatedvowel.com/blogs/pete_browns_blog/archive/2008/03/09/Silverlight-2-Beta-1-Path-and-File-Resolution.aspx
Regards
-
I've made the test on XP Pro English - Keyboard Spanish International... and got the same problem... I also noticed that key's related to Alt Gr are not working either.
-
Hi!
I'm having the same problem... and I think it has nothing to do with XAML but with the OS and / or Keyboard configuration... I'm using Vista Ultimate in Spanish with keyboard configured in Spanish - Mexico... I'm looking forward to test it int XP Pro English - Keyboard Spanish International sort... I'll keep you ...
-
Hi Jesse!
I'm starting to build a web app. witch would perfectly fit in Silverlight 2.0, but I have some pressure to finish it as soon as possible this make I can't wait for the bits of Silverlight 2.0 to arrive.
I've thought I could write all code related to data access by the time I get my hands on Silverlight 2.0, but I was wondering what ...
-
Hi bpatters
I had the same problem and I got it solve by setting the property "Type" from the TimeLimeMarker to some value:
if(mdeVideo.Markers.Count == 0){
TimelineMarker mrk = new TimelineMarker();mrk.Time = new TimeSpan(0, 0, 45);
mrk.Text = "End";mrk.Type = "End"; ...