Any ideas why this text would be coming up blank??
The listview works, but when editing the text, I can't get the new text!
The listview works, but when editing the text, I can't get the new text!
Code:
case %wm_notify dim nmhp as nmhdr ptr nmhp=lparam& select case @nmhp.idfrom case 100 ''listview select case @nmhp.code case %lvn_columnclick ''column header click case %lvn_getdispinfo case %lvn_endlabeledit dim pnml as nmlvdispinfo ptr dim nml as nmlvdispinfo dim ztext as asciiz*16 dim szp as asciiz ptr pnml=lparam& [email protected] szp=varptr(nml.item.psztext) [email protected] b$=ztext msgbox b$ case %nm_dblclk ''double click wparam&=maklng(%idok,%bn_clicked) postmessage hwnd&,%wm_command,wparam&,0 case %lvn_itemchanged ''selection changed end select end select case %wm_command
Comment