Search Results

0
votes

Are standard .Net 2 dlls compatible with the silverlight 2.0 runtime?

In addition to creating the files in one project and adding them as links in the other, you might still encounter API difference between the desktop and Silverlight APIs. You can work around those …
4
votes

embedding silverlight, anything like flash?

You can do it with just an object tag. The JavaScript used in the MSDN example is to print any errors that occur while loading the application (though they usually just end up as warning in the br …
1
vote

WCF for Silverlight App

If you're going from an http://... context to a file://... context, it's not a cross-domain issue, actually. Instead, it's a cross-context issue, which is not allowed in Silverlight 2 (this also h …
1
vote

Silverlight Out of Browser Host

Aside from hosting in a browser control or window, there's a COM API for hosting the Silverlight contro …
0
votes

Does Silverlight 3 have access to local file system, Open Excel, and print reports?

No, as far as I know Silverlight 3 is still as sand-boxed as ever. This is becoming a bottleneck for developers though, so I'm sure it will be addressed in upcoming versions of Silverlight. …
0
votes

To Host Silverlight Application on a Classic ASP page

You can probably do what you want via the initParams parameter, at least as far as sending data from the page to the Silverlight app at load time. If you're setting it from the server, you can jus …