Advanced Forum Search Results
-
Hi!
I have written a silverlight app which has a built-in text editor. This editor should create a new document when the user presses Ctrl + N.
Unfortunately the IE opens a new window on Ctrl + N.
How can I disable the browser keyboard shortcuts (perhaps using javascript)?
(I noticed that the IE does not display a search window on Ctrl + ...
-
Hi,
I chose "Silverlight 3 Application + Website" when I created the project.
After some changes to the project, this error occurred. Somehow it seems that I have told it to include this dll (although I don't need / want it to be included in my project).
Has anybody an Idea how I can find out where this dll is included? (I've ...
-
[quote user="ColinBlair"]If you are creating your own objects to be transferred then you need to put an AssociationAttribute and an IncludeAttribute in the metadata of CommentsData class on the Comments property. [/quote]
That's interesting. So I have three possibilities:Add a "UserName" property to the Comment class ...
-
Thanks for your fast answer, sapientcoder!
[quote user="sapientcoder"]If you're trying to avoid passing a User object back to the client with your Comment object, and if your Comment class is a partial class (which it probably is if your DAL was auto-generated by an ORM tool like Linq to Sql), then you could simply ...
-
Hi,
I want to use RIA Services for enabling my website users to comment upon a certain topic.
Problem:
I currently use a specific class "CommentData" because I also need to transfer the UserName of the comment author. That's why I don't have a "Comments" instance on the client on which I could easily perform crud ...
-
Hi,
When I try to build my silverlight application in Expression Blend 3 Beta it shows the following error message for each .xaml file
in my project.
"The file or assembly "Microsoft.Windows.Design.Extensibility, Version=3.8.0.0, Culture=neutral, PublicKeyToken=b03f5f711d50a3a"
or one of its dependencies was not found. The ...
-
[quote user="fullsailrick"]I would perform the maths in a CompositionTarget.Rendering event handler, instead of using storyboards[/quote]
Yeah, i tried that, too. It did not work either.
[quote user="fullsailrick"]I might try to do this over the weekend for giggles.[/quote]
I hope you get that working.
[quote ...
-
Yep that's right.
But there must be a possibility to play an audio file at half speed. Any idea?
-
Hi,
i am looking for a way to play a audio file with the mediaElement in silverlight at a variable speed.
The problem is that there is no property "speedRatio" in silverlight and i have read in some forums that silverlight does not support playing audio files at a variable speed.
Is there some workaround?
I have tried changing ...
-
Okay, thanks for your help again.