Results 1 to 5 of 5

Thread: HELP!! I don't know what else to say... ASP/Vbscript/Access problem. (**RESOLVED**)

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Aug 2002
    Location
    England
    Posts
    165

    Exclamation HELP!! I don't know what else to say... ASP/Vbscript/Access problem. (**RESOLVED**)

    <select size="1" name="player<%Response.Write (m) %>">
    <%Do While NOT rsPlayerProfiles.EOF%>
    <option value="<%Response.Write (rsPlayerProfiles("ID"))%>"><%Response.Write (rsPlayerProfiles("PlayerNickName"))%></option>
    <%rsPlayerProfiles.MoveNext%>
    <%loop%>
    </select>


    It is supposed to make a dropdown menu appear. It does it first time and then doesn't do it again after that. Help?
    Last edited by Sir_Brock; Oct 2nd, 2002 at 12:57 PM.
    _____

    Hehehe

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687
    Code:
    <select size="1" name="player<%Response.Write (m) %>">
    
    <%If rsPlayerProfiles.EOF Then
      rsPlayerProfiles.MoveFirst
    End If
    
    Do While NOT rsPlayerProfiles.EOF%>
    <option value="<%Response.Write (rsPlayerProfiles("ID"))%>"><%Response.Write (rsPlayerProfiles("PlayerNickName"))%></option>
    <%rsPlayerProfiles.MoveNext%>
    <%loop%>
    </select>
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Aug 2002
    Location
    England
    Posts
    165
    TECHGNOME IS A GOD!! Thanks dude!
    _____

    Hehehe

  4. #4
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687
    Originally posted by Sir_Brock
    TECHGNOME IS A GOD!! Thanks dude!

    No, no... not really....
    I'm just a card carrying demi-god... nothing more....

    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Aug 2002
    Location
    England
    Posts
    165
    Ah well, supposed friends on MSN never reply to me so I get stuck for ages, you took just a minute or so.
    _____

    Hehehe

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width