Advanced Forum Search Results
-
I solved in this way:
xaml:
<TextBlock Margin="331,199,201,263" TextWrapping="Wrap" Name="mail" MouseLeftButtonDown="TextBlock_MouseLeftButtonDown" Cursor="Hand" Canvas.ZIndex="2" ><Run FontSize="12" Text="Contatti: "/><LineBreak/><Run ...
-
new informations:
Dim s As HtmlElement = HtmlPage.Document.GetElementById("3124")
Try
For Each f As HtmlElement In s.Children
If ...
-
Hi Amanda, your code doesn't work: tr.children gives a collection...I've modified code:
Dim s As HtmlElement = HtmlPage.Document.GetElementById("3124")
On Error Resume Next'<-- Very important, without this code stop working after first ...
-
I'd like to not use external part....in my html file I've this table
<table border="1" width="100%" id="table1">
<tr id="3124">
<td width="450" id="desc">set di piatti</td>
...
-
Hi, I have a html page containing a sl application and some html controls.
Inside a DIV called "my_list" I have a table where each row contains a checkbox , a text, a textbox.
How can i get all rows(values of text and input text) where checkbox is checked?
Thanks.
-
Hi, i think it's not good adding 2 pages as usercontrol....
look here http://silverlight.net/learn/tutorials/multipageapps_vb.aspx
;)
-
here(http://www.o-zoners.com/eurostar/) is a game about italian fast train, created by flash tecnology.
I have played it on different pc and I've discovered it has same problem: only time displayed is correct whilst game speed depends of pc.
-
Hi, in my opinion you can exchange data only by param name in html code.
-
inserting manually I get an error: previewed end of instruction...
-
unfortunately in OnExit sub there is not a cancel method to annull window closing, so i think the only way to send data is inserting a
System.Windows.Browser.HtmlPage.Window.Navigate(New Uri("....")) in app, exit sub, sending data as GET parmeters...