Tagged Questions
The suppress tag has no wiki summary.
6
votes
3answers
209 views
How do I suppress App Engine logging while running unit tests?
I'm using gaetestbed in my GAE app, and it's working very well. However, the useful statements that nose prints when your test is incorrect is being washed away by App Engine's logging:
root: Level ...
6
votes
4answers
486 views
Supressing browser's authentication dialog
I apologize that there is a similar question already but I'd like to ask it more broadly.
Is there any way at all to determine on the client side of a web application if requesting a resource will ...
4
votes
3answers
360 views
Suppressing Doxygen warnings
Is there a way to suppress Doxygen from giving "not documented" warnings on particular files? My project has several automatically generated code headers that cause it to throw hundreds or thousands ...
3
votes
3answers
114 views
suppress a singleton constructor in java with powermock
I'm trying to unit-test some classes that make use of a Singleton class whose constructor does some things I can't (and shouldn't) do from the unit-test environment. My ideal scenario would be to end ...
2
votes
2answers
234 views
JSFL: Suppressing/auto clicking on Dialog boxes
var tmpDoc = fl.createDocument();
/*..some logic...*/
tmpDoc.addItem({x:0,y:0},item);
My JSFL has the above code.
And on the 3rd line, I get a dialog box :
which has title : "Resolve library ...
2
votes
5answers
947 views
Suppress system(“ping”) output in C++
I have written a simple program that pings three sites and then reacts to whether they are reachable or not.
My question is: can I suppress system("ping ")'s output? I have written my code in C++ as ...
2
votes
2answers
906 views
Display group with no data in Crystal Reports 12
I am trying to group my data based on age. I use the following database select:
select * from (
select 0 range_start, 11 range_end, '0-10 days' date_description from dual union
select 11, 21, '11-20 ...
2
votes
3answers
193 views
.NET FINALIZE CONCEPT PROBLEM
Is it really better not to use finalize compare to dispose ? Does dispose remove unmanaged resource in first parse ?
What is suppressing finalize ?
2
votes
2answers
2k views
Globally suppress c# compiler warnings
In my app I have a fair number of entities which have fields which are getting their values set via refletion. (In this case NHibernate is setting them). I'd like to get rid of the "x is never ...
1
vote
0answers
17 views
Is there a way to suppress a vertical line across sections in Crystal Report 8.0?
I want to suppress a vertical line when a condition is met. This vertical line crosses two sections, the Report Section and the Detail Section.
I have no problem suppressing horizontal line because I ...
1
vote
2answers
96 views
how to suppress message box from popping up during unit testing VB.net
Was wondering how you do this?
As it's very annoying to click "ok" everytime a message box pops up.
1
vote
1answer
108 views
Suppress CA1305 for DebugFormat InfoFormat and similar calls
I am using Common.Logging for .NET. When I use one of the XXXFormat functions like DebugFormat or InfoFormat, I get the CA1305 warning. It is easy enough to suppress by right clicking and either ...
1
vote
1answer
96 views
Supress Process Popup in .NET
Our user panel runs all of our software as services. For whatever reason though, the Mumble voice software creates a popup when you run it with an administrator password set in the command line. ...
1
vote
1answer
474 views
Is there a way to pass the credentials of the current windows user into LyncClient.Submit()
I am creating an In/Out system tray application that interacts with the Microsoft Lync Server through the Microsoft Lync API. Is there a way to pass the username and password of the current windows ...
1
vote
1answer
150 views
How to eliminate preprocessor warning about pasting certain tokens
Is it possible with gcc to eliminate the warning below without eliminating all warnings?
pasting "/" and "/" does not give a valid preprocessing token
For a certain platform, I must use a specific ...
1
vote
1answer
176 views
FXCop warning CA1801: “Parameter is never used…” on overridden inherited supressed property
On a continued mission to clean up the codebase I inherited, via stylecop and fxcop, and one of the warnings from fxcop was CA1801: Parameter 'value' of Something.MyProperty.set(string) is never used. ...
1
vote
2answers
379 views
Supress pop-up with VB 2008 Express Edition
The radio recently broke in our bedroom and as a result my missus now listen to various radio stations through her laptop. She moans that visiting various pages and clicking the 'listen' link is a ...
1
vote
3answers
3k views
Getting Quiet Make to echo command lines on error
I have a Makefile building many C files with long long command lines and we've cleaned up the output by having rules such as:
.c${MT}.doj:
@echo "Compiling $<";\
$(COMPILER) ...
0
votes
0answers
14 views
Visual Studio Selective Markup Validation Suppression
Sometimes I find it handy to be able to suppress certain markup validation warnings within ASPX, etc. files that contain markup.
Is there an equivalent of #pragma warning disable\restore for markup?
0
votes
1answer
111 views
CodeAnalysis RuleSet Management for many projects in VS2010 (mainly supressions)
For working with VS2005 and VS2008 we defined our current ca rules in a sharepoint list.
In the list there is a column where all excluded assemblies are listed semikolon sepperated.
A custom build ...
0
votes
0answers
53 views
castor marshaller suppress xsi
i read a post written by you about:
Marshaller marshaller = new Marshaller(w);
marshaller.setSuppressXSIType(true);
the problem is that i'm using that method but the result didn't changed.
...
0
votes
1answer
41 views
How do I suppress CheckStyle StrictDuplicate warning?
I am trying to suppress CheckStyle StrictDuplicateCode warning, and it does not work.
In my Eclipse project, I have two classes with similar fields:
public class MyClass {
// CHECKSTYLE:OFF
...
0
votes
2answers
223 views
How to suppress SLF4J Warning about multiple bindings?
My java project has dependencies with different SLF4J versions. How do I suppress the annoying warnings?
SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in ...
0
votes
3answers
64 views
How to suppress all JavaScript runtime errors?
How can I suppress all JavaScript runtime error popups, from the programmers side?
0
votes
0answers
35 views
Is there a counterpart of the Linux “mallopt” on Windows?
I use mallopt(M_CHECK_ACTION, 2); on Linux to suppress the messages that come after a double free call on the same array. It works fine on Linux.
I haven't been able to find something similar for ...
0
votes
3answers
139 views
How to suppress dialog/popup window of application that you have just launched from your C# code?
From my C# app I'm launching annother app, which before execution sometimes show dialog/popup with some info.
Is it possible to suppress or hide this dialog and taskbar icon of the dialog ?
Thank ...
0
votes
1answer
170 views
How to @suppress multiple warnings with Closure Compiler?
It's possible to suppress warnings on a per-file basis with Google's Closure Compiler via the @suppress annotation. However, it doesn't seem to be possible to suppress multiple warnings at the same ...
0
votes
1answer
376 views
Crystal Report Page header suppress issue
I need to suppress the page header when there are no records in the detail section.I have used
onLastRecord
at page header->section expert->suppress.it works fine but issue is when there is only ...
0
votes
1answer
1k views
Crystal Reports, Suppressing a details based on condition
I have a report that has 7 details sections. One of the details is a disclaimer that prints on the back of the letter. What I need is to have that disclaimer print only on 3 of the six remaining ...
0
votes
2answers
135 views
Suppress html echo in blank line
I have a members directory that echoes name, address, phones, etc. I want to indicate which phone numbers are home, cell or work, but I don't want the html of home, work or cell to appear if the entry ...
0
votes
1answer
129 views
Suppress reorg rebuild sysmessages in sybase stored proc
I have a stored procedure in Sybase that uses reorg rebuild statement in a loop for all the tables in my database. What I want to do is to suppress the reorg rebuild sysmessages for tables that ...
0
votes
2answers
537 views
Ifort suppress unused variable warning, leave all others intact
i use ifort and gfortran to compile my Fortran program.
However i also use a coworkers source and he has got a lot of unused variables.
How can i suppress these for the compile, seeing as they are ...
0
votes
1answer
236 views
Can I suppress the “CanExecute” call within the MVVM pattern
I am working with a tree structure using WPF and the MVVM pattern. I start out by creating 20 root nodes and lazy loading the child nodes as each node is clicked. So for instance ... if I have the ...
0
votes
1answer
539 views
WinInet InternetSetOption with INTERNET_OPTION_SUPPRESS_BEHAVIOR option not working as expected
Hi all and thanks for taking the time to read this. I have a c# application where I wish to override the default WinInet cookie settings. The goal is that even when the system WinInet cookie privacy ...
0
votes
1answer
117 views
How can keep the debugger from breaking on NotImplementedException exception?
I've tried this, but it doesn't seem to work:
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
Application.ThreadException += new ...
0
votes
3answers
2k views
Is there a way to supress empty space area on RDLC report?
depending on information, my report RDLC on Visual Studio 2008 has some fields that are printed or not.
I would like to know how could I suppress only this section when there is no data to be ...
0
votes
1answer
76 views
In a web application can I suppress a JS message which popup in client side browser?
I'm working on a web application, which in some times JS messages and alerts popup, I want to suppress this messages and alerts from poping up, How can I do that if I don't know when or where this ...
0
votes
1answer
46 views
how do you suppress a direct call to a managed method?
I want to know if this is inherently possible:
Think of a cloud scenario. I allow users to upload their .net code onto my server. However to manage things on my server I can't allow users to write ...
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
3answers
2k views
Supressing section in Crystal Reports with subreport
I am trying to create a report in crystal reports 11 based on this sql query
SELECT *
FROM (table) OM, (table) OL, (table) C
WHERE OM.ORDER = OL.ORDER
...
0
votes
2answers
2k views
Force Suppress in Crystal Reports
How can I suppress a Details Section with a formula?
In my reports it may happen that a details section is empty. The only problem is, that CR wants to show the details section at least once because ...
0
votes
1answer
1k views
T-SQL 2005: Suppress the output of the results set
I have some stored procedures which are used for generating Reports. I am trying to build a report dashboard that will show how many records are on each report.
The SPs are detailed in a table which ...