Library code snippets
Referring to a DE Command's recordset in VB 6.0
By ElementK Journals, published on 14 Jul 2001
Each Command object in Visual Basic 6.0's new Data Environment
also has an associated recordset. In code, you refer to this
object by preceding the Command object's name with rs. So, for
example, if your Data Environment contains a Command named
cmdSomeQuery, then to refer to the resulting recordset, you'd
use something like this:
Set rst = DataEnvironment1.rscmdSomeQuery
Related articles
Related discussion
-
Regarding Visual Basic Programme
by manjunathsl2007 (0 replies)
-
how do you hide all in VB6
by CapnJack (1 replies)
-
Problem with Input File
by novavb6 (3 replies)
-
How to produce a txt file with a table??
by novavb6 (1 replies)
-
VB6 compatability from XP to Vista
by bronx (1 replies)
This thread is for discussions of Referring to a DE Command's recordset in VB 6.0.