Click here to Skip to main content
15,886,518 members
Home / Discussions / Article Writing
   

Article Writing

 
AnswerRe: The usage of UTM tags. Pin
Sean Ewington31-Mar-20 3:10
staffSean Ewington31-Mar-20 3:10 
GeneralRe: The usage of UTM tags. Pin
Aleksandar Vidakovic31-Mar-20 7:21
Aleksandar Vidakovic31-Mar-20 7:21 
QuestionBlog needing help.... again Pin
Nelek23-Mar-20 20:22
protectorNelek23-Mar-20 20:22 
AnswerRe: Blog needing help.... again Pin
Sean Ewington24-Mar-20 1:33
staffSean Ewington24-Mar-20 1:33 
GeneralRe: Blog needing help.... again Pin
Nelek24-Mar-20 2:47
protectorNelek24-Mar-20 2:47 
GeneralRe: Blog needing help.... again Pin
Sean Ewington24-Mar-20 2:50
staffSean Ewington24-Mar-20 2:50 
GeneralRe: Blog needing help.... again Pin
Nelek24-Mar-20 2:51
protectorNelek24-Mar-20 2:51 
QuestionNeed Help for coding Pin
Member 1438022715-Mar-20 6:53
Member 1438022715-Mar-20 6:53 
Hi there,
I need help with the implementation

I have the following situation. I have been writing about a mouse and keyboard emulation program for months, in which I want to control mouse and keyboard input using a gamepad. So far everything is working fine.
I want to have access to the settings in a game to be able to fine-tune settings such as timing by double-clicking or triple-assigning a button. Mouse speed and acceleration should also be adjustable via these settings. As I said, everything was great until then.
If I now start the game Exclusive Fullscreen or just fullscreen and open the overlay and the overlay gets the focus, the game will automatically be minimized and everything looks very dirty.
My ideal was that the game behaves like the NVidia overlay. So if it loses focus, it remains maximized and goes into a pause mode, so to speak. I've tried so many things and I'm really at a point where I don't know what to do. I am a beginner and have taught myself everything so far. That means I'm not a professional and I don't know all of the apis and how to use them. I recorded the global events once to see what happens when a game runs, and I call the NVidia overlay with ALT + Z.
The result was

Code:

    11: 10.13.804Window: TESV Title = OleMainThreadWndName X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.825Window: TESV Title = Default IME X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.829Window: TESV Title = Skyrim X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.833Window: TESV Title = Skyrim X: 0, Y: 0 --- EVENT_OBJECT_SHOW
    11: 10.13.838Window: TESV Title = Skyrim X: 0, Y: 0 --- EVENT_SYSTEM_FOREGROUND
    11: 10.13.845Window: TESV Title = CicMarshalWnd X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.853Window: TESV Title = CicMarshalWnd X: 0, Y: 0 --- 2147483440 << Dont know these event
    11: 10.13.859Window: TESV Title = X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.862Window: TESV Title = MSCTFIME UI X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.867Window: TESV Title = Skyrim X: 0, Y: 0 --- EVENT_OBJECT_FOCUS
    11: 10.13.883Window: TESV Title = Skyrim X: 0, Y: 0 --- EVENT_OBJECT_LOCATIONCHANGE
    11: 10.13.908Window: TESV Title = Default IME X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.912Window: TESV Title = D3DProxyWindow X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.916Window: TESV Title = D3DProxyWindow X: 0, Y: 0 --- EVENT_OBJECT_SHOW
    11: 10.13.925Window: TESV Title = Default IME X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.13.928Window: TESV Title = DIEmWin X: -1, Y: -1 --- EVENT_OBJECT_CREATE
    11: 10.13.936Window: TESV Title = Skyrim X: 0, Y: 0 --- EVENT_OBJECT_REORDER
    11: 10.13.940Window: TESV Title = Skyrim X: 0, Y: 0 --- EVENT_OBJECT_LOCATIONCHANGE
    11: 10.19.405Window: TESV Title = Default IME X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.19.409Window: TESV Title = BE4025FB-44A7-44a8-9A6E-10FA8128031B X: 0, Y: 0 --- EVENT_OBJECT_CREATE
    11: 10.24.473Window: TESV Title = X: 0, Y: 0 --- EVENT_OBJECT_DESTROY


These are the messages from the game (Skyrim) and also any other game only nadere window names when I open the NVidia overlay (ALT-Z)

and that the news when I open the overlay (ALT-Z) without a game


Code:

    11: 27.25.198 Windows: NVIDIA Share Title = NVIDIA GeForce Overlay DT X: 0, Y: 0 --- EVENT_OBJECT_SHOW
    11: 27.25.218 Windows: NVIDIA Share Title = NVIDIA GeForce Overlay DT X: 0, Y: 0 --- EVENT_SYSTEM_FOREGROUND
    11: 27.25.233 Windows: NVIDIA Share Title = NVIDIA GeForce Overlay DT X: 0, Y: 0 --- EVENT_OBJECT_FOCUS
    11: 27.30.674Window: NVIDIA Share Title = NVIDIA GeForce Overlay DT X: 0, Y: 0 --- EVENT_OBJECT_HIDE
    11: 27.30.687Window: NVIDIA Share Title = NVIDIA GeForce Overlay DT X: 0, Y: 0 --- EVENT_OBJECT_LOCATIONCHANGE

Please need help. I´m Using VB.Net or C#

QuestionBlogs needing help Pin
Nelek27-Feb-20 22:03
protectorNelek27-Feb-20 22:03 
AnswerRe: Blogs needing help Pin
Richard Deeming28-Feb-20 0:21
mveRichard Deeming28-Feb-20 0:21 
GeneralRe: Blogs needing help Pin
Ehsan Sajjad28-Feb-20 4:00
professionalEhsan Sajjad28-Feb-20 4:00 
GeneralRe: Blogs needing help Pin
Richard Deeming28-Feb-20 4:57
mveRichard Deeming28-Feb-20 4:57 
GeneralRe: Blogs needing help Pin
Ehsan Sajjad1-Mar-20 19:11
professionalEhsan Sajjad1-Mar-20 19:11 
QuestionThis is an unfinished article - delete? Pin
Dr. Song Li24-Feb-20 17:31
Dr. Song Li24-Feb-20 17:31 
AnswerRe: This is an unfinished article - delete? Pin
phil.o24-Feb-20 18:54
professionalphil.o24-Feb-20 18:54 
GeneralRe: This is an unfinished article - delete? Pin
Dr. Song Li25-Feb-20 2:35
Dr. Song Li25-Feb-20 2:35 
GeneralRe: This is an unfinished article - delete? Pin
phil.o25-Feb-20 4:16
professionalphil.o25-Feb-20 4:16 
GeneralRe: This is an unfinished article - delete? Pin
Dr. Song Li25-Feb-20 4:35
Dr. Song Li25-Feb-20 4:35 
GeneralRe: This is an unfinished article - delete? Pin
phil.o25-Feb-20 4:56
professionalphil.o25-Feb-20 4:56 
GeneralRe: This is an unfinished article - delete? Pin
Dr. Song Li25-Feb-20 5:16
Dr. Song Li25-Feb-20 5:16 
GeneralRe: This is an unfinished article - delete? Pin
phil.o25-Feb-20 5:24
professionalphil.o25-Feb-20 5:24 
GeneralRe: This is an unfinished article - delete? Pin
Dr. Song Li25-Feb-20 5:44
Dr. Song Li25-Feb-20 5:44 
GeneralRe: This is an unfinished article - delete? Pin
Dr. Song Li25-Feb-20 10:31
Dr. Song Li25-Feb-20 10:31 
AnswerRe: This is an unfinished article - delete? Pin
Nelek24-Feb-20 22:31
protectorNelek24-Feb-20 22:31 
GeneralRe: This is an unfinished article - delete? Pin
Dr. Song Li25-Feb-20 10:32
Dr. Song Li25-Feb-20 10:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.