All software

ActiveX controls for viewing and editing data in hexadecimal (HEX) format.

This control  lets you view and edit the memory dump in hex format, in the form of bytes, words, double words.

Register: regsvr32.exe edump.ocx

To work with the element using two methods.

  • void SetBaseAddress(long pBuffer);
    specifies the address of memory block, which is represented by element.
    Example:
    CEDump m_dump;
    WORD m_Array[100];
    m_dump.SetBaseAddress((long)(&m_Array));
  • void UpdateBuffer();
    Use to redraw after changing the displayed data
    Example:
    ZeroMemory(m_Array,sizeof(m_Array[0])*100);
    m_dump.UpdateBuffer();

download

©2010 evmsoft.net All rights reserved.