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 strongm 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: dlldelhi
  • Order by date
  1. dlldelhi

    can't detect ESC key, MFC

    yeah I too used in Win32 dialog box as (on SDK) .... case WM_KEYDOWN: if (char(wParam)==27) EndDialog(hDlg, 0); break;
  2. dlldelhi

    How is the % processed?

    Might have been with ALU(Arithematical Logic Unit) in any x86 microprocessor. You can look for more details in Liu Gibson book or in some book of microprocessor architecture
  3. dlldelhi

    MFC SendMessage does not return

    Yeah check the memory been initialized of variables... In 2-Phase compiler which is of C, Debug works because it attachs most of the libraries or system reources but in release they are not attached so release gives you a true picture as how the app aould work. In MFC most of the libs are...
  4. dlldelhi

    Communication between programs

    Why don't you try with interprocess communication using File Mapping or some other means..with APIs like CreateFileMapping,MapViewofFile.. etc
  5. dlldelhi

    Throwing an exception within a destructor..

    The destructor is commonly used to “clean up” when an object is no longer necessary. Destrctor deallocates the memory that was previously reserved for class elements.
  6. dlldelhi

    Using multiple C++ libraries in a project

    What is this AIS_InteractiveObject...is it a object? Actually i used staic(LIB) as well as dynamic libraries(dll).. Unfortunately I too don't have any idea about any such tool which can keep the norms of dll same

Part and Inventory Search

Back
Top