I am extracting data from web page that is used as table in a database. The address of the webpage changes frequently, I want to store the web address in a table and get the web address for the ie object from from the table.
Is it possible to get the url from a table so that I can change the web address in the table when ever it is changed,
ieBrowser.Navigate "http://web.dse.com.bd/admin-real/latest_share_price_all.php"
thanks
Code:
Dim colTables As Object
Dim strDocHTML As String
Set ieBrowser = CreateObject("internetexplorer.application")
ieBrowser.Navigate [COLOR="Red"]"http://web.dse.com.bd/admin-real/latest_share_price_all.php"[/COLOR]
While ieBrowser.Busy 'WAIT LIKE USUAL
DoEvents
Wend
While ieBrowser.Document.All.tags("TABLE").Length > 1
DoEvents
Wend
Is it possible to get the url from a table so that I can change the web address in the table when ever it is changed,
ieBrowser.Navigate "http://web.dse.com.bd/admin-real/latest_share_price_all.php"
thanks