Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


36160 / 76732 ←次へ | 前へ→

【45755】Re:ハイパーリンクの方法
回答  Kein  - 07/1/13(土) 17:35 -

引用なし
パスワード
   Google のサイトを表示するとして・・

Private Sub CommandButton2_Click()
  Dim MyShell As Object, MyWindow As Object
  Dim objIE As Object
  Const TgURL As String = "http://www.google.co.jp/"

  Set MyShell= CreateObject("Shell.Application")
  For Each MyWindow In MyShell.Windows
   If TypeName(MyWindow.document) = "HTMLDocument" Then
     Set objIE = MyWindow: Exit For
   End If
  Next
  If objIE Is Nothing Then
   Set objIE = CreateObject("InternetExplorer.Application")
  End If
  With objIE
   .Visible = True
   .Navigate TgURL
   Do While .Busy: DoEvents: Loop
   Do While .ReadyState <> 4: DoEvents: Loop   
  Loop
  Set MyShell = Nothing: Set objIE = Nothing
End Sub

などとします。
2 hits

【45753】ハイパーリンクの方法 kei 07/1/13(土) 17:12 質問
【45754】Re:ハイパーリンクの方法 かみちゃん 07/1/13(土) 17:32 発言
【45755】Re:ハイパーリンクの方法 Kein 07/1/13(土) 17:35 回答
【45756】Re:ハイパーリンクの方法 kei 07/1/13(土) 17:42 お礼

36160 / 76732 ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free