Advanced Forum Search Results
-
hey morton, sorry for the delay in the response from me.
the item to be updated is
Item : RampDVDStore
Old Url : http://1dc.net/rampdvdstore
New Url : http://stage.1dc.net/moviestore/
-
Thanks for your quick response...
are there any examples for locking and unlocking files?
currently i am looking into the threading concepts for making tht..
-
Hi all,
I have created a game in silverlight and i am using database to store the highscore details. But now i need to remove the database and store the High scores in any other format in Web Application where i can retrive it back...
I thought of using XML file to store the highscore details but if there were multiple write operations ...
-
I have submitted a Showcase entry before 3 months, The server on which i deployed the application is down for some reasons.
So now i have deployed my application on to another server. I have no options to edit/update the Url of the submitted showcase entry.
Is it possible to update the details of showcase entry?
-
Hey in the above code which i have posted i am setting the source and content of the button dynamically, If you look at the code below which was posted in the above post you can understand it,
I have created another button which has nothing to to with the list of buttons with image and text, In its click event i am populating the ...
-
Check out the below code:
XAML CODE:
<StackPanel Orientation="Vertical" Height="Auto" Width="200">
<ItemsControl x:Name="itemsControlImage" Background="AntiqueWhite" Height="Auto" ...
-
Hi
A simple google search with keywords ClientAccessPolicy and CrossDomainPolicy would give you results..
for the difference between those two go through these links...
http://community.dynamics.com/blogs/cesardalatorre/comments/9579.aspx
http://www.85turns.com/2008/10/15/why-use-a-client-access-policy-file/
-
I am getting 4 stackpanels, each containing a textbox with text "No. Click me!" in it.
Are you not getting any output or not getting required output?
Here is the complete Page.xaml and Page.xaml.cs code
Page.xaml
<UserControl x:Class="Test.Page"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
-
try with this.
xaml code:
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel x:Name="spContainer" Orientation="Vertical"></StackPanel>
</Grid>
.cs codevoid Page_Loaded(object sender, RoutedEventArgs e)
{for (int i = 0; i < 4; i++)
{StackPanel sp = ...
-
does the target server has cross domain xml file?
you can check this by requesting the Url
http://www.someserver.com/clientaccesspolicy.xml
if the response is xml file then the target server has cross domain policy file, if not then you cannot read data from that server until you place crossdomain.xml file on the target server