Tagged Questions
The suppression tag has no wiki summary.
12
votes
4answers
3k views
Excluding FxCop rule in source
In a project I'm working on FxCop shows me lots of (and I mean more than 400) errors on the InitializeComponent() methods generated by the Windows Forms designer. Most of those errors are just the ...
8
votes
3answers
3k views
gcc warning" 'will be initialized after'
I am getting a lot of these warnings from 3rd party code that I cannot modify.
Is there a way to disable this warning or at least disable it for certain areas (like #pragma push/pop in VC++)?
...
7
votes
2answers
1k views
“Suppress Warning” menuitem in Visual Studio 2010 is not available
I'm using Visual Studio 2010 Ultimate, and it seems that I cannot suppress warnings in the way I used in VS2008.
My project is in C#, and when I right click a warning in the "Error List" window ...
4
votes
7answers
4k views
Sourcesafe command line options
I am having an issue with the Microsoft Visual Sourcesafe command line options that I'm hoping someone has run across and can assist me with.
I have the following line in a DOS batch file.
...
3
votes
1answer
772 views
How can you get FxCop rule CA1726 to ignore a prefered term?
FxCop has a rule (CA1726) that checks for preferred terms. This looks for words like "Dont" and tells you to replace them with better words like "Do not". Generally this is fine, however one of the ...
3
votes
2answers
1k views
FxCop Suppression
I have a control on an Asp.Net page, on that page is a control with the name "PaReq" that violates the rule:
CA1704:IdentifiersShouldBeSpelledCorrectly
I've used suppression before I'm not sure ...
3
votes
1answer
1k views
Suppress the duplicate values in group, SSRS Reports
I have an SSRS report
where the date should be grouped by project category
the project code in the category is repeating in side the group how do I suppress the value
Please help me to get an idea.
...
2
votes
2answers
358 views
Code analysis: Global project/assembly suppression
I have several CA1704:IdentifiersShouldBeSpelledCorrectly warnings that I want to suppress. Basically they refer to the company name which is deemed to be spelled incorrectly. The company name is part ...
2
votes
4answers
643 views
What event do I need to supress to stop IE from “Dinging” when I press enter in a text box?
On simple forms with one text box pressing enter submits the form (and this is great for easy search forms)
However on a form with multiple fields, pressing Enter in an input="text" box won't do ...
1
vote
4answers
6k views
No overload for 'insert_method_here' matches delegate 'System.EventHandler'
I am trying to build a program that has a button, and everytime that button is clicked, it moves the button and adds to the score. However, I am trying to disable the Enter key, or suppress the ...
1
vote
2answers
582 views
FXCop Suppress Warning CA1800 (Unnecessary Casts)
I have the following code:
[SuppressMessage( "Microsoft.Performance", "CA1800:DoNotCastUnnecessarily" )]
private static void SetTestConnectionString( Component table )
{
if( table is Object1 )
...
1
vote
1answer
1k views
How can you suppress checkstyle checks within a block of code only for specific rules?
In turning off Checkstyle for a segment of code, is there a syntax that would supress only specific checks.
So rather than just
// CHECKSTYLE:OFF
code
// CHECKSTYLE:ON
you could have something like
...
1
vote
1answer
181 views
Is there a way to circumvent CA1726:UsePreferredTerms?
I have a problem with the code analysis rule CA1726:UsePreferredTerms. Our business domain has two crucial concepts named Case and Flag. According to CA, it's apparently a deadly sin to use these ...
0
votes
0answers
31 views
Internet Explorer Javascript Error Suppression Not Working
I'm developing an application using Google Maps, and all is working perfectly fine. It works in all of the major browsers, and the javascript all does what it is supposed to do.
I also use a service ...
0
votes
0answers
30 views
Tab suppression callback
I have a tab app and I'd like to know if there is a way to get a notification or to setup a callback for when a user suppress the tab from his Facebook page? Because I noticed that even if you remove ...
0
votes
1answer
33 views
ipython, semicolon to suppress output does not work
in the documentation at http://ipython.org/ipython-doc/dev/interactive/tips.html it says to put a semicolon (;) at the end of a command to suppress its output. This does not seem to work in my case as ...
0
votes
0answers
25 views
Speech Noise suppression .net
I am recoding voice from mic and playing it on the same computer the bytes are not sent on network
the recording format is
sample rate : 16000
channel 1
and the same format is set while playing
i ...
0
votes
2answers
281 views
SSRS 2008 R2 Remove White Space if Null
I have a simple SQL Server 2008 R2 report with a textbox containing a few fields. I want to suppress the line if the value of a field is null. What would be the syntax for the expression?
So my ...
0
votes
0answers
77 views
How do I conditionally include or exclude a property from JSON.NET's serializer based on List.Count?
I know how to exclude parameters based on default values and such via the [DefaultValue(foo)] attribute on the respective property, but for a collection type, I want to exclude the output if there are ...
0
votes
1answer
282 views
Suppressionfilter doesn't work in checkstyle config file
Can anybody say why suppression filter doesn't work? It still generates javadoc errors for Candidate_ file.
checkstyle.xml
`...
<module name="SuppressionFilter">
<property ...
0
votes
2answers
5k views
Crystal Reports: Suppressing a field conditionaly according to group name in current page
I have a group named: "Group #1 Name" and as you know when viewing the report at the first page in Group 1 section we see the title of group but this is not appears in next page till we navigate to ...
0
votes
1answer
151 views
Exception clogging up my IDE
I'm scanning for dead links on one of my pages. On one i get many "A first chance exception of type 'System.Net.WebException' occurred in System.dll" Dozens of them. How do i have MSVC# NOT display ...