The MASM Forum Archive 2004 to 2012

Project Support Forums => IDE Development and Support => RadAsm Support Forum => Topic started by: mumin16 on June 09, 2009, 09:12:22 AM

Title: i want what not editable cells in ragrid
Post by: mumin16 on June 09, 2009, 09:12:22 AM
i want what not editable cells in ragrid. what am i make?
Title: Re: i want what not editable cells in ragrid
Post by: KetilO on June 09, 2009, 09:38:36 AM
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
Title: Re: i want what not editable cells in ragrid
Post by: mumin16 on June 09, 2009, 11:35:42 AM
thanks master.