Click here to Skip to main content
15,888,610 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Creating Tables Pin
SatyaDY1-Jan-04 17:13
SatyaDY1-Jan-04 17:13 
GeneralRe: Creating Tables Pin
l a u r e n2-Jan-04 21:35
l a u r e n2-Jan-04 21:35 
GeneralUnknown Error Pin
SatyaDY1-Jan-04 0:36
SatyaDY1-Jan-04 0:36 
GeneralRe: Unknown Error Pin
l a u r e n2-Jan-04 14:28
l a u r e n2-Jan-04 14:28 
GeneralRe: Unknown Error Pin
Roger Wright2-Jan-04 14:47
professionalRoger Wright2-Jan-04 14:47 
GeneralOffice Web Components Pin
Miszou31-Dec-03 7:44
Miszou31-Dec-03 7:44 
GeneralNo one seems to know how... Pin
Robby31-Dec-03 3:39
Robby31-Dec-03 3:39 
GeneralRe: No one seems to know how... Pin
Roger Wright31-Dec-03 5:27
professionalRoger Wright31-Dec-03 5:27 
Although I haven't tried it, I'd suggest trying this procedure:
1. Select * from the table.
2. Determine the number of records returned, n:
n = RS.RecordCount
3. DIM an array(n) for each variable of interest, First(n),Last(n), etc
4. Iterate through the recordset using this sort of construct:
i= 0
While Not RS.EOF
First(i) = RS.Fields("First")
Last(i) = RS.Fields("Last")
i = i + 1
RS.MoveNext
WEND

This should leave you with a pair of matched arrays, one of each per record returned. Large recordsets could be problematic, but this is what I'd try first.





"Another day done - All targets met; all systems fully operational; all customers satisfied; all staff keen and well motivated; all pigs fed and ready to fly" - Jennie A.

GeneralRe: No one seems to know how... Pin
Robby3-Jan-04 12:30
Robby3-Jan-04 12:30 
GeneralRe: No one seems to know how... Pin
Richard Deeming9-Jan-04 6:59
mveRichard Deeming9-Jan-04 6:59 
GeneralEvery request to local application creating a new session. Pin
ankithakur31-Dec-03 2:04
ankithakur31-Dec-03 2:04 
GeneralPHP Regex Question Pin
-- NA --31-Dec-03 0:54
-- NA --31-Dec-03 0:54 
GeneralRe: PHP Regex Question Pin
ZoogieZork4-Jan-04 11:51
ZoogieZork4-Jan-04 11:51 
GeneralRe: PHP Regex Question Pin
-- NA --4-Jan-04 21:27
-- NA --4-Jan-04 21:27 
GeneralTable in fix sizes ( Hard Table !!! ) Pin
Hadi Rezaee30-Dec-03 23:46
Hadi Rezaee30-Dec-03 23:46 
GeneralRe: Table in fix sizes ( Hard Table !!! ) Pin
Dominik Reichl31-Dec-03 1:17
Dominik Reichl31-Dec-03 1:17 
GeneralRe: Table in fix sizes ( Hard Table !!! ) Pin
Hadi Rezaee31-Dec-03 13:13
Hadi Rezaee31-Dec-03 13:13 
GeneralRe: Table in fix sizes ( Hard Table !!! ) Pin
Roger Wright31-Dec-03 13:39
professionalRoger Wright31-Dec-03 13:39 
GeneralA pearly question Pin
Peter Mayhew29-Dec-03 10:17
Peter Mayhew29-Dec-03 10:17 
GeneralRe: A pearly question Pin
brianwelsch30-Dec-03 5:29
brianwelsch30-Dec-03 5:29 
GeneralRe: A pearly question Pin
Peter Mayhew30-Dec-03 5:35
Peter Mayhew30-Dec-03 5:35 
GeneralRe: A pearly question Pin
brianwelsch30-Dec-03 7:06
brianwelsch30-Dec-03 7:06 
GeneralRe: A pearly question Pin
alex.barylski30-Dec-03 18:30
alex.barylski30-Dec-03 18:30 
GeneralRe: A pearly question Pin
Peter Mayhew30-Dec-03 23:04
Peter Mayhew30-Dec-03 23:04 
GeneralRe: A pearly question Pin
Jörgen Sigvardsson5-Jan-04 13:18
Jörgen Sigvardsson5-Jan-04 13:18 

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.