Jump to content

Super easy Calypso 101 Question part 4 Default Reports


---
 Share

Recommended Posts

I know this one is easy, i just cant remember where the setting is.
Nothing (exept maybe running out of staples) infuriates me more than when the default report pops up, and sometimes several times in the same program.
How do i turn them off?

dfskvgjhdfslj.PNG

Link to comment
Share on other sites

I literally had just opened OBS so I could make a video; and look who beat me to it.

Thanks a lot Richard. Always stealing my glory.
Link to comment
Share on other sites

Please sign in to view this quote.

HA HA HA That, my friend, is the secret to life. Go to Resources > Define report. Click on Default Report/Warning Limit. Tick "Background". See DM
Link to comment
Share on other sites

Please sign in to view this quote.

I think it functionally disables the default report entirely, actually. I have a protdefinition I load into my measurement plans with this setting, and if I open the default report it's blank.
Link to comment
Share on other sites

Please sign in to view this quote.

That is correct, but if you go to View - Multiple Report, it will force the Default Printout open as well.
Link to comment
Share on other sites

Please sign in to view this quote.

.

I've found the Default Report to be slightly more persistent than phone calls about my vehicle's extended warranty. In addition to the two options already mentioned, I employ an autohotkey script in the background to immediately kill the default report without remorse.

You could use Python, Batch, VB or others, but here's the autohotkey script:

#NoEnv
SetBatchLines -1

; Loop continuously
Loop
{
    ; Loop through all windows
    WinGet, windowList, List
    Loop, %windowList%
    {
        thisWindow := windowList%A_Index%
        WinGetTitle, windowTitle, ahk_id %thisWindow%
        ; Check if the window title includes "CALYPSO Default Report"
        if (InStr(windowTitle, "CALYPSO Default Report"))
        {
            ; If it does, close the window
            WinClose, ahk_id %thisWindow%
        }
    }
    ; Wait for a short period before looping again
    Sleep, 1000
}
Link to comment
Share on other sites

I find this very annoying, too!
After a few measurements there are still the protocols of the previously measured parts opened in the taskbar.
I circumvent this by creating a batch file "inspection_start_pcm" or "measurement_end_pcm.txt" in the general directory for measurement plans with the command

closeAllPlotts() 
so that the open protocols will be closed at least.
Link to comment
Share on other sites

 Share

×
×
  • Create New...