Advanced Forum Search Results
-
Hannes, I tried to mark your post as answer but it did not work for some reason. You might want to try this.
Thanks again, Yves
-
Yes, Hannes, this did the trick. Why didn't I think of this?
Thanks a lot!
Yves
-
I am trying to dynamically load an xap from a fully qualified URL instead of ClientBin but, although the documentation for the System.Web.UI.SilverlightControls.Silverlight class says "Use the Source property to specify the URL of the XAML source file or XAP source package.", I get a 404 error. Not sure if it's a bug or by ...
-
Have you tried the UpdateLayout() suggested above to resize the dropdown?
-
You are right, this problem was not fixed in the final release. I am amazed as well ....
-
The only way to access your local file system (apart from the Isolated Storage) is to use the OpenFileDialog. See example below. You need to have a button to call this event handler:void ButtonAdd_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "JPEG Files ...
-
Hi Ken,
Please see previous post. I am targetting for a Silverlight component in order to have similar functionality as we have with current ActiveX. The caller is a Web application.
Thanks, Yves
-
Thanks Jeff. I realize I can do all this but was really trying not to change my server side.
This is a Silverlight application by the way - or at least I am trying to replace the ActiveX with Silverlight. I guess I could always use XBAP but I am really trying to target a small client install (just like we have now with the ActiveX ...
-
I need to replace an old VB6 ActiveX component that uploads photos to a server using FTP. I was thinking Silverlight would be a good candidate but, from what I have read, the FtpWebRequest class in the System.Net namespace is not available for security reasons (I understand security issues were the pitfall of ActiveX). I could use a web ...
-
This is how I solved the same problem. See img_MouseEnter method below.
Since the original BitmapImage is still available, no need to reuse a stream. void ButtonAdd_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
ofd.Filter = "JPEG Files ...