Results 1 to 2 of 2

Thread: Progressbar control

  1. #1
    Guest
    Hi,
    I am trying to display the status of a recordset whilst it is processing data in a progressbar control. I do not know the property of the of the recordset to use. Any help would be much appreciated. Thanks

    PS.Progressbar1.value = rsData. 'Do not know property

    Albert

  2. #2
    Frenzied Member Mark Sreeves's Avatar
    Join Date
    Nov 1999
    Location
    UK
    Posts
    1,845
    if you are using DAO
    ProgressBar1.Value = rsData.PercentPosition

    if you are using ADO you'll need to use

    'size the progressbar first
    rstdata.movelast
    ProgressBar1.max = rstData.RecordCount
    rstdata.movefirst



    'then use this within your loop
    rsData.AbsolutePosition

    Mark
    -------------------

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