Click here to Skip to main content
15,908,445 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: "specified element is already the logical child of another element. disconnect it first": (solved) Pin
Edbert P31-Aug-09 16:26
Edbert P31-Aug-09 16:26 
Questionmedialine element does not play video from internet. Pin
vrajaraman27-Aug-09 16:04
vrajaraman27-Aug-09 16:04 
Hi all,

Let me know where i am missing. No exceptions or errors thrown, but video not playing. But when i point the uri to local wmv file it plays correctly.

Thank you,
Sahridhayan


try

{



HttpWebRequest request = WebRequest.Create("http://silverlight.services.live.com/74017/PrajaRajyam/video.wmv") as HttpWebRequest;

request.ContentType =


"text/xml";

request.CookieContainer =


new CookieContainer();




// Assign the credentials of the logged in user or the user being impersonated.

request.Proxy = System.Net.

WebProxy.GetDefaultProxy();

request.Proxy.Credentials =


new NetworkCredential("user", "pwd", "domain");

request.Credentials =


new NetworkCredential("user", "pwd", "domain");//System.Net.WebProxy.GetDefaultProxy().Credentials;



XmlDocument doc = new XmlDocument();





request.GetResponse();

mediaTimeline.Source =

new Uri(@"http://msbluelight-0.agappdom.net/e1/d/74017/13425844.a/63385804800/0.9BjdDlJ_gKpT8Qt8glP0frw2kMA/video.wmv", UriKind.Absolute);




//new Uri(@"mms://mschnlnine.wmod.llnwd.net/a1809/d1/ch9/2/3/3/1/2/4/DynamicsDuoCRMWPF_s_ch9.wmv");

}
QuestionMajor help regarding WPF Application and WPF Browser Application? Pin
Johnny7927-Aug-09 7:51
Johnny7927-Aug-09 7:51 
AnswerRe: Major help regarding WPF Application and WPF Browser Application? Pin
Super Lloyd27-Aug-09 19:19
Super Lloyd27-Aug-09 19:19 
GeneralRe: Major help regarding WPF Application and WPF Browser Application? Pin
Johnny7928-Aug-09 5:20
Johnny7928-Aug-09 5:20 
AnswerRe: Major help regarding WPF Application and WPF Browser Application? Pin
Gideon Engelberth28-Aug-09 7:17
Gideon Engelberth28-Aug-09 7:17 
GeneralRe: Major help regarding WPF Application and WPF Browser Application? Pin
Johnny7928-Aug-09 7:28
Johnny7928-Aug-09 7:28 
QuestionCan I show a ToolTip without hovering the mouse over an element? Pin
Etienne_12327-Aug-09 7:04
Etienne_12327-Aug-09 7:04 
AnswerRe: Can I show a ToolTip without hovering the mouse over an element? Pin
Pete O'Hanlon31-Aug-09 10:55
mvePete O'Hanlon31-Aug-09 10:55 
Questiondiffernt background color to wpf datagrid cell? Pin
sarath12427-Aug-09 0:43
sarath12427-Aug-09 0:43 
AnswerRe: differnt background color to wpf datagrid cell? Pin
vsaratkar27-Aug-09 11:02
vsaratkar27-Aug-09 11:02 
QuestionUsing Cascading Dropdown Pin
LucBite26-Aug-09 4:56
LucBite26-Aug-09 4:56 
AnswerRe: Using Cascading Dropdown Pin
Mark Salsbery26-Aug-09 8:06
Mark Salsbery26-Aug-09 8:06 
QuestionHow do I show balloon tips? Pin
Etienne_12326-Aug-09 4:33
Etienne_12326-Aug-09 4:33 
AnswerRe: How do I show balloon tips? Pin
michmela4426-Aug-09 8:44
michmela4426-Aug-09 8:44 
GeneralRe: How do I show balloon tips? Pin
Etienne_12327-Aug-09 7:01
Etienne_12327-Aug-09 7:01 
QuestionAccess files in a folder. Pin
Nekkantidivya25-Aug-09 21:42
Nekkantidivya25-Aug-09 21:42 
AnswerRe: Access files in a folder. Pin
Mark Salsbery26-Aug-09 8:14
Mark Salsbery26-Aug-09 8:14 
QuestionSystem.Reflection.TargetInvocationException Pin
Nekkantidivya25-Aug-09 1:27
Nekkantidivya25-Aug-09 1:27 
AnswerRe: System.Reflection.TargetInvocationException Pin
Mark Salsbery26-Aug-09 8:20
Mark Salsbery26-Aug-09 8:20 
NewsFree event for Silverlight developers -- join online or in person Pin
brucedkyle24-Aug-09 6:44
brucedkyle24-Aug-09 6:44 
QuestionAnnoying Binding Warning Pin
Super Lloyd24-Aug-09 2:38
Super Lloyd24-Aug-09 2:38 
AnswerRe: Annoying Binding Warning Pin
Insincere Dave25-Aug-09 6:23
Insincere Dave25-Aug-09 6:23 
GeneralRe: Annoying Binding Warning Pin
Super Lloyd25-Aug-09 12:58
Super Lloyd25-Aug-09 12:58 
QuestionWPF Datagrid itemsource:This works but is it the best way ? plz [modified] Pin
prubyholl23-Aug-09 6:01
professionalprubyholl23-Aug-09 6:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.