Advanced Forum Search Results
-
Below site wil help you configure easily iis6.0.
Just try it
http://weblogs.asp.net/visualwebgui/archive/2008/12/28/developing-and-deploying-a-visual-webgui-silverlight-application.aspx
And for others
http://www.longhorncorner.com/UploadFile/nipuntomar/ConfiguringIISSilverlight10022008234540PM/ConfiguringIISSilverlight.aspx
If above link help ...
-
hi,
It may help you understand follow the link as below...
http://www.codeproject.com/KB/WPF/WPF_Localization.aspx?display=Print
if it help you, mark as "answer"
-
If you want get data of attributes dynamically
<ChartInfo>
<Info Month="January" Accident="100"></Info>
<Info Month="February" Accident="120"></Info>
<CharInfo>XmlReader reader;
int k = 0;
try
{reader = XmlReader.Create(XmlFileName);while ...
-
I need explanation of flow not Notation dataflow daigram.
Suppose how it get input and process and made output in dataflow daigram
-
I have create classlibrary of silverlight gauage controls
I need to create dataflow diagram (for each control) which interact with asp.net and reflact output
so welcome any suggestion .
thanx in Advance.
-
void page_Loaded()
{
elp.KeyDown+=new KeyEventHandler(elp_KeyDown);
}public void elp_KeyDown(object sender, KeyEventArgs ke)
{
elp.Height = 200;
}
It's not fire event.
-
Suppose you have simple canvas & you make two line x-axis line and y-axis line
at particular x is horizontal line so line's Y is constant
and like that y is vertical line so line's X is constant
Now just get canvas co-ordinate x and Y as under
public void moseleftbuttonDown(Object o,MouseEventArgs ...
-
It may help you if you put your images in images folder at runtime Image img = new Image();
Uri ur = new Uri("images/1.jpg", UriKind.Relative);ImageSource isu = new System.Windows.Media.Imaging.BitmapImage(ur);
img.SetValue(Image.SourceProperty, isu);
LayoutRoot.Children.Add(img);
-
yes, and it's better than simple webservice because it support more protocol.
-
You have to get mouse position for the moveing scrollbar so
in mouseleftbuttondown(object e,mousetEventargs e)
{
point p=new point();
p=e.getposition(this);
//Now you should assigen p.x to slider as you wish...
}
If it may help U ,
Mark as answer