Questions tagged [windowed]
52 questions
2
votes
2 answers
Multithreaded Engine Windowed random slowdown
We have a task based multithreaded engine set up where a scheduler passes the task to the threads lock-free queue. The engine is in C++ with DirectX for the rendering and we are using boost::thread for creating the threads. When in windowed mode, it…
Zane
2
votes
2 answers
MATLAB windowed FFT for a 2D matrix data (image)
Data: Say I have a 2000 rows by 500 column matrix (image)
What I need: Compute the FFT of 64 rows by 10 column chunks of above data. In other words, I want to compute the FFT of 64X10 window that is run across the entire data matrix. The FFT…

hkf
- 663
- 2
- 11
- 23
1
vote
1 answer
Writing a Firefox XPCOM plug-in with a native window interface? (like ActiveX control)
I have an ActiveX control that works fine in Internet Explorer and the ActiveX Control Test Container program. The actual behavior of the control is split in two parts, where one part is the ATL gunk that interfaces with the OLE host, and the other…
Jon Watte
1
vote
1 answer
racket slideshow: how to display in a window (and not fullscreen)?
When I run slideshow, it automatically run in full screen. I searched in the options but I can't find anything to display slideshow in a window.
Any ideas ?

MohamedLEGH
- 309
- 1
- 11
1
vote
0 answers
Returning subprocess STDOUT and STDERR output for PsExec execution in compiled app using windowed (noconsole) mode
I am trying to remotely execute a script using PsExec and return live output using subprocess.Popen within my Tkinter program. Everything workes fine using below code (without compiling my app using the --windowed parameter).
cmd =…

vlreinier
- 11
- 2
1
vote
0 answers
Converting curses-based python script to MacOS App
I am currently trying to convert a little program that has a curses-based UI to a macOS app using Pyinstaller.
I already successfully converted some programs to macOS applications, but none of them used curses, they all had a GUI.
I tried converting…

Nicop.dev
- 50
- 1
- 8
1
vote
2 answers
How do you prevent problems with a button being pressed more than once?
In a windowed programming environment, a user may click a button more than once if they do not immediately see something happen.
How do you stop the code behind the button being executed more than once in this situation?

CJ7
- 22,579
- 65
- 193
- 321
1
vote
0 answers
DirectX full screen window to windowed by window handle with use Windows API functions
Short story
A game is started fullscreen but is a fullscreen directX window. The game supports windowed but I have to do it manually. I made a program in Delphi that stretch/resize any window to fit the screen (with use of a system-wide hotkey)…

Codebeat
- 6,501
- 6
- 57
- 99
1
vote
1 answer
C++ & Allegro 4.2 - I need graphics to stretch in windowed mode
I am using C++ with Allegro 4.2 to build a windows game.
I want stretchable graphics in windowed mode.
I'm am one who likes giving users of my programs lots of options; I always hate when I'm playing a game in windowed mode and I'm either not…

Keith Wiggins
- 11
- 3
0
votes
1 answer
Kafka Operations on Windowed KTables
I would like to do some further operations on a windowed KTable. To give some background, I have a topic with data in the form of: {clientId, txTimestamp, txAmount}. From this topic, I have created a stream, partitioned by clientId with the…

Andrei Zafiu
- 501
- 6
- 17
0
votes
1 answer
CSS @media display NOT in FULLSCREEN doesn't work?
How can I set CSS rules for windowed mode?
@media all and (display-mode: fullscreen) {
.testfullscreen {
display: none; /*Works*/
}
}
@media all and not (display-mode: fullscreen) {
.testwindowed {
display: none; /*Not working*/
…

Tofnet
- 185
- 2
- 5
0
votes
0 answers
Crash in DuplicateOutput
I'm developing an application which captures frames using DXGI mechanism from an application.
First creation of the IDXGIOutputDuplication is correct. When the application changes its display (for example from fullscreen to windowed or vice versa),…
0
votes
2 answers
How do i user windowed function with count(case when...)
world!
I have a first "level" table, which look loke this:
level
id
level_date
1
A
2021-12-02
2
A
2021-12-04
3
A
2021-12-08
1
B
2021-12-02
2
B
2021-12-05
3
B
2021-12-09
and a second "battles"…

John Krotski
- 21
- 2
0
votes
1 answer
why is the result of "windowed" different?
Code with List:
println(listOf(1, 2, 3).windowed(1))
println(listOf(1, 2, 3).windowed(1) { it })
println(listOf(1, 2, 3).windowed(1) { it.toList() })
Result:
[[1], [2], [3]]
[[3], [3], [3]] //why is there 3 everywhere?
[[1], [2], [3]]
Code with…

Denvikl
- 3
- 2
0
votes
1 answer
How to chunk a list in specific value? [Kotlin]
How to chunk a list in specific value?
Ex: split where current value is 5
val x = listOf(1,2,3,4,5,2,3,1,5,4,1,5)
convert x to this:
x => [[1,2,3,4,5],[2,3,1,5],[4,1,5]]

kaMChy
- 441
- 5
- 9