Hi Anthony.. here is what I need to do
I have a form with a cmdExtract which after fires it needs to:
By using Inet. How can I copy a news article text from an URL into a Word.doc file?
Also copy the article headline into a table in Access and copy it’s now new location on the hard drive in...
Hello
By using Inet. How can I copy a news article text into a Word.doc file?
Also copy the article headline into a table in Access and copy it’s now new location on the hard drive in a Access.mdb table? The Access table has Headline and Location as fields.
Thanks a lot
Sam
Hello
I have this code which was given by a programmer. it extracts the LinkText and LinkHref from a WebBrowser.
Could any one help. I need a code to use on Inet control.
thanks alot
Sam
Option Explicit
Public Type LinkInfo
LinkText As New Collection
LinkHref As New Collection
End Type...
I was able to do that last task all right
Private Sub cmdExtract_Click()
Dim MyInfo As LinkInfo
Dim i As Variant
Dim c As Long
c = 1
MyInfo = GetLinkInfo(WB1)
For Each i In MyInfo.LinkText
MsgBox MyInfo.LinkText.Item(c) & " " &...
I am asking 2many q's sorry. but I just need to get this to work.
this code is poping an error. compile error. argument not optional and .LinkText in the MsgBox line is blue highlighted
Private Sub cmdExtract_Click()
Dim MyInfo As LinkInfo
Dim i As Variant
MyInfo =...
yes, I wanted the WebBrowser control to navigate and it is working very good. alos I want to navigate without using the browser. but by useing Inet control. how can I write that code ..
thanks alot
Sam
I will be using Inet.
would this work?
Option Explicit
Public Type LinkInfo
LinkText As New Collection
LinkHref As New Collection
End Type
Public Function GetLinkInfo(Internet As Inet) As LinkInfo
'This will return all of the links in the page with
'the url of the link and the text (if...
Anthoney.. if I may ask you
if I have an URL and a hypertext link like below
URL = http://www.abcnews.go.com
Story title = the car of the future
and if I cann't go to it this way.
MyWeb.Navigate2 http://www.abcnews.go.com, the car of the futre
how can I?
thanks'
Sam
I have been really spending time on this for no avail. Please point me to the right direction
I have a URL for example www.abcnews.com which if displayed on a browser it has titles of stories. For example a hypertext link story (The car of the
future)
How can I retrieve the text of the story...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.