2

我试图将 url 插入到 firefox url 栏中。

我的代码:

进口:

Imports NDde.Client

代码:

Dim dde As DdeClient = New DdeClient("Firefox", "WWW_GetWindowInfo")
dde.Connect()
Dim url As String = dde.Request("URL", Integer.MaxValue)
dde.Disconnect()

此代码返回(获取)网址。

我怎样才能插入网址?

(我尝试使用 dde.Handle 和 findwindowex,但我不知道 url 栏的类名是什么(是的,我尝试了 spy++))

4

1 回答 1

0

尝试这个。

'///Download NDDE library from here "http://ndde.codeplex.com/"
'///Then add refrence NDde.dll in your project.

Imports NDde.Client 'import NDde Client

Button1 Click:

Dim dde As New DdeClient("Firefox", "WWW_OpenURL") 'you can also use "Opera" instead of "Firefox"
dde.Connect()
Dim url As String = dde.Request("http://www.google.com", Integer.MaxValue) 'you can replace google.com with your desired URL.
dde.Disconnect()

它将在 firefox 或 opera 浏览器的 URL 栏中设置 URL 并导航它。希望这对你有帮助。

于 2013-04-10T16:11:35.690 回答