Advanced Forum Search Results
-
I would suggest, un-install that SDK, uninstall The Silverlight dev tools.
Restart maching, reinstall dev tools, get the latest (non beta) Silverlight 3 SDK and install that.
Beside that I'm not sure what to try...
Good luck!
-
At what point does your problems start? If you create a new projct and do nothing but build the solution staright away, does no .xap file show up in the ClientBin folder?
When you say you reinstalled Silverlight, did you reinstall the Visual studio developer tools for silverlight or just the Silverlight runtime?
Also which VS version are ...
-
One thing to keep in mind is that you need to build the solution, not just the silverlight project for the xap file to be copied across.
If that's what you're doing and you've followed the previous suggestions, it's very hard to even guess what the problem might be.
In that case I would suggest, closing that project/Solution, ...
-
Make sure you've built the solution etc. so that the .xap file is in the ClientBin folder of the web project.
Sometimes this error comes up if the .xap file can't be found.
Good luck!
-
Hi Michel,
I had a quick look around the net for this error but couldn't really find much.
I would suggest that you uninstall everything that's got to do with Silverlight through your "add and remove programs" (or the equivalent in Vista) in the Contol panel. Then do a full re install of all the Silverlight bits, a ...
-
Aah, ok I understand, can't say I know any other solution, without having a play with it.
Have you considered fully using the javascript approach to adding a silverlight object to a page?
Ie. something along the lines of
<div id="silverlightControlHost"> <object ...
-
Hi Ryan,
I would say that if you've not done test driven development (TDD) before, it is probably a good idea to familiarise yourself with some of the concepts and terminology etc. before diving straight into trying to use any testing framework. One place to start, could be the Wikipedia article on TDD ...
-
Hi there,
Jesse Liberty has done some work on showing how to create a multi page Silverlight application.
Check out his two part video on the topic here http://silverlight.net/learn/learnvideo.aspx?video=56933
Also here are a couple of blog posts covering multipage ...
-
Hi there,
Could you clarify a little on what you mean by "confuses every browser that is not IE"?
I just crated a test app using the <asp: silverlight> control and it works ok in both Firefox 3 and Chrome.
Cheers
Ola
-
Hi there,
Try this code:
Public Sub New() InitializeComponent() SaveData() ReadData() End Sub Public Sub SaveData() Using store As IsolatedStorageFile = ...