Visual Basic 中学校 掲示板
投稿内容
タグのない投稿を抽出
統計
RSS
Visual Basic 中学校
>
投稿一覧
>
Internet Explorerを開きたい
タグの編集...
投稿者
Rooler
 (高校生)   投稿日時
2016/8/11 15:23:46
ボタンを押すとInternet Explorerを開きたいのですが方法あれば教えてください。
投稿者
魔界の仮面弁士
 (社会人)   投稿日時
2016/8/11 17:11:36
これで如何でしょう。
If
VB中学校をInternetExplorerで開く
Then
Dim
ie
As
Object
= CreateObject(
"InternetExplorer.Application"
)
ie.Left = 0
ie.Top = 0
ie.Width = 400
ie.Height = 400
'ie.GoHome()"
ie.Navigate2(
"http://homepage1.nifty.com/rucio/main/main.htm"
)
ie.Visible =
True
System.Runtime.InteropServices.Marshal.ReleaseComObject(ie)
Else
VB中学校をEdgeで開く
Then
Process.Start(
"microsoft-edge:http://homepage1.nifty.com/rucio/main/main.htm"
)
End
If
投稿者
Rooler
 (高校生)   投稿日時
2016/8/12 15:03:46
ありがとうございます。試してみたらできました。