Questions tagged [suppress]

173 questions
3
votes
2 answers

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 days' from dual union select 21, 31, '21-30…
ntsue
  • 2,325
  • 8
  • 34
  • 53
3
votes
1 answer

R : How to suppress a persistent warning message from alpha() function in my Rmd output?

Program : R 3.2.1 for Mac OSX IDE : RStudio Output : rmkd > html Package : "psych" Function : alpha() Problem : While using alpha(data, na.rm=F, check.keys=F, delete=F), because portions of the input-data is negatively correlated and…
mutableQ
  • 31
  • 2
3
votes
3 answers

Crystal reports suppression formula with multiple OR operators not working

I am trying to add a very simple suppression formula to my Crystal Report (XI) field but it is not working as expected. I would like a text box to be visible if certain conditions are met, otherwise suppress. With the suppress box ticked my current…
pwlm
  • 174
  • 2
  • 2
  • 19
3
votes
1 answer

How to properly close out of Inno Setup wizard without prompt?

Part of my installer checks for a latest version on our server and downloads automatically if necessary, just after the welcome page. The actual check and download are in a function CheckForNewInstaller which returns True if new installer was…
Jerry Dodge
  • 26,858
  • 31
  • 155
  • 327
2
votes
0 answers

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 can just hide the section where it lies. Thanks…
user1051439
2
votes
2 answers

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.
Tom
  • 149
  • 2
  • 4
  • 11
2
votes
0 answers

Kafka Streams. How to emit the final result in an aggregation window with suppressor

With my huge surprise I realized that the "suppress" operator does not emit the last event at window close but only when another event is published on the partition the streams' tasks belong to. So, how to emit the final aggregate result without…
2
votes
0 answers

Suppress libreoffice headless command outputs which are not via stdout/stderr

Running the following command is outputting to unix terminal, even if stdout/stderr are redirected to a file. Both commands: libreoffice --headless --convert-to xlsx > 1.tmp libreoffice --headless --convert-to xlsx 2> 1.tmp Are…
Aviram Tal
  • 31
  • 2
2
votes
1 answer

Kafka Streams - custom SessionWindows suppression with session size constraints

I am currently working on a Kafka Streams solution for retrieving user browsing sessions using the SessionWindows. My topology looks like: builder .stream(...) .map(... => (newKey, value)) .groupByKey(...) …
annterina
  • 173
  • 1
  • 8
2
votes
1 answer

Kafka Streams (Suppress): Restarting the Topology

I found two questions asking why no result record is emitted if there is no new record put into a partition: 1. "Kafka Stream Suppress session-windowed-aggregation" and 2. "Kafka Streams (Suppress): Closing a TimeWindow by timeout" In the answers to…
Boris
  • 81
  • 5
2
votes
1 answer

How to suppress PowerShell error message during variable assignment

Is there any way I can suppress this error. Instead of this ugly and long error, I would like to capture return code value($?) to determine success or failure PS C:\> $str ="

Hi

" PS C:\> $data = [xml]$str PS C:\> $? True …
Susanta Dutta
  • 377
  • 1
  • 4
  • 15
2
votes
2 answers

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 conflict" two radio button options : "replace","dont…
simplfuzz
  • 12,479
  • 24
  • 84
  • 137
2
votes
1 answer

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. Remove the parameter or use it in the method…
Andrew Johns
  • 705
  • 1
  • 6
  • 26
2
votes
3 answers

.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 ?
user284291
2
votes
3 answers

Hiding output from console

My code contains a command which is essential for it to run, however it ends up showing the result of this command in the console, i have tried to use suppressWarnings(), suppressMessages(), invisible() and sink() but all of these still show the…
Summer Gleek
  • 334
  • 5
  • 15
1 2
3
11 12