Advanced Forum Search Results
-
Thanks, I got it figured out. It was an issue related to a timer that was being called in a handler
-
Has anyone ever come up with a solution to this? I'm having the same problem.
-
I tried this, and no exception is thrown.
I've tracked it down to this event:
VideoWindow.MediaOpened += new RoutedEventHandler(VideoWindow_MediaOpened);void VideoWindow_MediaOpened(object sender, EventArgs e)
{
try
{string totaltime;
totaltime = VideoWindow.NaturalDuration.ToString();
totaltime = totaltime.Substring(0, ...
-
I have a movie player which loads movies in a media element through thumbnails. I click the first thumbnail and it loads the movie in the media element. I then click another and the whole player disappears. Here is my code:void newthumb_MouseLeftButtonUp(object sender, MouseEventArgs e){
Thumbnail vidthumb;vidthumb = ...
-
After going through trying to get my application upgraded to 2.0 from 1.1, I can get anything to show up. It keeps saying there is an unknown error at the end of my header if I try to do a debug. I am just about to say the I need to start over from scratch:
<Canvasxmlns="http://schemas.microsoft.com/client/2007" ...
-
I'm using 2008 team edition. I can add a service reference, but under the advanced tab, there is no option to add a web reference.
-
I tried following the tutorial on how to add a web reference from the add service box, but mine does not have an option for that. I really don't want to re write my service in this new way. Its seems very strange and much more difficult than the web reference is.
-
I had written a 1.1 application a while back that uses an asmx webservice to access my SQL server database and return an array of structs. I notice now that you cannot add a Web Reference in the silverlight project like I was using in 1.1 app.
How do I go about using this web service in my program since it has been upgraded to ...
-
I'm just not getting back into silverlight. I did a project in 1.1 alpha a few month ago and am having a terrible time getting it up a running in 2.0. It seems that a lot has changed.I have this code from 1.1 :
canvas.Children[x].Name
It worked fine in 1.1, but it doesn't in 2.0. What will give me ...
-
I have a project that calls a webservice. I have a test project in 2008 with webservice project included in that solution. My webservice returns an array of custom structs. The project works just fine when I run it.
My problem comes when I try to put all this in an existing 2005 application. I copy the xaml and ...