Advanced Forum Search Results
-
I have put together my own media player which works quite well. However, when i move the slider control to a point in the video which has yet to be downloaded, once the buffer / download catches up this position the actual media player falls over. Looking at the current state of the media player, I believe this is being caused because the media ...
-
Just to keep others updated who may have a similar issue....
As thought, silverlight didnt understand what was getting passed back from the web service due to the complex nature of the class. The class contained a number of properties some of which contained lists of other complex classes which themseleves contain lists of other classes. The ...
-
I thought of this, however the class file itself (the description) is not written within the webservice. Its in a seperate .NET dll that is referenced by the webservice. I am unsure how to decorate that / include it in a datacontract / datamember etc. I dont want to duplicate the class layer by declaring all the classes in the WCF service as there ...
-
Basically we have a "class layer" written in .NET. This isnt an intelligent layer, rather just full of classes that hold other classes containing values. These classes are then used / passed around from layer to layer. (Background info for you)
In my WCF web service I have referenced this class layer and the data layer we use. ...
-
Hi,
I have solved the issue. The service is being used within a control library that is in turn being used by a silverlight application. The silverlight application did origonally have a reference to a web service but this was removed. However, it has left the serviceReference.clientconfig file. I deleted this only to then ...
-
Hi bill, I still get exactly the same error message...
-
I am trying to consuming a wcf web service within a silverlight control library. I can reference this fine by using the discover option when adding a service to my library. I can also code fine using intellisense. The issue comes when the code is run and the code tries to create a new instance of the web service. I get the following ...
-
Private Sub pthHeader_MouseLeftButtonDown(ByVal sender As Object, ByVal e As System.Windows.Input.MouseButtonEventArgs) Handles pthHeader.MouseLeftButtonDown'Dim objSender As Canvas
Dim objSender As FrameworkElement
Try
'objSender = CType(sender, Canvas)
objSender = CType(sender, FrameworkElement)
objSender.Opacity = ...
-
Hi yes, I had captured the mouse event....
Basically my code was to implement drag and drop. However, I have got it working by instead of waiting for the mouse move event to happen on the item i have clicked and held, (in this case a path) capturing the canvas mouse move event and executing my code in there. This doesnt seem quite right, however ...
-
I have a user control which when i click on it raises an event (left mouse button down)...This works fine. However, from the same control i have a mousemove event, which does not fire while the mouse left button is down....once i release the mouse, the mouse move event triggers but no the mouse left button up....this gets the application in a ...