Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by adr

  1. adr

    Using Split function against an array like "100,200,300"

    Why are you using split? Its already in a collection so why use more resources to get it into an array? for i = 1 to request.form("listbox1").count 'do something to with request.form("listbox")(i) next
  2. adr

    Can you have an array of objects in VBScript?

    yeah you can go dim blah(10) for i = to ubound(blah) set blah(i) = server.createobject("my.object") next
  3. adr

    Updating Database Tables

    When using a recordset to update multiple records in the same table, you're better off to use a adBatchLockOptimistic and use .updatebatch at the end of all updates. Its a faster way of doing multiple updates.

Part and Inventory Search

Back
Top