Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8607235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T03:18:02+00:00 2026-06-12T03:18:02+00:00

I have the following code in an HTML web page, and I am trying

  • 0

I have the following code in an HTML web page, and I am trying to use the html object library via vba engine to pull the value from within this tag:

<input name="txtAdd_Line1" disabled="disabled" size="30" maxLength="50" value="123 N 1ST ST"/>

I figure I have to use .getelementsbytagname or .getelementsbyname, but I am not sure how to grab the value. Does anyone have any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T03:18:03+00:00Added an answer on June 12, 2026 at 3:18 am

    Here’s an example with comments, subtitute in your actual address:

    Sub Example()
        'Declare needed variables
        Dim ie, elements
        Dim x As Long
        'Create IE Applction
        Set ie = CreateObject("InternetExplorer.Application")
        'Navigate to the website
        ie.navigate "C:\test.html" 'Substitute your actual address
        'Wait for website to finish loading
        Do While ie.ReadyState <> 4
        Loop
    
        'Find the elements
        Set elements = ie.document.getelementsbyName("txtAdd_Line1")
        'Display the value of each returned element
        For x = 0 To elements.Length - 1
            MsgBox elements(x).Value
        Next
        'Quit IE
        ie.Quit
    End Sub
    

    Based on your comment most likely just looking at the document wasn’t retrieving the actual layer of the tree you wanted, try this:

    Set HTMLDoc = ie.document.frames("MainFrame").document 
    With HTMLDoc 
        'This returns an (object) which contains an array of all matching elements
        a = .getElementsByName("txtAdd_Line1")
    end with
    For x = 0 to a.length
        msgbox a(x).value
    next
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have the following section of HTML code from a web page: <td
I have a web page that uses the following code: <!DOCTYPE html> <html style=height:
I have the following code: HTML <div id='foo'> <input type='checkbox' value='english' name='bar[english]' /> <input
I have the following code in html: <select> <option text=item9 value=9></option> <option text=item10 value=10></option>
I have the following html code: <form> <table> <tbody> <tr> <td> <span>Quantity<span class=pull-right>3</span> <input
In my Default.aspx web page i use the following code in order to save
I have the following code in HTML and wanted to replace them using javascript
I have the following code in html, I cannot get the Function call back
In my view I have the following code: @using (Html.BeginForm()) { @Html.TextBox(Date2, Model.Date2) <br/>
I have the following html code: I saw that for Watir-webdriver the Watir::Image.file_size method

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.