A1VBCode Forums

could get answer here: get the url from the address bar of firefox by API


http://www.a1vbcode.com/vbforums/Topic16616.aspx

By dongwang - 2/9/2006

in a vb6.0/vb.net application to get the url text from a active firefox window, how to do this by api?

I could do it in IE.



thanks a lot.
By XMan - 2/11/2006

Not sure about API, but it can be done using DDE conversion. Put a label on a form and add the following to a command button click event.

With Label1
      .Caption = ""
      .AutoSize = True
      .LinkTopic = "Firefox|WWW_GetWindowInfo"
      .LinkItem = "0xffffffff"
      .LinkMode = 2
      .LinkRequest
End With