Jester
Jester
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
:Thumbs:
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
maybe a lowlevelhook if that input even gets sent trough that
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
yeah
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
but might not be useful
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
you might be able to read some bytes like what i did there
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
:rozoa_shrug:
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
different than raw input: i got input from a simple wacom tablet by reading it as a file but i had to figure out what the bytes mean myself
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
hmm yeah idk
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
it should have other hid devices too but maybe game controllers are special
32 replies
CC#
Created by Mustafa on 4/30/2024 in #help
[✅] Receiving Game Controller Input while Minimized (WinForms C#) | Repost
i know about the win32 raw input api and that one sends messages to your window message loop. you can also make it het global messages, not only in your window. i feel like you have tried wappers of it here but idk why those dont seem to work that way?
32 replies
CC#
Created by Pandetthe on 3/3/2024 in #help
✅ Wndproc is not receiving any messages when window is not focused
@Pandetthe
22 replies
CC#
Created by Pandetthe on 3/3/2024 in #help
✅ Wndproc is not receiving any messages when window is not focused
bcuz people ask for this frequently, i have made an example project https://github.com/QubitTooLate/Keylogging
22 replies
CC#
Created by Pandetthe on 3/3/2024 in #help
✅ Wndproc is not receiving any messages when window is not focused
only the focused window gets window input messages. but if you want to get window input messages even if ur not the focused window. you can use lowlevel hooks or rawinput
22 replies
CC#
Created by blackSheep on 3/6/2024 in #help
Resizing the Console window - Console Application
@blackSheep
22 replies
CC#
Created by blackSheep on 3/6/2024 in #help
Resizing the Console window - Console Application
to resize the console window in windows (but it has to be a console window, not the new terminal) you have to dll import some functions
var windowHandle = GetConsoleWindow();
SetWindowPos(windowHandle, default, posx, posy, width, heitht, flags);
var windowHandle = GetConsoleWindow();
SetWindowPos(windowHandle, default, posx, posy, width, heitht, flags);
https://learn.microsoft.com/en-us/windows/console/getconsolewindow https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-setwindowpos https://learn.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.dllimportattribute?view=net-8.0
22 replies
CC#
Created by SparkyCracked on 1/11/2024 in #help
Capturing multiple displays scaling information
it takes a while to get familiar with the win32 api
31 replies
CC#
Created by SparkyCracked on 1/11/2024 in #help
Capturing multiple displays scaling information
skill issue trolley
31 replies
CC#
Created by SparkyCracked on 1/11/2024 in #help
Capturing multiple displays scaling information
necoarcyay
31 replies
CC#
Created by SparkyCracked on 1/11/2024 in #help
Capturing multiple displays scaling information
im also busy doing other stuff now so i cant help you too much rn
31 replies