0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

vbsの作法 その95

Posted at

概要

vbsの作法、調べてみた。
ヤフオクで、もうIE11は、使えないらしい。
対応する。

今までのコード

Private Sub CommandButton27_Click()
    Dim objIE
    Dim strBody
    Set objIE = CreateObject("InternetExplorer.Application")
    objIE.Width = 1000
    objIE.Height = 800
    objIE.Left = 0
    objIE.Top = 0
    objIE.Visible = True
    objIE.Navigate TextBox9.Text
    Set objIE = Nothing
End Sub

写真

スクリーンショット 2025-02-04 133637.png

対応したコード

Private Sub CommandButton27_Click()
    With CreateObject("Shell.Application")
        .ShellExecute "microsoft-edge:" + TextBox9.Text
    End With
End Sub

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?