Call History Short cut

  • Thread starter Thread starter farseer
  • Start date Start date
F

farseer

Does anyone know if this is possible? does cprog.exe accept any
command line params that will display the call history form?
 
try to use this:

HWND hwndClog = FindWindow(L"MSClog", NULL); //MSClog is the class
name for Call History window
if (hwndClog =! NULL)
{
SetForegroundWindow((HWND) (((ULONG) hwndClog ) | 0x01));
}

should be work ;)
let me know
 
thanks, will try that. but i got it working doing something a bit
different. i was able to determine what message is sent to open that
window and i programmactically send it myself. i don't have th code in
front of me right now to let you know what that message is
 
Back
Top