Advanced Forum Search Results
-
Directly running developer runtime gives me this error "Only part of a ReadProcessMemory or WriteProcessMemory request was completed"
will it be solved when i install sdk and tools individually.
Regards,
K.K.Kiran
-
Hi i am unable to install silverlight tools for visual studio 2008 sp1 it is showing log file. i followed tim heuer post and extracted files and tried to install the tools but it is showing this exception
"Silverlight.2.0_Developer.exe returned non-MSI error code: 0x12b - Only part of
a ReadProcessMemory or WriteProcessMemory request ...
-
You mean you want this xaml in a string in your code behind file
yourstring=xaml into a string
Canvas xcanvas=(Canvas)you can use System.Windows.Markup.XamlReader.Load(yourstring);
-
ListBoxItem lbI = (ListBoxItem)schedule_ampm_listbox.SelectedItem;
strint am_pm=lbI.Content.ToString()
this will return u the value of the SelectedItem.
Mark as Answer if this helps You.
Regards K.K.Kiran
-
if you want to read the color of the Canvas then
Color bgcolor = (Color)YourCanvas.Background.GetValue(SolidColorBrush.ColorProperty);
if you want to read the color of the Rectangle or any shape
Color bgcolor = (Color)YourShape.Fill.GetValue(SolidColorBrush.ColorProperty);
if you want to read the color of the textblock
Color bgcolor ...
-
Hi use this
Color bgcolor = (Color)YourElement.Background.GetValue(SolidColorBrush.ColorProperty);
this will return you the hex value
Regards
K.K.Kiran
-
hello everyone i have a web service which runs on say http://localhost:1234/xxx.asmx how could i make it to work on different app domain path it throws a error while running on a diff port how can i solve this.
Regards
K.Kiran
-
Hi I have come up with same problem have you found the solution if so please let me know.
Regards
K.Kiran
-
I have placed my control in the aspx page.can i get my aspx page into the htmldocument.And how do I pass variables from the silverlight code to the aspx page.
-
I need to work with the visibility of the button which is in the aspx page and i need to pass a value using my silverlight code how can i do that.How can i do that ?
Regards
K.Kiran