Hi Ajay,
Please see the following code.
'objRst is your record set object.
' strRep is an array
Please let me know if you have any queries.
Please see the following code.
'objRst is your record set object.
' strRep is an array
Code:
i= 0
While Not objRst.EOF
strRep(i) = objRst("Home").Value
i= i+1
objRst.MoveNext
Wend