I have been asked to find training resources to bring engineers up to speed on VBA programming.
The target trainee will have some systems engineering experience but little to no non-systems programming experience.
I'm hoping for a computer-based training course or DVD that we can purchase and give to the engineers for a couple days to...
I am trying to use a CBT hook to receive HCBT_MOVESIZE notifications. It works fine for all applications when I run my program from a folder on my desktop. When I install the application to the "Program Files" or "Program Files (x86" folder I only receive notifications for my own application. The .exe file is signed and works perfectly ...
Hi Friends,
I am new to this community, while working with 1 of my automation script I am encountering an issue, I wanted to get HWND’s, creation time.
I am having a set of HWND in an array which I have retrieved from FindWindowEx,
I want to find in array which HWND is created last depending upon system time
I do not have enough knowle...
Which site is offering latest dotnet technologies online video training.. (MVC, TeamSystem, LINQ, WCF etc..) i know pluralsight.com offereing on demand video training with latest contents.. but, price is little high.. anybody know any other better sites with quality content.
...
I am having trouble getting a global system hook to work. I want to be notified whenever a window is moving, as early as possible, and change the window size. This means the CBT hook HCBT_MOVESIZE won't cut it, it only happens after the window has been moved. I want to hook the actual movement of the window, and be able to change the win...
I am trying to subclass the window that currently has focus. I do this by monitoring for HCBT_ACTIVATE events using a CBT hook, and set and unset the WndProc of the focused and previously focused windows.
The problem is that it only works whenever I have a breakpoint set somewhere in the code.
If there is no breakpoint, once my applic...
Are there any good sites, free preferably, that offer introductory to intermediate learning for SQL skills, either generic SQL, or MSSQL? If seen some good ones on Microsoft's site, www.asp.net, but they head down the development path pretty quickly.
For paid solutions, is CBTNuggets worth the money?
...
The CBT involves user interaction, like quizes, quiz progress, licensing etc.
Should I go with flex, or should I go with flash?
...
Where can i get any Screencasts, Webcasts, Training Video's, Cbt's ect for PostgreSQL?
Thank you in advance
...
The main program calls the function SetHook in the wi.dll to install global WH_CBT hook.
bool WI_API SetHook()
{
if (!g_hHook)
{
g_hHook = SetWindowsHookEx(WH_CBT, (HOOKPROC) CBTProc, g_hInstDll, 0);
}
return g_hHook != NULL;
}
I presume after installing global hook, wi.dll should be loaded into each process' ...
I'm trying to hook a CBT hook on Windows OSes. I'm currently using Windows 7 x64.
I've read many threads talking about this issue, but none has solved my problem. The application runs well; the hook is installed and I can see some notifications coming.
Actually the problems arised is that the application is not notified about CBT hook...
How do you properly unload a DLL from all processes when the system-wide hook that loaded them gets unloaded?
From MSDN:
You can release a global hook
procedure by using
UnhookWindowsHookEx, but this function
does not free the DLL containing the
hook procedure. This is because global
hook procedures are called in the
pr...
Trying to write a GLOBAL CBT HOOK,
this is My code, but my hooking app doesn't recieve any Messages, neither writes the dll something to a test file.
This is My Code:
#include "stdafx.h"
#include "GlobalHook.h"
#include "Stdafx.h"
#include <iostream>
#include <fstream>
#define DLL_EXPORT
#include "GlobalHook.h"
#include <windows....