i want what not editable cells in ragrid

Started by mumin16, June 09, 2009, 09:12:22 AM

Previous topic - Next topic

mumin16

i want what not editable cells in ragrid. what am i make?

KetilO

Hi mumin16


.elseif eax==WM_NOTIFY
  mov edx,lParam
  mov eax,[edx].NMHDR.hwndFrom
  .if eax==hGrd
    mov eax,[edx].NMHDR.code
      .if eax==GN_BEFOREEDIT
        mov [edx].GRIDNOTIFY.fcancel,TRUE
      .endif
  .endif


KetilO