Search results

  1. B

    Why is my RecordSet not starting from record 1?

    CJ_London/pbaldy Thank you so much!!! :D ... It never occurred to me that is the case. I just assumed I will get the first record (id=1) in table. Have a great day! BJ
  2. B

    Why is my RecordSet not starting from record 1?

    Hello all; There may be a simple explanation to this, and hoping someone can help me. I can't figure out why my Recordset start from record # 301 instead of # 1 Here's part of my code: Set db2 = CurrentDb Set rst2 = db2.OpenRecordset(strTable2) If rst2.RecordCount = 0 Then MsgBox "No...
  3. B

    Get attribute of a <a> element that has no ID or class

    Figured it out (for the benefit of others who may have the same issue): instead of: elm.getAttribute("href") use: elm.Children(0).getAttribute("href")
  4. B

    Get attribute of a <a> element that has no ID or class

    Hello all; I tried searching my question on google but couldn't find an answer I'm looking for, probably because I couldn't phrase it properly in a short sentence. So here I am... I'm trying to access a webpage through Access VBA code, but having trouble getting the "href" form <a> element...
Top Bottom