Click here to Skip to main content
15,914,642 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Centered vertical alignment of menu in top frame Pin
matthias s.12-Apr-04 8:51
matthias s.12-Apr-04 8:51 
GeneralInserting Multiple lines into a database Pin
Kleith8-Apr-04 11:46
Kleith8-Apr-04 11:46 
GeneralRe: Inserting Multiple lines into a database Pin
John Kuhn9-Apr-04 17:07
John Kuhn9-Apr-04 17:07 
GeneralRe: Inserting Multiple lines into a database Pin
Kleith12-Apr-04 10:18
Kleith12-Apr-04 10:18 
GeneralRe: Inserting Multiple lines into a database Pin
l a u r e n11-Apr-04 18:02
l a u r e n11-Apr-04 18:02 
GeneralRe: Inserting Multiple lines into a database Pin
John Kuhn13-Apr-04 15:42
John Kuhn13-Apr-04 15:42 
GeneralMultiple recordsets with VB-ASP-SQL Server 2000 Pin
Hitu8-Apr-04 7:14
Hitu8-Apr-04 7:14 
GeneralRe: Multiple recordsets with VB-ASP-SQL Server 2000 Pin
John Kuhn9-Apr-04 17:24
John Kuhn9-Apr-04 17:24 
Without trying it out for myself, it seems like the problem could be that your VB object is returning a static, in-memory recordset, and not a reference to a dynamic recordset. It isn't clear to me that it is possible to return a dynamic recordset along with the ability perform subsequent method calls -- since that implies that the connection state is still open, that the VB object persists everything correctly, etc., especially since, in most cases, people do things like:

Set rs = vbObject.GetRecordSet(para1, para2)

Perhaps, the alternative would be:

vbObject.StartRecordSet para1, para2
Do While Not vbObject.RecordSet.EOF
 ...
Loop
vbObject.GetNextRecordSet
Do While Not vbObject.RecordSet.EOF
 ...
Loop

and then the implementation of the recordset is internal to the object?

What a piece of work is man, how noble in reason, how infinite in faculties, in form and moving how express and admirable . . . and yet to me, what is this quintessence of dust? -- Hamlet, Act II, Scene ii.
QuestionHow to put a Search Engine on a website Pin
srt78-Apr-04 6:08
srt78-Apr-04 6:08 
AnswerThe no answer board....I guess Pin
srt79-Apr-04 3:55
srt79-Apr-04 3:55 
AnswerRe: How to put a Search Engine on a website Pin
John Kuhn9-Apr-04 16:25
John Kuhn9-Apr-04 16:25 
Generalproblem in debugging ISAPI dll. Pin
suvarna joshi8-Apr-04 2:16
suvarna joshi8-Apr-04 2:16 
GeneralNeed CAB-file tutorial… and ActiveX-help Pin
anderslundsgard7-Apr-04 5:02
anderslundsgard7-Apr-04 5:02 
GeneralASP FILE NOT CORRECT Pin
Brendan Vogt6-Apr-04 21:23
Brendan Vogt6-Apr-04 21:23 
GeneralCLIENT-SIDED VALIDATION NEEDED Pin
Brendan Vogt6-Apr-04 21:21
Brendan Vogt6-Apr-04 21:21 
GeneralRe: CLIENT-SIDED VALIDATION NEEDED Pin
alex.barylski9-Apr-04 19:07
alex.barylski9-Apr-04 19:07 
GeneralViewing uploaded file from SQL Server Pin
vj_asu6-Apr-04 6:25
vj_asu6-Apr-04 6:25 
GeneralRe: Viewing uploaded file from SQL Server Pin
Hesham Amin6-Apr-04 21:29
Hesham Amin6-Apr-04 21:29 
Generalhtml text wrapping Pin
harinath5-Apr-04 19:37
professionalharinath5-Apr-04 19:37 
GeneralRe: html text wrapping Pin
Roger Wright5-Apr-04 19:52
professionalRoger Wright5-Apr-04 19:52 
GeneralRe: html text wrapping Pin
harinath5-Apr-04 20:04
professionalharinath5-Apr-04 20:04 
GeneralRe: html text wrapping Pin
superwinsock7-Apr-04 20:08
superwinsock7-Apr-04 20:08 
GeneralRe: html text wrapping Pin
harinath7-Apr-04 22:03
professionalharinath7-Apr-04 22:03 
GeneralHttpRequest in Opera browser Pin
MurthyPL5-Apr-04 5:39
MurthyPL5-Apr-04 5:39 
GeneralRe: HttpRequest in Opera browser Pin
John Kuhn9-Apr-04 17:41
John Kuhn9-Apr-04 17:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.