Hi,
I’m struggling with some rather basic ideas. Can you help me do the following
I have a table, tab_Main, with fields
- ID - Integer
- Name – text
- Salary2004- Number
- Salary2005- Number
I want to copy the content into several arrays (so that I can manipulate the data)
Dim arrayID(100)
Dim arrayName(100)
Dim arraySalary2004(100)
Dim arrayDalary2005(100)
So how do I
- take a recordset clone (I think that’s right) of the table
- Movefirst
- Copy each field into the relevant array
- Move Next until end
This should be really easy but can’t get the syntax right
Your help apreciated
I’m struggling with some rather basic ideas. Can you help me do the following
I have a table, tab_Main, with fields
- ID - Integer
- Name – text
- Salary2004- Number
- Salary2005- Number
I want to copy the content into several arrays (so that I can manipulate the data)
Dim arrayID(100)
Dim arrayName(100)
Dim arraySalary2004(100)
Dim arrayDalary2005(100)
So how do I
- take a recordset clone (I think that’s right) of the table
- Movefirst
- Copy each field into the relevant array
- Move Next until end
This should be really easy but can’t get the syntax right
Your help apreciated