Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Microsoft Office > Excel VBA > Excel VBA
|
Excel VBA Discuss using VBA for Excel programming.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Excel VBA section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 12th, 2005, 09:06 AM
Authorized User
 
Join Date: Dec 2004
Posts: 16
Thanks: 0
Thanked 1 Time in 1 Post
Default Grabbing data from a WebTable

Hello,

I am using the following code to grab data from a webtable from a Fitch report:
Code:
Set oIE = New SHDocVw.InternetExplorer
oIE.Navigate Navigateto
Do Until oIE.ReadyState = READYSTATE_COMPLETE
  DoEvents
Loop
Spage = oIE.Document.body.innerhtml
After which I can just search through the HTML source to find the data I need.

The problem I'm having is that when I try to do the same on absnet the data that I need is not in the document.body.innerhtml code. It is on WebTable("14"). Does anyone know the name that I need to put after oIE.(name here) in order to point Spage to the webtable("14") html source code? Thanks!

 
Old May 24th, 2005, 12:34 PM
Authorized User
 
Join Date: Dec 2004
Posts: 16
Thanks: 0
Thanked 1 Time in 1 Post
Default

I did figure this out if anyone is interested.






Similar Threads
Thread Thread Starter Forum Replies Last Post
Grabbing form variables jroxit Classic ASP Basics 5 June 18th, 2007 05:08 PM
Importing a WebTable into an SQL Table cej2583 SQL Server DTS 0 October 24th, 2005 01:28 PM
Reference a Cell in a Webtable. Ahrenl Excel VBA 2 May 25th, 2005 11:25 AM
Grabbing Value From Textbox in subform bph Access 20 March 15th, 2005 05:29 PM
Grabbing URL aingalsbe PHP How-To 1 April 5th, 2004 05:01 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.