Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tchouch
  • Content: Threads
  • Order by date
  1. tchouch

    How to find out arguments of exported function?

    Is it possible to find out how many and wich arguments has/should have any function exported from dll/ocx library? I mean, without to know declaration of the function?
  2. tchouch

    Bitmap drawing...

    The easiest way - write in OnDraw() - Function Yours CView - derived class (MFC): HDC hdcMem = CreateCompatibleDC(pDC->m_hDC); if(hdcMem) { HGDIOBJ hobj = SelectObject(hdcMem, hBitmap); if(hobj) { RECT rct; GetClientRect(&rct); BitBlt(pDC->m_hDC, 0,0, rct.right...
  3. tchouch

    Can I load BIOS-defaults from harddrive by empty battery?

    Does anyone know how to load BIOS-defaults after CMOS-battery is empty (without user actions like F1 etc. - PC should work without keyboard)? PC and battery are of course OK at time, the problem is - PC should boot everytime after battery is dead... I think, it is possible to save BIOS values on...
  4. tchouch

    SetTimer() does not work

    I write a non-MFC Win32 application and try to use Timer to redraw some controls. But callback function TimerProc is not called. I have often used timers before and all have worked fine. I start timer with the code...
  5. tchouch

    SetTimer() does not work

    I write a non-MFC Win32 application and try to use Timer to redraw some controls. But callback function TimerProc is not called. I have often used timers before and all have worked fine. I start timer with the code UINT g_Timer = 0; //global void CALLBACK TimerProc(HWND hWnd, UINT nMsg, UINT...
  6. tchouch

    stop debuggee without stopping the debugger

    How can I stop debugged Process without stopping my debugger? I make a Program with some debug functions, it is not WinDbg or Visual Studio debugger. This code does not work: GetThreadContext( m_Process_Information.hThread, &Context ); if(!TerminateProcess(hProcess, 0x1)) {...

Part and Inventory Search

Back
Top