The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
41 views

How can I suppress column headers for a single SELECT statement?

I'm executing some SQL statements in batch (using the mysql command-line binary). I want one of my several SELECT statements to not print the column headers, just the selected records. Is this ...
0
votes
0answers
13 views

Valgrind cannot use --gen-suppression and --suppression

When I use --gen-suppression and --suppression both at the same time my application fails to start. Individually these flags works fine. Any idea ?
0
votes
0answers
50 views

Why valgrind application crashes with suppression file?

My application details: 1. The application works fine without valgrind. 2. The application also works fine without a suppression file. However it crashes when I run valgrind with suppression file. ...
0
votes
1answer
126 views

Crystal Reports: Suppression is hiding records on the next page

I have a Crystal Report where I want to display only the first ItemNum row. I used the following expression (?) to suppress subsequent records. Previous ({ItemHistory.ItemNum}) = ...
1
vote
1answer
822 views

suppression “dl-hack3-cond-1” in memory leak detection using valgrind

I am using valgrind to detect memory leaks. the output from valgrind is generated by command valgrind -v --leak-check=full ../spython test.py 2>/tmp/log in fact, my program is a highly ...
1
vote
0answers
206 views

Crystal Reports Details Section Suppression Blank Section Locked

I am trying to modify a report for a company but the code editor seems to be uneditable. The report has s details section where I want to conditionally suppress rows. When i click on the X-2 editor ...
1
vote
2answers
285 views

Lync availability for users who are not contacts

I am writing a custom Lync client with UI suppression enabled. One of the components that the client needs to have is an employee search form, which will be used for adding contacts and inviting ...
1
vote
3answers
408 views

Can I suppress all code analysis messages for a certain class?

Whenever I call my logger in a method, e.g. _logger.Debug("Connecting to database..."); I get the warning: CA1303 : Microsoft.Globalization: Method 'Database.Connect()' passes a literal string ...
1
vote
0answers
57 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
142 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
79 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 ...
6
votes
2answers
339 views

Limit --memcheck To Your Own Code

Lets say I am using a library that uses glibc. When I exit the program while running it through Valgrind all sorts of memory leaks are detected by Valgrind. I am 100% sure that none of the leaks are ...
0
votes
2answers
1k 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
1answer
410 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 ...
7
votes
2answers
3k 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 ...
2
votes
4answers
16k 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
1k 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
3k views

How can you suppress checkstyle checks within a block of code only for specific rules? [duplicate]

Possible Duplicate: How to disable a particular checkstyle rule for a particular line of code? In turning off Checkstyle for a segment of code, is there a syntax that would supress only ...
1
vote
1answer
282 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 ...
2
votes
2answers
683 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 ...
28
votes
4answers
12k 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++)? ...
0
votes
2answers
6k 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 ...
4
votes
4answers
1k 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 ...
0
votes
1answer
189 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 ...
4
votes
7answers
7k 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. ...
4
votes
1answer
1k 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 ...
4
votes
2answers
2k 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 ...
4
votes
3answers
3k 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. ...
17
votes
3answers
5k 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 ...