C
Chris
Hi,
I would like to put a variable in place of the value F2 (F2 being the field
name)
This way I can control which field is being edited by way of a variable.
example: sField
Do While Not rst.EOF
With rst
.Edit
'TODO: add dynamic field addressing using sfieldname variable
!F2 = String(fieldsize - Len(CStr(countstart)), "0") &
CStr(countstart)
rst.Update
rst.MoveNext
End With
loop
Could someone please show me how to do this.
Thanks
Chris
I would like to put a variable in place of the value F2 (F2 being the field
name)
This way I can control which field is being edited by way of a variable.
example: sField
Do While Not rst.EOF
With rst
.Edit
'TODO: add dynamic field addressing using sfieldname variable
!F2 = String(fieldsize - Len(CStr(countstart)), "0") &
CStr(countstart)
rst.Update
rst.MoveNext
End With
loop
Could someone please show me how to do this.
Thanks
Chris