Click here to Skip to main content
15,924,901 members
Home / Discussions / C#
   

C#

 
Question.NET 2.0 UserControl Adorners Override Please Help!! Pin
@FrankDrebin@12-Feb-07 12:56
@FrankDrebin@12-Feb-07 12:56 
QuestionHow to set node value in XMLDocument [modified] Pin
AndrusM12-Feb-07 12:51
AndrusM12-Feb-07 12:51 
AnswerRe: How to set node value in XMLDocument Pin
gauthee12-Feb-07 17:01
gauthee12-Feb-07 17:01 
GeneralRe: How to set node value in XMLDocument Pin
AndrusM13-Feb-07 1:50
AndrusM13-Feb-07 1:50 
GeneralRe: How to set node value in XMLDocument Pin
Stefan Troschuetz13-Feb-07 6:19
Stefan Troschuetz13-Feb-07 6:19 
GeneralRe: How to set node value in XMLDocument Pin
AndrusM13-Feb-07 8:48
AndrusM13-Feb-07 8:48 
GeneralRe: How to set node value in XMLDocument [modified] Pin
Stefan Troschuetz13-Feb-07 9:19
Stefan Troschuetz13-Feb-07 9:19 
GeneralRe: How to set node value in XMLDocument Pin
AndrusM14-Feb-07 6:18
AndrusM14-Feb-07 6:18 
Thank you very much for help.

I tried

string GetDefaultReport() {
Stream stream = GetType().Assembly.GetManifestResourceStream
				("mynamespace.DefaultReport.xml");
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(stream);
XmlNamespaceManager nsmgr = new XmlNamespaceManager(xmlDocument.NameTable);
nsmgr.AddNamespace("def", "http://schemas.microsoft.com/SQLServer/reporting/reportdesigner");
		
XmlNode node = xmlDocument.SelectSingleNode("/def:DataSource/def:ConnectionProperties/def:ConnectString",		nsmgr );
// this returns null also:  node = xmlDocument.SelectSingleNode
//("//def:ConnectString",	nsmgr);

....


but SelectSingleNode() still returns null.
What I'm doing wrong ?

In Help / Online I have radio button in choice "Try local only, not online".

In first attepmpt in C# Express 2005 when I highlight some item and press F1, it takes 1-2 minutes to open help window. hdd led is on and cpu usage is 10 .. 20% so I think that this time is wasted for reading data from hard disk.

I have Acer Travelmate 273LC notebook with 1.7 GHz Mobile Intel Pentium, 256 MB RAM, 20 GB Ultra ATA/100 HDD, no other applications opened.

Andrus

GeneralRe: How to set node value in XMLDocument Pin
Stefan Troschuetz14-Feb-07 7:36
Stefan Troschuetz14-Feb-07 7:36 
GeneralRe: How to set node value in XMLDocument Pin
AndrusM14-Feb-07 9:23
AndrusM14-Feb-07 9:23 
GeneralRe: How to set node value in XMLDocument Pin
Stefan Troschuetz14-Feb-07 9:59
Stefan Troschuetz14-Feb-07 9:59 
GeneralRe: How to set node value in XMLDocument Pin
AndrusM14-Feb-07 10:23
AndrusM14-Feb-07 10:23 
GeneralRe: How to set node value in XMLDocument Pin
Stefan Troschuetz14-Feb-07 21:13
Stefan Troschuetz14-Feb-07 21:13 
GeneralRe: How to set node value in XMLDocument Pin
AndrusM15-Feb-07 6:43
AndrusM15-Feb-07 6:43 
GeneralRe: How to set node value in XMLDocument Pin
Stefan Troschuetz15-Feb-07 7:32
Stefan Troschuetz15-Feb-07 7:32 
GeneralRe: How to set node value in XMLDocument Pin
AndrusM15-Feb-07 8:13
AndrusM15-Feb-07 8:13 
QuestionConvert DataReader to Entity list Pin
AndrusM12-Feb-07 12:49
AndrusM12-Feb-07 12:49 
QuestionCrystal Report WebService Report to DataSet Pin
dbambirck12-Feb-07 12:36
dbambirck12-Feb-07 12:36 
QuestionCopy value from that table adapter to data grid cell, how? Pin
TrooperIronMan12-Feb-07 12:33
TrooperIronMan12-Feb-07 12:33 
AnswerRe: Copy value from that table adapter to data grid cell, how? Pin
TrooperIronMan12-Feb-07 14:19
TrooperIronMan12-Feb-07 14:19 
GeneralRe: Copy value from that table adapter to data grid cell, how? Pin
TrooperIronMan14-Feb-07 1:38
TrooperIronMan14-Feb-07 1:38 
QuestionHow can I have a Panel in my WindowForm? Pin
Khoramdin12-Feb-07 12:05
Khoramdin12-Feb-07 12:05 
AnswerRe: How can I have a Panel in my WindowForm? Pin
Ed.Poore12-Feb-07 12:23
Ed.Poore12-Feb-07 12:23 
QuestionOrphan Processes Pin
convivial.developer12-Feb-07 11:40
convivial.developer12-Feb-07 11:40 
Questionkeyboard handling for short-cuts using "Switch" Pin
Khoramdin12-Feb-07 10:03
Khoramdin12-Feb-07 10:03 

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.