You can use the BoundColumn property to specify a different single column as the source for Value; to get the values of other columns in the chosen row, you need to look at the contents of that array row or table row. Robert Bradley
You can do as FoxDev mentioned and refer to the box's rowsource.
Or you can enumerate the list property:
MyRow=''
With MyForm.MyList
MyIndex=.ListIndex
MyColumns=.ColumnCount
For MyCnt = 1 TO MyColumns
MyRow=MyRow+.List(MyIndex,MyCnt)
EndFor
EndWith
All those My's make me feel like a selfish 3 year old. Jon Hawkins
The World Is Headed For Mutiny,
When All We Want Is Unity. - Creed
I realised, after doing some fiddling following your replies, that it was in fact the list property that I was interested in. I was able to do what I wanted by accessing the 4th column in the list array.
I was listing donations received with a view to allowing users to move donations from one record to another. I was including the record number (the 4th column), which I then used to GOto in the donations received table and change the ID field.
Thanks for your help and for advancing my knowledge.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.