Questions tagged [windowed]
52 questions
0
votes
1 answer
Open window on button click, close current window?
I have been searching for a solution for this issue, but I can't seem to find a viable answer.
I have the following code to open another tkinter script on button click:
# Program to Open on Button Click
def tkinter1():
ret = os.system('python…

ReflexTechR
- 41
- 1
- 9
0
votes
1 answer
How do I set my frames to Borderless Fullscreen, Windowed Fullscreen, and Fullscreen in Java?
I use GraphicsDevice to fullscreen my Java Window, but I don't know how to change these settings while the application is running.
public void act(java.awt.Frame window) {
if (state == SCREEN.FULLSCREEN) {
if…

Dory
- 5
- 2
0
votes
1 answer
Getting output of command execution on windowed app
I have created a Python script and compiled it into an exe file with PyInstaller. In the process, I have specified the -w option to get an app that doesn't have any console.
Everything works fine except the execution of commands using popen:
mout =…

URi
- 67
- 1
- 8
0
votes
0 answers
Kafka Stream creates new aggregation even before window is closed
I am using Kafka stream for windowed aggregation. Here is the logic:
KStream stream = builder.stream(topics, Consumed.with(stringSerde, stringSerde));
Stream.groupByKey()
…

Pavan
- 711
- 2
- 6
- 17
0
votes
1 answer
Is there a way to get a list of processus with PyInstaller windowed?
I'm trying to test if a browser is open on a python program converted to an exe with pyinstaller, Is there a way to test this without displaying a window and converting it to an exe?
I tried subprocess but it creates an error with the windowed mode…

Gopy
- 3
- 1
0
votes
1 answer
trying to make bat file open diablo2 in windowed mode
I have diablo2 and I got a mod for it which opens the game with a .bat file.
However it opens it in fullscreen mode which reduces fps and seems to cause mouse lag. I want the functionality of the bat file but to open the game in windowed mode.
@echo…

m0nk3n
- 13
- 4
0
votes
0 answers
Why IVideoWindow methods aren't working? (C++ DirectShow)
yesterday I asked this question about DirectShow programming and eventually was able to solve the problem on my own. Once solved, another problem arose: When I play the video it pops up into another window, and I'd like to display it inside my hWnd…

Baffo rasta
- 320
- 1
- 4
- 17
0
votes
1 answer
Is there any way in C++ windows code to stop a mouse moving oustide window bounds
I had a look and couldn't find any way apart from 3rd party programs. But is there any way through code (C++) that I can stop the cursor from being moved outside the bounds of the window? I have a FPS Game project on windows but obviously in…

unknownSPY
- 706
- 4
- 15
- 27
0
votes
1 answer
Can a plugin(for safari on mac) be made windowed or windowless programmatically?
We are making a plugin for safari browser on mac.
After browsing over internet, i found that generally plugins on mac are windowless but i want a windowed plugin. Even in function NPP_SetWindow i tried to print the value of variable type(which is of…

user2181750
- 241
- 5
- 15
0
votes
2 answers
Citrix Applications : windowed, and using Citrix Receiver Icon
Hello my fellow minions :)
Using XenApp 6,5, on a average 100 servers farm.
I'm having trouble with only one Citrix user : All the applications he's using are windowed inside a "receiver window" (for example, outlook is windowed inside a window,…

Laezylion
- 143
- 10
0
votes
1 answer
BufferStrategy in windowed mode causes constant intense white screen flicker
I put this code together based on a lot of examples I found around here on stackoverflow. When I run the program the entire screen flickers intensely. I'm sure there is something simple I'm overlooking, but so far have been unable to track down a…

Orange
- 63
- 8
0
votes
1 answer
Java - Fullscreen and windowed mode
Is it possible that if i switch between the two modes and draw things to adjust them so that in windowed mode the things seem to be drawn as in the fullscreen mode but are actually smaller...
So that's my code:
Constructor:
GraphicsEnvironment…

user3751598
- 1
- 3
0
votes
2 answers
DirectX11 swapchain texture rendering issue when windowed?
I'm programming a game framework based on DirectX11 but I'm getting a problem, my textures are badly shown on screen, this is a screenshot:
As you can see the image is not perfect but I've noticed that this is happening only if I initialize the…

ThomasSquall
- 644
- 6
- 21
0
votes
1 answer
How to detect if d3d device can be created for a certain width / height in windowed mode?
My game is in window mode which allows users to resize the game
window almost freely, which means the the ratio of the width/height,
and the size of the window can be arbitrary (though the window has
largest and smallest restrictions)
To make the…

karlzhang
- 1
- 1
0
votes
1 answer
HTML/CSS content scaling
I have begun developing a webpage, just playing around, and I noticed an issue. I code with my live site on one half of my screen, with my editor on the other. It was all going fine until I extended my web browser fully and noticed that only part of…

Dan Hopkins
- 23
- 1
- 1
- 3