Advanced Forum Search Results
-
Thanks, but it still doesn't work :/
-
Thanks for your answer. My web.config was almost like that (except for the <dns value="localhost"/> part).
It still doesn't work. When I try to access my Silverlight application from another computer I get the same error and I get the Unauthorized error when I run SCVUTIL to test the service.
-
Still having the same problem. Can anyone help me?
-
Hello,
I have a Silverlight application that uses a WCF Service to access and retrieve some data from Dynamics CRM. Everything works fine on the computer I used to develop the application. The problem is that when I try to access the Silverlight application from another computer, I get the following error message:
Message: Unhandled Error in ...
-
Hey!
I tried that, but it didn't work. I can open a browser window if I click an HyperLinkButton, but I need to do it when I click on a DataGrid row (which has an id that I use to build the URL I'm going to open).
Anyone has any idea?
Thanks.
-
Well, it didn't do anything actually.
I can use a HyperLinkButton to open a webpage (http://www.google.com/ for example), but the problem is that I can't open a webpage when I double click an item in a datagrid (with a link that I construct with data from the selected item).
I can catch that event (the double click, with the help of ...
-
Thanks for your reply, but I didn't understand it very well (never worked with delegates I'm afraid). Can you give me an example please?
Thanks!
-
Hello,
I want to get an application of mine to work out-of-browser. It has some DataGrids and when the user double clicks on a row it opens a webpage accordingly. This is the code I was using:
string serverURI = baseURI + Id;
Uri SourceUri = new Uri(HtmlPage.Document.DocumentUri, serverURI);
HtmlPage.Window.Navigate(SourceUri, ...
-
Just an update. I tried this:
<HyperlinkButton x:Name="myLink" TargetName="_blank" Content="Title" Click="myLink_Click" />
with this code behind:private void myLink_Click(object sender, RoutedEventArgs e)
{
string serverURI = "http://www.google.com"
Uri SourceUri = new ...
-
Hello,
In my Silverlight application I have some text blocks that allow users to open web pages. I use this code to that effect:
string serverURI = "http://www.google.com";
Uri SourceUri = new ...