掲示板システム
ホーム
アクセス解析
カテゴリ
ログアウト
ブラウザの言語設定を簡単に変更するには? (ID:110869)
名前
ホームページ(ブログ、Twitterなど)のURL (省略可)
本文
なるほど、 この場合もクライアント側の、 ブラウザの設定をエンコード自動設定にしておくことで、 ジャンプ先のURLにあるメタタグを解析するはずですので、 基本はOKだと思います。 一度、Microsoft Internet controlsを参照設定してみて -- Option Explicit Private WithEvents ie As SHDocVw.InternetExplorer Private Sub Command1_Click() Dim url As String url = "http://www.yahoo.co.jp" If ie Is Nothing Then Set ie = New SHDocVw.InternetExplorer End If ie.Navigate url ie.Visible = True End Sub Private Sub Command2_Click() Dim url As String url = "http://www.yahoo.com" If ie Is Nothing Then Set ie = New SHDocVw.InternetExplorer End If ie.Navigate url ie.Visible = True End Sub Private Sub ie_OnQuit() Set ie = Nothing End Sub -- ボタン2つをフォームに張り付けて起動してみてください。 言語設定は変わっているはずです。
←解決時は質問者本人がここをチェックしてください。
戻る
掲示板システム
Copyright 2021 Takeshi Okamoto All Rights Reserved.