Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
ADEL() in array
Message
 
To
27/08/2001 15:30:00
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00549522
Message ID:
00549591
Views:
13
>>>
>>>Tim,
>>>When you delete an array item, the entire row (unless you specify the column) is moved to the bottom of the array and given .F. values across the board. Simply re-dimension it using the current number of rows - 1 and the currnt number of columns.
>>>
>>>Ex.
>>>Adel(MyArray,nElement)
>>>lnlength = alen(MyArray,1)
>>>dimension MyArray(lnlength-1,alen(MyArray,2))
>>>
>>>You can also surround this stuff with THISFORM.LockScreen = .T./THISFORM.LockScreen = .F. if you get too much flickering.
>>>
>>>HTH.
>>Ok, I got your concept and executed. my array was 10 items, 7 cols.
>>I deleted 1 item using adel and redimensioned it using your code( 1 less row, same # of columns) Now the listbox has scores of .F. on the bottom 30 rows :(
>
>PMFJI,
>
>Try :
>
List1.Rowsource=""
>dimension MyArray(lnlength-1,alen(MyArray,2))
>List1.Rowsource="MyArray"
>HTH
I guess the trouble is when I do the ascan(10 rows, 7 cols) for a seach on fname. SQL= "select fname,lname,b3,b4,b5,b6,b7 into array z_array). I locate the lname "m.pos = ASCAN(THISFORM.MYLISTBOX1.z_array,m.fname)"
m.pos gives me the element # or should I be using aelement()?

-TB
"Build a man a fire, and he's warm for a day.
Set a man on fire, and he's warm for the rest of his life."
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform