cbt

Any recommended training resources for VBA programming (e.g. DVD, computer) for non-software people?

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...

CBT Hook not working in Windows Vista

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 ...

HWND Creation Time

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...

Best Online Video Training Sites for latest DotNet technolgies..

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. ...

Globally intercept window movement

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...

Why does this window subclassing code crash?

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...

Recommendations for free SQL CBT's

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? ...

Which is the best development tool for CBT (computer based training) / LMS (learning management system)

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 for PostgreSQL?

Where can i get any Screencasts, Webcasts, Training Video's, Cbt's ect for PostgreSQL? Thank you in advance ...

Global WH_CBT hook DLL is loaded into some processes only

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' ...

System wide Windows CBT hook not working properly

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...

Unloading DLL from all processes after unhooking global 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...

Global Hook in c++ doesn't work?

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....