Excel VBA質問箱 IV

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

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


13561 / 13645 ツリー ←次へ | 前へ→

【4835】cookieの情報を取り出して比較したい まさ 03/4/9(水) 22:01 質問
【4836】Re:cookieの情報を取り出して比較したい ポンタ 03/4/9(水) 23:30 回答
【4843】Re:cookieの情報を取り出して比較したい まさ 03/4/10(木) 12:43 お礼

【4835】cookieの情報を取り出して比較したい
質問  まさ  - 03/4/9(水) 22:01 -

引用なし
パスワード
   cookieの情報(文字列?)とCSVファイルのある項目の値と比較したいと考えております。
が、cookieの情報を取り出す方法がわかりません・・・。
そもそも、Excelマクロで取り出せるのでしょうか?
知っている方がございましたら、なにとぞよろしくお願いします。m(_)m

【4836】Re:cookieの情報を取り出して比較したい
回答  ポンタ  - 03/4/9(水) 23:30 -

引用なし
パスワード
   私もはじめて作ったのであまり自信ありませんが、
こんな感じでいかがでしょう?

標準モジュールに貼り付けてお試しください。

Sub test()
  Dim objShell As Object
  Dim MyPath As String
  Dim objFs As Object
  Dim objFolder As Object
  Dim i As Integer
  Dim objFile As Object
  Dim objText As Object
  Set objShell = CreateObject("WScript.Shell")
  MyPath = objShell.SpecialFolders("Favorites")
  Set objFs = CreateObject("Scripting.FileSystemObject")
  Set objFolder = objFs.getfolder(MyPath)
  Set objFolder = objFolder.ParentFolder
  MyPath = objFolder.Path & "\cookies"
  If objFs.FolderExists(MyPath) Then
    Set objFolder = objFs.getfolder(objFolder.Path & "\cookies")
  Else
    MsgBox ("""Cookie""フォルダを見つけられません")
    Exit Sub
  End If
  i = 1
  For Each objFile In objFolder.Files
    Cells(i, 1).Value = objFile.Name
    Set objText = objFile.OpenAsTextStream(1)
    Do
      Cells(i, 2).Value = "'" & objText.ReadLine
      i = i + 1
    Loop Until objText.AtEndOfStream
  Next
End Sub

【4843】Re:cookieの情報を取り出して比較したい
お礼  まさ  - 03/4/10(木) 12:43 -

引用なし
パスワード
   ポンタ さん ありがとうございます。
大変参考になりました。
うまくできそうです。

▼ポンタ さん:
>私もはじめて作ったのであまり自信ありませんが、
>こんな感じでいかがでしょう?
>
>標準モジュールに貼り付けてお試しください。
>
>Sub test()
>  Dim objShell As Object
>  Dim MyPath As String
>  Dim objFs As Object
>  Dim objFolder As Object
>  Dim i As Integer
>  Dim objFile As Object
>  Dim objText As Object
>  Set objShell = CreateObject("WScript.Shell")
>  MyPath = objShell.SpecialFolders("Favorites")
>  Set objFs = CreateObject("Scripting.FileSystemObject")
>  Set objFolder = objFs.getfolder(MyPath)
>  Set objFolder = objFolder.ParentFolder
>  MyPath = objFolder.Path & "\cookies"
>  If objFs.FolderExists(MyPath) Then
>    Set objFolder = objFs.getfolder(objFolder.Path & "\cookies")
>  Else
>    MsgBox ("""Cookie""フォルダを見つけられません")
>    Exit Sub
>  End If
>  i = 1
>  For Each objFile In objFolder.Files
>    Cells(i, 1).Value = objFile.Name
>    Set objText = objFile.OpenAsTextStream(1)
>    Do
>      Cells(i, 2).Value = "'" & objText.ReadLine
>      i = i + 1
>    Loop Until objText.AtEndOfStream
>  Next
>End Sub

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