473,766 Members | 2,044 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

2 tiny questions

Simple questions that have just been kickin my butt!

Question 1:
Here's the code:

XmlNode node1;
XmlAttribute attribute1;
node1 = this.xmlDoc.Doc umentElement[sectionName];
attribute1 = node1.Attribute s.GetNamedItem( attributeName);

And here's the error:

Cannot implicitly convert type 'string' to 'System.Xml.Xml Attribute'
Question 2:
How do you add those nice comments to a class that get pulled up in
Intellisense?

Thank you,
Sueffel
Nov 16 '05 #1
7 1376
Just for some depth, here's the entire function:

public string GetConfigAttrib ute(string sectionName, string attributeName,
bool createIfNotFoun d)
{
XmlNode node1;
XmlAttribute attribute1;
node1 = this.xmlDoc.Doc umentElement[sectionName];
attribute1 = node1.Attribute s.GetNamedItem( attributeName);
if ((attribute1 == null) && createIfNotFoun d)
{
attribute1 = this.xmlDoc.Cre ateAttribute(at tributeName);
node1.Attribute s.Append(attrib ute1);
this.xmlDoc.Sav e(this.configFi leName);
}
if (attribute1 != null)
{
return attribute1.Valu e;
}
return "";
}

Thanks again,
Sueffel
Nov 16 '05 #2
"Sueffel" <so*****@somewh ere.com> wrote in news:eWtlPx0HEH A.3748
@tk2msftngp13.p hx.gbl:
Question 1:
Here's the code:

XmlNode node1;
XmlAttribute attribute1;
node1 = this.xmlDoc.Doc umentElement[sectionName];
attribute1 = node1.Attribute s.GetNamedItem( attributeName);

And here's the error:

Cannot implicitly convert type 'string' to 'System.Xml.Xml Attribute'
Assuming that the variables like 'sectionName' and so forth are defined
correctly, I get a different error - cannot convert XmlNode to
XmlAttribute. This is expected and you can simply cast the XmlAttribute to
an XmlNode, or define attribute1 as an XmlNode to start with.
Question 2:
How do you add those nice comments to a class that get pulled up in
Intellisense?


Comment the class and functions with /// comments - it will automatically
provide popups.

-mdb
Nov 16 '05 #3
I ended up finding my original source for this sucker, and feel kinda
stupid. Here's the function as it should look:

public string GetConfigAttrib ute(string sectionName, string attributeName,
bool createIfNotFoun d)
{
XmlNode sectionNode = this.xmlDoc.Doc umentElement[sectionName];
XmlAttribute attr = sectionNode.Att ributes[attributeName];
if (attr == null)
{
if (createIfNotFou nd)
{
attr = this.xmlDoc.Cre ateAttribute(at tributeName);
sectionNode.Att ributes.Append( attr);
this.xmlDoc.Sav e(this.configFi leName);
}
}
return (attr == null) ? "" : attr.Value;
}

As for the second question, here's what I have:

/// <summary>
/// Gets the specified Attribute
/// </summary>
/// <param name="sectionNa me">Name of section</param>
/// <param name="attribute Name">name of attribute</param>
/// <param name="createIfN otFound">Create section if it doesn't
exist</param>
/// <returns></returns>

The XML document did make, but I still don't have that info in the
Intellisense window. That's the only reason I'm doing this in C#, otherwise
I'd do it in my native VB.NET.

Otherwise, I just need to figure out why I'm havingmy other error, and I can
re-release this sucker. Funny how finickey things can be.

Thanks again,
Suefffel
Nov 16 '05 #4
Lemme try to be claer, after reading my posts, I think I'm not speaking of
the correct things. basically, when you type String s = New String(
When you type the ( the little box pops up and gives a description of the
peramiters. That's what I'm after.

Thanks again,
Sueffel
Nov 16 '05 #5
Sueffel <so*****@somewh ere.com> wrote:
The XML document did make, but I still don't have that info in the
Intellisense window. That's the only reason I'm doing this in C#, otherwise
I'd do it in my native VB.NET.


To use XML documentation within other solutions, you need to have the
..xml file in the same location as the assembly, and it must have
*exactly* the same name as the assembly itself, but with .xml instead
of .dll at the end. Within the same solution, I *think* it should come
up anyway, even if you don't build the .xml file.

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #6
Sueffel,
Make sure you have specified the XML Documentation File parameter in the
project Configuration Build properties with the correct xml file name. This
will build the documentation file to be used in other projects. This needs
to be specified for both release and debug builds.

Ron Allen
"Sueffel" <so*****@somewh ere.com> wrote in message
news:uN******** ******@TK2MSFTN GP12.phx.gbl...
I ended up finding my original source for this sucker, and feel kinda
stupid. Here's the function as it should look:

public string GetConfigAttrib ute(string sectionName, string attributeName,
bool createIfNotFoun d)
{
XmlNode sectionNode = this.xmlDoc.Doc umentElement[sectionName];
XmlAttribute attr = sectionNode.Att ributes[attributeName];
if (attr == null)
{
if (createIfNotFou nd)
{
attr = this.xmlDoc.Cre ateAttribute(at tributeName);
sectionNode.Att ributes.Append( attr);
this.xmlDoc.Sav e(this.configFi leName);
}
}
return (attr == null) ? "" : attr.Value;
}

As for the second question, here's what I have:

/// <summary>
/// Gets the specified Attribute
/// </summary>
/// <param name="sectionNa me">Name of section</param>
/// <param name="attribute Name">name of attribute</param>
/// <param name="createIfN otFound">Create section if it doesn't
exist</param>
/// <returns></returns>

The XML document did make, but I still don't have that info in the
Intellisense window. That's the only reason I'm doing this in C#, otherwise I'd do it in my native VB.NET.

Otherwise, I just need to figure out why I'm havingmy other error, and I can re-release this sucker. Funny how finickey things can be.

Thanks again,
Suefffel

Nov 16 '05 #7
I didn't have the name exactly as the assembly name. That problem is fixed.
Once again, thank you all for all your help, it is greatly appreciated.

Sueffel
"Sueffel" <so*****@somewh ere.com> wrote in message
news:uN******** ******@TK2MSFTN GP12.phx.gbl...
I ended up finding my original source for this sucker, and feel kinda
stupid. Here's the function as it should look:

public string GetConfigAttrib ute(string sectionName, string attributeName,
bool createIfNotFoun d)
{
XmlNode sectionNode = this.xmlDoc.Doc umentElement[sectionName];
XmlAttribute attr = sectionNode.Att ributes[attributeName];
if (attr == null)
{
if (createIfNotFou nd)
{
attr = this.xmlDoc.Cre ateAttribute(at tributeName);
sectionNode.Att ributes.Append( attr);
this.xmlDoc.Sav e(this.configFi leName);
}
}
return (attr == null) ? "" : attr.Value;
}

As for the second question, here's what I have:

/// <summary>
/// Gets the specified Attribute
/// </summary>
/// <param name="sectionNa me">Name of section</param>
/// <param name="attribute Name">name of attribute</param>
/// <param name="createIfN otFound">Create section if it doesn't
exist</param>
/// <returns></returns>

The XML document did make, but I still don't have that info in the
Intellisense window. That's the only reason I'm doing this in C#, otherwise I'd do it in my native VB.NET.

Otherwise, I just need to figure out why I'm havingmy other error, and I can re-release this sucker. Funny how finickey things can be.

Thanks again,
Suefffel

Nov 16 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1697
by: Sven Kobow | last post by:
Hello, I'm not yet a python programmer but a python user. I faced a problem with tiny fonts in a wxPython app on a GNU/Debian system. Under Gentoo Linux the fonts are displayed in a normal readable size. Only on that Debian system fonts in the whole app are rather tiny. I spend quite a long time googling for a solution and found several hints on font problem issues in wxPython but none fitted to that mentioned above. Does anybody has a...
0
1293
by: Justin Ezequiel | last post by:
Can somebody please give me a URL to where I can download the DTD? I've Googled and browsed all through http://openreport.org/ with no success.. I've subscribed to the OpenReport mailing list but messages I send to openreport-list@openreport.org bounce back with an unknown user: "openreport-list" BTW, anyone here using Tiny RML2PDF? Any comments? Thank you.
5
2212
by: Mel | last post by:
i would like to place a tiny image on the top-left corner of all screens and on clicking the image to to http://www.somewhere.com url can you please help ?
7
5892
by: Werner Nussbaumer | last post by:
Hello I am searching for a version of the Tiny C compiler for Windows 32. I downloaded a version from http://fabrice.bellard.free.fr/tcc/ but the make command displayed error messages: P:\DEVELOP\c2\TCC-09~1.20>make MAKE Version 5.2 Copyright (c) 1987, 1998 Inprise Corp. Error makefile 5: Command syntax error Error makefile 13: Command syntax error
7
1019
by: Sueffel | last post by:
Simple questions that have just been kickin my butt! Question 1: Here's the code: XmlNode node1; XmlAttribute attribute1; node1 = this.xmlDoc.DocumentElement; attribute1 = node1.Attributes.GetNamedItem(attributeName);
5
4078
by: soeren | last post by:
Hello, two days ago I stumbled across a very strange problem that came up when we were printing tiny double numbers as strings and trying to read them on another place. This is part of an object serialisation framework that cannot be done in binary format currently, so please no comments about this ,-)) It took quite some time to shrink down the problem but it looks like that C++ does not behave well in regards to very tiny numbers.
2
1639
by: Martijn Mulder | last post by:
I want to implement a tiny window in my application, one that you typically invoke via the menu-option Window -Toolbar. It must be floating, not restricted to the client area of the controlling form. It has a tiny close-button on the right-hand corner. How do I implement this?
0
5573
by: gunimpi | last post by:
http://www.vbforums.com/showthread.php?p=2745431#post2745431 ******************************************************** VB6 OR VBA & Webbrowser DOM Tiny $50 Mini Project Programmer help wanted ******************************************************** For this teeny job, please refer to: http://feeds.reddit.com/feed/8fu/?o=25
14
5616
by: rtk | last post by:
I'm looking for information on building a tiny/small/minimalist/ vanilla python interpreter. One that implements the core language and a few of the key modules but isn't tied to any specific operating system. I guess I'm asking for the smallest subset of the standard Python source code files that is necessary to get a working interpreter using a plain C compiler. Is this even possible? If so, has someone done it already? I've
0
9568
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10008
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9959
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9837
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8833
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7381
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6651
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3929
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3532
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.