|
-
Feb 16th, 2004, 11:41 AM
#1
Thread Starter
Fanatic Member
infinite recordset?
can recordset be used as many as possiblewithin a conn to refine the display of data?
-
Feb 16th, 2004, 11:54 AM
#2
Fanatic Member
I'll be the first to say
Whhhaaaaaaa???
please restate the question.
It Never Fails. Everytime I try to make a program idiot proof, the world makes a better idiot.
-
Feb 16th, 2004, 11:57 AM
#3
Thread Starter
Fanatic Member
i got an example :
First have 2 Label controls one with Index as 0.
Private sub Btn_Click()
rs1=select distinct(col 1) from table
do until rs1.eof
rs2=select (col 2) from table where (col 1) = rs1(0)
--clear all arrays of label2
if Not rs2.eof then
intLoad=Label2.ubound
load label2(ubound) and set the visible=true and top=(value)
label1.caption=rs1(col 1)
label2(ubound).caption=rs2(col 2)
end if
rs2.close
rs1.movenext
loop
rs1.close
End Sub
which i dunn really understand....clearly..and if the table is taken from a join tables ie rs1,rs2,rs3..is it ok?if you understand the 'code' pls elaborste thanks
-
Feb 16th, 2004, 12:13 PM
#4
I explained what was intended with that code in your other thread... you shouldn' create so many threads if they are related anyway... its difficult to keep track of the topics that come up during discussion of the original topic.
-
Feb 16th, 2004, 12:15 PM
#5
Thread Starter
Fanatic Member
sorrie....cuz i dun really understand the code well..and desperately want to achieve the goal....(my boss is pushing me...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|