Re: Foxpro questions
Tech-Archive recommends: Speed Up your PC by fixing your registry
You create an array of field names for a table with Afields("myarray").
Go the other direction with CREATE TABLE (or cursor) tablename FROM ARRAY
myarray. The array can be created in code, but should be in the same format
as that created from Afields().
Dan
Cass Lewart wrote:
I use VFP6. Which command will create a table from a list of field
names and which command will do the opposite? Thanks,
Cass
.
Relevant Pages
- Re: Make all variable in Array = Empty each click of a Button on U
... If your Array is Fixed in size, you can erase it to all zero's. ... Dim f'Try also using Long ... Dim myArray As Variant ... (microsoft.public.excel.programming) - Re: ReDim not working as expected. Array expert needed.
... Dim MyArray() As Integer ... I don't think you can do that with a explicitely "typed" array like in your ... In Sub ArrayStudies1, MyArray is dimensioned as an array of type Integer. ... Sub ArrayStudies3 differs from Sub ArrayStudies2 only in that MyArray is ... (microsoft.public.excel.programming) - Re: ReDim not working as expected. Array expert needed.
... Dim MyArray() As Integer ... I don't think you can do that with a explicitely "typed" array like in your ... In Sub ArrayStudies1, MyArray is dimensioned as an array of type Integer. ... Sub ArrayStudies3 differs from Sub ArrayStudies2 only in that MyArray is ... (microsoft.public.excel.programming) - Re: ReDim not working as expected. Array expert needed.
... Dim MyArray() As Integer ... I don't think you can do that with a explicitely "typed" array like in ... In Sub ArrayStudies1, MyArray is dimensioned as an array of type ... Sub ArrayStudies3 differs from Sub ArrayStudies2 only in that MyArray ... (microsoft.public.excel.programming) - Re: Populate a Multi-Column ListBox
... two-dimensional array to load into a ListBox or ComboBox. ... For a multicolumn ListBox or ComboBox, AddItem inserts an entire row, ... If you populate a ListBox with an Array using the List of Column ... Dim myArray As Variant ... (microsoft.public.word.vba.userforms) |
|