2

私はFirefoxのURLバーに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()

このコードは、URL を返します (取得します)。

どうすればURLを挿入できますか?

(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 に答える