たとえば出品中のオークションの宣伝に、セルの内容が告ぎの場合のマクロソースです ・セル1列:オークションid,セル3列:タイトル,セル14列:価格,セル2列:url Sub twitIe() Dim objIE As Object Set objIE = CreateObject("InternetExplorer.application") objIE.Visible = True objIE.navigate ("http://twitter.com/") Sleep (3000) num = 0
If Cells(i, 1).Value = "" Then Exit For If Cells(i, 4).Value = "" Then s = Cells(i, 3).Value & " ヤフオク出品中 現在" & Cells(i, 14).Value & "円" & vbCrLf & Cells(i, 2).Value objIE.Document.all.tags("textarea").Item.Value = s objIE.Document.all.tags("textarea").Item.Click SendKeys "{TAB}", True Do objIE.Document.getElementById("update-submit").Click Sleep (200) If objIE.Document.all.tags("textarea").Item.Value = "" Then Exit Do Sleep (300)
num = num + 1 End If Next Application.StatusBar = "done twitNum=" & num End Sub