473,799 Members | 3,084 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Disable XML Document warnings in code.

UJ
Is there any way to disable either the generation or the warnings from the
XML Document generator? I have a couple of public enums which it is saying
need the documentation and to add it would make the code hard to read (the
enum values are pretty self explanatory.)

TIA - Jeff.
Feb 21 '06 #1
3 5964
I know what you are referring to, and yes it is annoying.
Don't think so, it's either "on" or "off". You could always turn
documentation off in the Build property sheet temporarily, and then back on
when you need it.
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"UJ" wrote:
Is there any way to disable either the generation or the warnings from the
XML Document generator? I have a couple of public enums which it is saying
need the documentation and to add it would make the code hard to read (the
enum values are pretty self explanatory.)

TIA - Jeff.

Feb 22 '06 #2
In article <e0************ **@TK2MSFTNGP09 .phx.gbl>, fr**@nowhere.co m says...
Is there any way to disable either the generation or the warnings from the
XML Document generator? I have a couple of public enums which it is saying
need the documentation and to add it would make the code hard to read (the
enum values are pretty self explanatory.)

TIA - Jeff.


If your using VS2005 try this:

#pragma warning disable 1591
// your enum here
#pragma warning restore 1591

--
Larry Steeger
RusSte, Inc. - http://www.russte.com
Feb 22 '06 #3
UJ
I tried it and unfortunately I'm still in VS2003 and it doesn't work.

Thanks anyway.

"Lawrence R. Steeger" <st*********@ya hoo.com> wrote in message
news:MP******** *************** *@msnews.micros oft.com...
In article <e0************ **@TK2MSFTNGP09 .phx.gbl>, fr**@nowhere.co m
says...
Is there any way to disable either the generation or the warnings from
the
XML Document generator? I have a couple of public enums which it is
saying
need the documentation and to add it would make the code hard to read
(the
enum values are pretty self explanatory.)

TIA - Jeff.


If your using VS2005 try this:

#pragma warning disable 1591
// your enum here
#pragma warning restore 1591

--
Larry Steeger
RusSte, Inc. - http://www.russte.com

Feb 22 '06 #4

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

Similar topics

9
2877
by: Dennis Allen | last post by:
Hi. What's the best way to display an image, disabling the user's ability to right-click on it? I believe you have to use <body oncontextmenu="return false">. Would the following work? var x = "<head><\/head><body oncontextmenu="return false"><img src='temp.jpg' border=0><\/body>" top.document.open()
5
3524
by: James Moe | last post by:
Hello, 1. The document.all property (array?) seems to be a popular IE-only attribute. Other browsers (Opera, Mozilla) do not seem to care for it which, of course, occasionally produces weird displays and non-functional links. Is it, indeed, a IE-ism? 2. While experimenting with the elusive document.all, I ran into a sort of catch-22, it least with Mozilla. I tried testing (null == document.all) to decide if the property exists, and get...
3
1718
by: Jason Heyes | last post by:
Does anyone debugger-related warnings like this one? warning C4786: 'std::_Tree<std::basic_string<char,std::char_traits<char>,std::allocator<cha r> >,std::pair<std::basic_string<char,std::char_traits<char>,std::allocator<cha r> > const ,int>,std::map<std::basic_string<char,std::char_traits<char>,std::al locator<char> >,int,std::less<std::basic_string<char,std::char_traits<char>,std::allocator
1
2507
by: Codex Twin | last post by:
Hello group:: I have used XML documentation genearted from source (used by NDoc). However, I am left with hundreds of extraneous warnings in the Build output that I can do without and are not very important. Is there a way to disable these warnings to appear every time I compile? Many thanks...
0
3367
by: Robert Ladd | last post by:
Hi, I'm trying to disable the asp.net calendar control from a javascript function, but it doesn't disable the doPostBack. To simplify the situation, assume a page with 4 controls. A dropdownlist, a calendar control, a textbox and an update button. What I'm doing is initially setting the button to disabled, the other 3 controls are enabled. If any data is entered in the textbox, I want to disable the dropdownlist and the calendar...
11
5309
by: Ejaz ul Haq | last post by:
Dear All, I have upgraded my source code from VS 2003 to VS 2005, and my code is breaking due to the _SECURE_ATL macro in some methods of ATL. As it is executed all the times though there is also a non-secure block of code defined alongwith it. Is there any way of disabling this macro...as mere #define _SECURE_ATL 0, in the stdafx.h or somewhere between the code is not working. Regards,
5
5390
by: Tanja Krammer | last post by:
Hi experts, is it possible to disable linker warnings (i.e. LNK4204)? Thanx
2
1583
by: badkarspiloten | last post by:
Hi there! I have just migrated from VS 2003 to VS 2005 and are getting lots of compile warnings when building my solution. Some of them I want to disable. I have managed to do this with my other projects (not web) by selecting the project in the project explorerer and right click and choose properties. Here I choose the compile tab and can select what warnings to disable.
16
6685
by: nagmvs | last post by:
Hi, Can any one tell me How to disable Keyboard Functions using JavaScript.If knows please tell me the code.Also tell me the code for mouse disable also. Thanks, Nagesh.
0
9685
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
9538
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10473
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10219
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
10025
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
5461
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5584
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4138
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
3
2937
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.