Advanced Forum Search Results
-
Hi mukkuonline,
That may be true for projects created in the older beta versions, but I created a new project with a simple textbox and command button and it still does the same thing.
Thanks for your reply.
-
After installing SP1 for VS.net 2008, I then installed Silverlight 2.0 RCO, the new tools, and finally the new Blend 2.0. What I have discovered even in a NEW Silverlight project is that I receive AG_E_UNKNOWN_ERROR whenever I open a XAML after closing it first. For example, after successfully compiling a Silverlight project, I can open and ...
-
Chris,
How do you wire this up? My app.xaml is loading page.xmal. page.xmal has the textbox. page.xmal.vb inherits 'UserControl', not 'TextBox'. If I create a seperate class with this code in it, how do I get the page.xmal to talk to the PasswordText.xmal when the inheritance is different? Can I place this logic ...
-
Chris, could you show how this is done in VB? Thanks, Jim
-
I was able to get it to work. Here is the resolution:
ASPX code:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
Try
Dim strIP As ...
-
In the aspx, in a javascript, I have the following:
Xaml1.InitParameters = "test"
In the app.xaml.vb (application startup), I am trying to access the paramater collection, but not sure how to do it in VB. Can you help with that?
Thanks.
-
Does anyone know how to get the IP address in a Silverlight project using VB .Net?
I created a textbox on the silverlight *.aspx page and was able to capture the IP address using the following statement:
Me.TextBox1.Text = Request.UserHostAddress.ToString
but how do I pass that value to the ...
-
You are right. My mistake. The HTML stated that the name of the control was 'Xaml1'. I changed the ID to 'Xaml1' and it worked just fine. Thank you!
-
I placed this javascript in the *.aspx page within the Head of the page just as it is, but replacing the 'Xaml1' with the name of the Logon with the name of my Logon xaml and it still does not work. Did you try this out on your application?
-
Thanks for taking the time to look into it....