Advanced Forum Search Results
-
It appear you have configured all correctly. I suggest you to track the application loading using fiddler or a similar tool to check the responses from webserver.
hth
-
what combo box do you mean exactly?
and what's the problem you found?
bye
-
Right click is not available in Silverlight. If you neew to handle double click you have to handle the Mouse events to detect double clicks. You can download the sample in this post:
http://www.silverlightplayground.org/post/2009/03/17/Creating-a-MouseClickManager-to-handle-single-and-double-mouse-clicks.aspx
HTH
-
You can do it using ASP.NET Application Services. In this post you can find an example with authentication but it works with roles too.
http://www.silverlightshow.net/items/Accessing-the-ASP.NET-Authentication-Profile-and-Role-Service-in-Silverlight.aspx
bye
-
No, setters cannot be uset for databinding.
can you post some code to help me understand your problem?
bye
-
You cannot bind properties using styles. The better for you is to add a IsEnabled property on your templated control and bind the inner IsEnabled with it using TemplateBinding. Then you cat bind the outmost IsEnabled to the DataContext.
IsEnabled="{TemplateBinding IsEnabled}"
Bye
-
yes you can but you have to open the separated "print.aspx" page from the silverlight plugin when the webservice call ended.
http://blogs.silverlight.net/blogs/msnow/archive/2008/09/30/silverlight-tip-of-the-day-52-how-to-popup-a-browser-window.aspx
Remember that the popup window can be openend only in the context of an ...
-
I think you can use Silverlight 3.0 local connections to let the main application communicate with the other parts:
http://www.silverlightplayground.org/post/2009/03/18/Silverlight3-Local-Connections.aspx
bye
-
this is not supported in Entity Framework. When you specify a stored proc for an operation you have to specify all the sp for the other ops.
bye
-
This question is slightly off topic in this forum. However I think you can obtain the result you want using the Contains() entension methos passing it the array of jobtitle to exclude:
where !source.Contains(jobtitlestoremove)
bye