Nages,
I have this xbrowse with an array

when I modify 4th column and the string is "45" i can insert only 2 space
how I can resolve ?
I made
for the first column I wish it not show the listbox when is the first line of array
this not run
:aCols[1]:bEditBlock := { |r,c,oCol|IIF(!oBrwFilter:nArrayAt = 1, MsgInfo("Non puoi")) }
for the 4th column I have problem because I cannot insert more characters
I have this xbrowse with an array

when I modify 4th column and the string is "45" i can insert only 2 space
how I can resolve ?
I made
WITH OBJECT oBrwFilter
:bPastEof := { || AddRow( oBrwFilter ) }
:bKeyDown := { |nKey| If( nKey == VK_DELETE, DeleteRow( oBrwFilter ), ;
If( nKey == VK_INSERT, InsertRow( oBrwFilter ), ;
nil ) ) }
:aCols[1]:nEditType := EDIT_LISTBOX
:aCols[1]:aEditListTxt := acOperators
:aCols[2]:nEditType := EDIT_LISTBOX
:aCols[2]:aEditListTxt := aTitulos
:aCols[3]:nEditType := EDIT_LISTBOX
:aCols[3]:aEditListTxt := acOpRelacion
:aCols[4]:nEditType := EDIT_GET
:lRecordSelector := .f.
:lHScroll := .f.
:lVScroll := .f.
:CreateFromCode()
ENDthis not run
:aCols[1]:bEditBlock := { |r,c,oCol|IIF(!oBrwFilter:nArrayAt = 1, MsgInfo("Non puoi")) }
for the 4th column I have problem because I cannot insert more characters
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour March-April 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com

