Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Returning an array!

Status
Not open for further replies.

Smitty020

MIS
Jun 1, 2001
152
0
0
US
I orginally had a function that returned a recordset, so it looked like this

get_list = ...OpenRecordset(SQL,...)
GetObjectContext.SetComplete

but now, I built a new function that returns an array, and looks like:

get_list = array
GetObjectContext.SetComplete

What I want to know is, what does the "GetObjectContext.SetComplete" do? Do I need it when returning an array?

 
Hi

SetComplete command is normally used for state management. It should have little to do with retrieving data.

This leads me to think you will still need it.

Regards

Sadcow
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top