Hi


I call a Stored Procedure from VB that return a recordsets and values:

select field1,field2 from mytables
return (value)

But It call other stored procedure that too return
recordset and value

How do I do to received this in the recordset in the VB, When I look in my recordset , It is with value of the internal procedure:
example
in my vb code I call procedure sp_se_ag06, this procedure call the procedure sp_ge_ag15 that return recordsets and value, when I look in my recordset It is with value of the procedure sp_ge_ag15, and not with values of the procedure sp_se_ag06, that I want. I tried rs.nextrecordset, but do not work

thank you in advance