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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can control be bound across tiers?

Status
Not open for further replies.

johnk

MIS
Jun 3, 1999
217
US
In VB6 we do not bind our grid controls directly to a dataset but to an XArray in memory. This goes back to early DCOM days when we could not bind controls to datasets through DCOM.

Of course when we fill the grid with large numbers of rows it must transfer them all across tiers. Is there a way to bind a control to a dataset in another tier so that only the data to be visible on the screen need be transmitted across tiers?

John Kisner


 
I recomend using ADO datasets, they are object sets that can cross COM boundries. Attitude is Everything
 
Thanks danceman.

We do use ADO datasets exclusively. Is there anything special we need to do to bind a control to them across DCOM?

John Kisner


 
look at the article in microsft knowledge base
INFO: Passing ADO Recordsets in Visual Basic Procedures
it tlaks about the effects of out of process ADO recordsets. Attitude is Everything
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top