<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2331353154849483999</id><updated>2025-05-18T20:45:31.836+09:00</updated><category term="IE Web 参照設定"/><title type='text'>メモ 三流君の操作動画Memo</title><subtitle type='html'>自分メモとして使用。書き捨てでまとまっていないので、検索から来た人 ごめんなさい。&#xa;主にVBAやプログラム関係のテスト動画が多いです。</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>286</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-7018082729962631126</id><published>2024-09-20T11:53:00.003+09:00</published><updated>2024-09-20T11:53:40.763+09:00</updated><title type='text'>Excel パワークエリでWebデータ取得を自動化！URLパラメータをセル値で動的に変更する方法</title><content type='html'>## Excel パワークエリでWebデータ取得を自動化！URLパラメータをセル値で動的に変更する方法

**埋め込み動画URL:** https://youtu.be/hW3MJD2Srj4

&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/hW3MJD2Srj4&quot; title=&quot;YouTube video player&quot; frameborder=&quot;0&quot; allow=&quot;accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture&quot; allowfullscreen&gt;&lt;/iframe&gt;


## 複数の銘柄コードを一括取得！Excel Webクエリ自動化のススメ

ExcelでWebサイトからデータを取得したいと思ったことはありませんか？ 株価や為替レート、商品価格など、日々変動する情報を手作業でコピー＆ペーストするのは面倒ですよね。 そんな時に便利なのが、Excelの「Webクエリ」機能です。

Webクエリを使えば、Webページ上の表形式のデータを簡単にExcelに取り込むことができます。 しかし、銘柄コードなど、URLの一部が変わる場合、一つずつWebクエリを作成するのは手間がかかります。

そこで今回は、 **Excelのパワークエリ機能を活用して、URLのパラメータをセル値で動的に変更し、複数の銘柄コードのデータを自動的に取得する方法** を解説します。 


## パワークエリとは？ Webクエリとの違い

パワークエリは、Excelに搭載されている強力なデータ収集・加工ツールです。 Webクエリと同様にWebサイトからのデータ取得が可能ですが、さらに高度なデータ加工・変換機能を備えています。 

**Webクエリとの主な違い**

* **データ加工機能:** パワークエリは、データの整形、結合、変換、集計など、様々な加工処理をGUI操作で行えます。 Webクエリは、データの取得のみが可能です。
* **動的なデータ取得:**  パワークエリでは、Excelのセル値を参照してパラメータを動的に変更し、URLを自動生成できます。 Webクエリでは、URLを手動で入力する必要があります。

## 今回の動画で解説する内容

動画では、金融機関のWebサイトから信用取引残高のデータを取得する例を用いて、以下の手順を解説しています。

1. Webクエリでデータを取得し、Excelシートに読み込む。
2. Power Queryエディターを起動し、Webクエリを複製する。
3. 複製したクエリの名前を変更し、セルB5からデータを読み込むように設定する。
4. セルB2に銘柄コードを入力し、名前範囲&quot;URL&quot;として定義する。
5. 詳細エディターでコードを修正し、セルB2の値を参照してURLを動的に変更する処理を追加する。
6. データのプライバシー設定を行い、保存する。
7. 別の銘柄コードに変更して、データ更新を実行し、正しくデータが取得できることを確認する。
8. 取得したデータのプラス値とマイナス値を、区切り記号を使って分割する。

## パワークエリでURLパラメータを動的に変更する方法

動画内で解説している、URLパラメータを動的に変更するコードのポイントは以下です。

* **名前範囲&quot;URL&quot;から銘柄コードを取得:** `strNO = Excel.CurrentWorkbook(){[Name=&quot;URL&quot;]}[Content]{0}[Column1]`
* **取得した銘柄コードを使ってURLを組み立て:** `strURL = &quot;https://irbank.net/&quot; &amp; Number.ToText(strNO) &amp; &quot;/zandaka&quot;`
* **組み立てたURLでWebページのコンテンツを取得:** `Web.Page(Web.Contents(strURL))`

このコードをパワークエリの詳細エディターに追加することで、セルB2に入力した銘柄コードに応じて、自動的にURLが生成され、Webサイトからデータを取得できるようになります。

## まとめ：パワークエリで業務効率化！

今回の動画で紹介した方法は、他のWebサイトにも応用できます。 パワークエリを使いこなせば、Webサイトからのデータ取得や加工を自動化し、業務効率を大幅に向上させることができます。 ぜひ、動画を参考にパワークエリに挑戦してみてください！ 

</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/7018082729962631126/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2024/09/excel-weburl.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7018082729962631126'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7018082729962631126'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2024/09/excel-weburl.html' title='Excel パワークエリでWebデータ取得を自動化！URLパラメータをセル値で動的に変更する方法'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/hW3MJD2Srj4/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-6952739455209003536</id><published>2016-06-22T07:20:00.001+09:00</published><updated>2016-06-22T07:20:05.110+09:00</updated><title type='text'>【VBA IE操作】初めの一歩で参照設定をしつこく解説・・・　　 【三流君】</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;344&quot; src=&quot;https://www.youtube.com/embed/AcbxnIyhP30&quot; width=&quot;459&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
VBA IE操作 初めの一歩で参照設定をしつこく解説・・・&lt;br /&gt;&lt;br /&gt;
VBA IE操作&lt;br /&gt;&lt;a href=&quot;http://www.ken3.org/cgi-bin/group/vba_ie.asp&quot;&gt;http://www.ken3.org/cgi-bin/group/vba_ie.asp&lt;/a&gt;&lt;br /&gt;の入り口として&lt;br /&gt;&lt;br /&gt;
サンプル実行方法&lt;br /&gt;と&lt;br /&gt;参照設定をしつこく解説・・・&lt;br /&gt;&lt;br /&gt;
Stopで止めてデバック&lt;br /&gt;や&lt;br /&gt;TypeNameで型を探り、&lt;br /&gt;参照設定後にAS XXXX と指定して使うなどなど・・&lt;br /&gt;&lt;br /&gt;
あらためて、しつこく解説してみた・・・&lt;br /&gt;&lt;br /&gt;
参照設定&lt;br /&gt;&lt;a href=&quot;http://www.ken3.org/cgi-bin/group/vba_ie_object.asp&quot;&gt;http://www.ken3.org/cgi-bin/group/vba_ie_object.asp&lt;/a&gt;&lt;br /&gt;と&lt;br /&gt;STOPで止める&lt;br /&gt;&lt;a href=&quot;http://www.ken3.org/vba/watch-stop.html#IE-WATCH&quot;&gt;http://www.ken3.org/vba/watch-stop.html#IE-WATCH&lt;/a&gt;&lt;br /&gt;あとは、&lt;br /&gt;オブジェクトブラウザ&lt;br /&gt;&lt;a href=&quot;http://www.ken3.org/vba/backno/vba116.html&quot;&gt;http://www.ken3.org/vba/backno/vba116.html&lt;/a&gt;&lt;br /&gt;もヨロシクです。&lt;br /&gt;※内容かぶっているけど・・・&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;VBA,IE操作,参照設定,As InternetExplorer,As HTMLInputElement,初めの一歩&lt;br /&gt;&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/6952739455209003536/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2016/06/vba-ie.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/6952739455209003536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/6952739455209003536'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2016/06/vba-ie.html' title='【VBA IE操作】初めの一歩で参照設定をしつこく解説・・・　　 【三流君】'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/AcbxnIyhP30/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-8919378381961248926</id><published>2016-06-03T12:08:00.001+09:00</published><updated>2016-06-03T12:08:12.493+09:00</updated><title type='text'>【Windows10】フルバックアップ システムバックアップ は [バックアップと復元]に移動 (Windows7)を使う 【三流君】</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;https://www.youtube.com/embed/Sw7HFG6Zi8s&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
Windows10 フルバックアップ システムバックアップ は [バックアップと復元]に移動 (Windows7)を&lt;br /&gt;&lt;br /&gt;
使う&lt;br /&gt;&lt;br /&gt;
なぜか、Windws10のバックアップメニューに&lt;br /&gt;フルバックアップやシステム全体のバックアップ&lt;br /&gt;が見つからないのですが、&lt;br /&gt;&lt;br /&gt;
実は、設定 バックアップの &lt;br /&gt;Windows7のバックアップと復元&lt;br /&gt;が・・・その機能なんですよ。&lt;br /&gt;&lt;br /&gt;
コイツ？何言ってんだ？&lt;br /&gt;頭おかしくなったのかよ・・・と思うかもしれませんが、&lt;br /&gt;一度試してみてください。&lt;br /&gt;※Windows10のフルバックアップがここで(この機能で)できます。&lt;br /&gt;&lt;br /&gt;
1.ＵＳＢ外付けHDDなどバックアップ用のHDD領域を用意する&lt;br /&gt;&amp;nbsp; バックアップ先の場所を用意します。&lt;br /&gt;&lt;br /&gt;
2.設定 から 更新とセキュリティを選択&lt;br /&gt;　バックアップを選択&lt;br /&gt;　以前のバックアップを と なぜか古そうなこと言ってますが、&lt;br /&gt;　ここの、&lt;br /&gt;　[バックアップと復元]に移動 (Windows7)&lt;br /&gt;&amp;nbsp; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^&lt;br /&gt;&amp;nbsp; ↑のリンクをクリックして、Windows7時代のバックアップを使います(使えます)&lt;br /&gt;&lt;br /&gt;
&amp;nbsp;ここから、システムイメージの作成を使うと、全体をバックアップすることができます。&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
Windows10,フルバックアップ,システムバックアップ,バックアップと復元,テスト実行</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/8919378381961248926/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2016/06/windows10-windows7.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8919378381961248926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8919378381961248926'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2016/06/windows10-windows7.html' title='【Windows10】フルバックアップ システムバックアップ は [バックアップと復元]に移動 (Windows7)を使う 【三流君】'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/Sw7HFG6Zi8s/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-3432323977810693880</id><published>2016-05-29T04:56:00.001+09:00</published><updated>2016-05-29T04:56:50.652+09:00</updated><title type='text'>【Windows7】外付けHDDにシステムイメージバックアップを作成してみた　　 【三流君】</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;344&quot; src=&quot;https://www.youtube.com/embed/WNl0w6BGz3g&quot; width=&quot;459&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
Windows7 外付けHDDにシステムイメージバックアップを作成してみた&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;USBの外付けHDDを用意して、&lt;br /&gt;システムイメージバックアップを使って&lt;br /&gt;全体のバックアップを取る。&lt;br /&gt;そんな操作動画です。&lt;br /&gt;&lt;br /&gt;
ＵＳＢ外付けHDDなどバックアップ用のHDD領域を用意する&lt;br /&gt;外付けHDDをつなげます。&lt;br /&gt;親切に領域全体がフォーマットされているのですが、&lt;br /&gt;ここでは、200GのEドライブを作成して、&lt;br /&gt;システムCとデータDをシステムイメージの作成でバックアップします。&lt;br /&gt;&lt;br /&gt;
Cドライブのプロパティを開いて&lt;br /&gt;ツール ・・ バックアップから入ったり、&lt;br /&gt;コントロールパネルのバックアップから&lt;br /&gt;バックアップと復元の画面を開きます。&lt;br /&gt;&lt;br /&gt;
あとは、右側の&lt;br /&gt;システムイメージの作成&lt;br /&gt;を選択して、&lt;br /&gt;バックアップ先をEにして、システム全体のバックアップを作成します。&lt;br /&gt;&lt;br /&gt;
起動可能な回復ディスクも作成しておくと、&lt;br /&gt;回復メニューが表示されないほどダメージを受けた時に助かります。&lt;br /&gt;&lt;br /&gt;
なにか発生する前に全体のバックアップを作成しておいてください。&lt;br /&gt;※最近の流行は Windows7から10へアップグレードされちゃう問題かな？&lt;br /&gt;&lt;br /&gt;
あとは、戻す時の訓練ですが、それは別の動画で作成する予定です。&lt;br /&gt;&lt;br /&gt;
まとまっていませんが、何かの参考となれば幸いです。&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;Windows7,バックアップ,システムイメージバックアップ,システム全体のバックアップ,システム修復ディスクの作&lt;br /&gt;&lt;br /&gt;
成&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/3432323977810693880/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2016/05/windows7hdd.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/3432323977810693880'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/3432323977810693880'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2016/05/windows7hdd.html' title='【Windows7】外付けHDDにシステムイメージバックアップを作成してみた　　 【三流君】'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/WNl0w6BGz3g/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-9117502412335055510</id><published>2016-05-02T09:16:00.001+09:00</published><updated>2016-05-02T09:16:49.352+09:00</updated><title type='text'>【Windows7】仮想メモリ ページファイルをCから移動 設定する #三流君 #動画解説</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;https://www.youtube.com/embed/eHT6cNZqL1g?list=PL655E2C02BCE7FBA5&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;
Windows7でCドライブの容量を空けたい時、&lt;br /&gt;応急処置として&lt;br /&gt;&lt;br /&gt;
仮想メモリ&lt;br /&gt;ページングファイルをCからDなとに移動して、&lt;br /&gt;Cドライブの容量を増やす・・・&lt;br /&gt;&lt;br /&gt;
001&lt;br /&gt;&lt;br /&gt;
苦肉の策ですが、&lt;br /&gt;Cドライブの容量が減ってきたら、&lt;br /&gt;仮想メモリで使用している&lt;br /&gt;ページングファイルをCからDなどに移動します。</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/9117502412335055510/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2016/05/windows7-c.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/9117502412335055510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/9117502412335055510'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2016/05/windows7-c.html' title='【Windows7】仮想メモリ ページファイルをCから移動 設定する #三流君 #動画解説'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/eHT6cNZqL1g/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-7533861020497279853</id><published>2016-04-29T00:11:00.001+09:00</published><updated>2016-04-29T00:11:48.182+09:00</updated><title type='text'>Windows10でボイスチェンジのソフト 恋声 を 使ってみた</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;https://www.youtube.com/embed/O46j21OikWM&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;
&lt;br /&gt;
テスト投稿&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/7533861020497279853/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2016/04/windows10.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7533861020497279853'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7533861020497279853'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2016/04/windows10.html' title='Windows10でボイスチェンジのソフト 恋声 を 使ってみた'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/O46j21OikWM/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-7233753925389376233</id><published>2016-04-28T23:56:00.001+09:00</published><updated>2016-04-28T23:56:01.813+09:00</updated><title type='text'>アナタはプログラミング初心者さんですか？と三流プログラマーが聞いてみた #三流君 #動画解説</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;https://www.youtube.com/embed/LcjZagf92fs&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/7233753925389376233/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2016/04/blog-post.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7233753925389376233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7233753925389376233'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2016/04/blog-post.html' title='アナタはプログラミング初心者さんですか？と三流プログラマーが聞いてみた #三流君 #動画解説'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/LcjZagf92fs/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-171957402413182334</id><published>2012-04-16T05:47:00.001+09:00</published><updated>2012-04-16T05:47:02.412+09:00</updated><title type='text'>手作業で JRA IPT 情報メニュー オッズを押してみた。処理の事前確認。</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/pw1N099i39s?fs=1&quot; width=&quot;459&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
ソースコードと解説は下記を見てください。&lt;br /&gt;
1.複数のIEから 情報メニューを選択(画像をクリック)する&lt;br /&gt;
&lt;br /&gt;
1.1 情報メニューを探す&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371629&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371629&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371629&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
1.2 情報メニューを押す&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371757&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371757&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371757&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
2.起動した情報メニュー(新しいIE)を操作する&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371875&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371875&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371875&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
3.開催地を選択する(場所を選択し、決定を押す)&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371968&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371968&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334371968&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
4.オッズのボタンを押す&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372054&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372054&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372054&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
5.レースの選択と種類(単勝や馬連、、３連..)を選択する&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372146&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372146&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372146&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
6.決定ボタンを押す&lt;br /&gt;
&lt;br /&gt;
7.表示されたオッズの表を取得する&lt;br /&gt;
&lt;br /&gt;
7.1 テーブルのソースを探る &lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372354&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372354&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372354&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
7.2 テーブルの左上のデータで確認する 左上が枠番のテーブルを探す &lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372423&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372423&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372423&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
7.3 単勝のオッズをカンマ区切りで出力してみた &lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372520&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372520&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372520&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
8.繰り返す&lt;br /&gt;
&lt;br /&gt;
8.1 1Rから最後まで 次のレースを選択 繰り返す &lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372609&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372609&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372609&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
8.2 開催地・競馬場単位でループさせる&lt;br /&gt;
&lt;br /&gt;
&lt;a class=&quot;yt-uix-redirect-link&quot; dir=&quot;ltr&quot; href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372706&quot; rel=&quot;nofollow&quot; target=&quot;_blank&quot; title=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372706&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/30/?from=1#1334372706&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
手作業で JRA IPT 情報メニュー オッズを押してみた&lt;br /&gt;
そんな、プログラム作成前の確認動画です。&lt;br /&gt;
&lt;br /&gt;
JRA IPAT で オッズの情報を取得する&lt;br /&gt;
&lt;br /&gt;
事前準備、手作業で処理の順番 流れを確認する</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/171957402413182334/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2012/04/jra-ipt_16.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/171957402413182334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/171957402413182334'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2012/04/jra-ipt_16.html' title='手作業で JRA IPT 情報メニュー オッズを押してみた。処理の事前確認。'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/pw1N099i39s/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-1161707625015802319</id><published>2012-04-01T07:15:00.001+09:00</published><updated>2012-04-01T07:15:34.931+09:00</updated><title type='text'>手作業で JRA IPT 情報メニュー オッズを押してみた。処理の事前確認。</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/pw1N099i39s?fs=1&quot; width=&quot;459&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
手作業で JRA IPT 情報メニュー オッズを押してみた&lt;br /&gt;
そんな、プログラム作成前の確認動画です。&lt;br /&gt;
&lt;br /&gt;
前回のログイン処理は &lt;a href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/22&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/22&lt;/a&gt; &lt;br /&gt;
入金処理は &lt;a href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/28&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/28&lt;/a&gt; &lt;br /&gt;
を見てください。&lt;br /&gt;
&lt;br /&gt;
JRA IPAT で オッズの情報を取得する&lt;br /&gt;
事前準備、手作業で処理の順番 流れを確認する&lt;br /&gt;
1.複数のIEから 情報メニューを選択(画像をクリック)する&lt;br /&gt;
2.起動した情報メニュー(新しいIE)を操作する&lt;br /&gt;
3.開催地を選択する(場所を選択し、決定を押す)&lt;br /&gt;
4.オッズのボタンを押す&lt;br /&gt;
5.レースの選択と種類(単勝や馬連、、３連..)を選択する&lt;br /&gt;
6.決定ボタンを押す&lt;br /&gt;
7.表示されたオッズの表を取得する&lt;br /&gt;
8.繰り返す&lt;br /&gt;
次のレースを選択 繰り返す&lt;br /&gt;
次の開催地を選択 繰り返す&lt;br /&gt;
こんな感じかなぁ。&lt;br /&gt;
前回のログイン処理は &lt;a href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/22&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/22&lt;/a&gt; &lt;br /&gt;
入金処理は &lt;a href=&quot;http://ken3hitori.g.hatena.ne.jp/bbs/28&quot;&gt;http://ken3hitori.g.hatena.ne.jp/bbs/28&lt;/a&gt; &lt;br /&gt;
を見てください。</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/1161707625015802319/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2012/04/jra-ipt.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1161707625015802319'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1161707625015802319'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2012/04/jra-ipt.html' title='手作業で JRA IPT 情報メニュー オッズを押してみた。処理の事前確認。'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/pw1N099i39s/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-4839959722810035601</id><published>2012-03-29T15:24:00.001+09:00</published><updated>2012-03-29T15:24:21.817+09:00</updated><title type='text'>Outlook2007 VBA 全てのフォルダーを再帰処理で触ってみた</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;http://www.youtube.com/embed/MHhVIX8Cync?fs=1&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/4839959722810035601/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2012/03/outlook2007-vba.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/4839959722810035601'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/4839959722810035601'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2012/03/outlook2007-vba.html' title='Outlook2007 VBA 全てのフォルダーを再帰処理で触ってみた'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/MHhVIX8Cync/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-7213203737335812699</id><published>2012-03-28T00:31:00.001+09:00</published><updated>2012-03-28T00:31:04.473+09:00</updated><title type='text'>CScript で .vbsを実行してみた</title><content type='html'>&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;270&quot; src=&quot;http://www.youtube.com/embed/g9OWmeeexcQ?fs=1&quot; width=&quot;480&quot;&gt;&lt;/iframe&gt;</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/7213203737335812699/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2012/03/cscript-vbs.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7213203737335812699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7213203737335812699'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2012/03/cscript-vbs.html' title='CScript で .vbsを実行してみた'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/g9OWmeeexcQ/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-8664425537634937442</id><published>2011-09-29T14:12:00.002+09:00</published><updated>2011-09-29T14:12:41.511+09:00</updated><title type='text'>Outlook2010 Vcard形式のアドレス .vcf を連絡先に投げる(ドロップ) テスト</title><content type='html'>&lt;iframe width=&quot;459&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/_Np-V8wO1oM?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
インポートで複数の.vcfを選択できなかったので、&lt;br /&gt;
手作業で、Vcard形式のアドレス .vcf を連絡先にドラックAndドロップしてみました。&lt;br /&gt;
&lt;br /&gt;
実験手順&lt;br /&gt;
アウトルックの連絡先を開きます。&lt;br /&gt;
xxx.vcf ～ zzz.vcf を ファイル複数選択します(ctrl+クリック や Shift+クリック)&lt;br /&gt;
ドラック アンド ドロップ で 上で選択した複数ファイル(.vcf)を連絡先に投げます。&lt;br /&gt;
&lt;br /&gt;
編集状態で連絡先が複数開かれているので、保存して閉じます。&lt;br /&gt;
(ドロップ時に自動で保存してくれればよかったのに、編集状態で複数インポートされてます)&lt;br /&gt;
&lt;br /&gt;
以上、手作業のテストでした。&lt;br /&gt;
(※本当は、VBAマクロでループさせてインポートするのがカッコいいんだけど・・・)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 Outlook2010 Vcard形式 アドレス .vcf 連絡先 ドラックAndドロップ テスト 操作手順 手作業</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/8664425537634937442/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/09/outlook2010-vcard-vcf.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8664425537634937442'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8664425537634937442'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/09/outlook2010-vcard-vcf.html' title='Outlook2010 Vcard形式のアドレス .vcf を連絡先に投げる(ドロップ) テスト'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/_Np-V8wO1oM/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-8482070162731711978</id><published>2011-09-23T18:12:00.000+09:00</published><updated>2011-09-23T18:12:03.912+09:00</updated><title type='text'>10分でできる Windows7 記憶域 ディスクの管理 Cドライブを縮小して分割する</title><content type='html'>10分でできる Windows7 記憶域 ディスクの管理 Cドライブを縮小して分割する&lt;br /&gt;
&lt;br /&gt;
&lt;iframe width=&quot;459&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/174uSKALmfc?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
Windows7 管理から、記憶域 ディスクの管理 を 選択後、&lt;br /&gt;
Cドライブを縮小してみた そんなテスト動画です。&lt;br /&gt;
&lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110923&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110923&lt;/a&gt;に 静止画と解説載せました。音がうるさい時はこちらを見てください・・・&lt;br /&gt;
&lt;br /&gt;
※実行前に 万が一、 千が１ 百回に一回の失敗があると困るので、バックアップを取ってから実行してみてください。&lt;br /&gt;
&lt;br /&gt;
何かの参考となれば、幸いです。&lt;br /&gt;
(※PC購入時、パーテーションの分割料金をケチってHDD全体をCドライブとして割り当てられた時、そんな時に使ってみてください。)&lt;br /&gt;
&lt;br /&gt;
タグ:&lt;br /&gt;
10分でできる 三流君 Windows7 管理 記憶域 ディスクの管理 Cドライブを縮小 パーテーション 分割 テスト動画 windows computer</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/8482070162731711978/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/09/10-windows7-c.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8482070162731711978'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8482070162731711978'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/09/10-windows7-c.html' title='10分でできる Windows7 記憶域 ディスクの管理 Cドライブを縮小して分割する'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/174uSKALmfc/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-2674748119827686008</id><published>2011-09-12T03:46:00.002+09:00</published><updated>2011-09-12T03:46:52.415+09:00</updated><title type='text'>Outlook 2007 アウトルック オプション 直ちに送信する</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/YswBr1Bgb6I?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
終了時に未送信確認メッセージが出てしまったので、&lt;br /&gt;
&lt;br /&gt;
ツール メールセットアップ 送受信&lt;br /&gt;
で&lt;br /&gt;
□接続したら直ちに送信する&lt;br /&gt;
を選択して、すぐに送信するように設定した。&lt;br /&gt;
&lt;br /&gt;
が、&lt;br /&gt;
オプションを変更しても不安定だったので、&lt;br /&gt;
Application.Wait (Execel VBA)&lt;br /&gt;
で５秒待ってみた。&lt;br /&gt;
&lt;br /&gt;
そんな試行錯誤のテスト動画です・・・&lt;br /&gt;
&lt;br /&gt;
ソースコードは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110912&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110912&lt;/a&gt;を見てください。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
QA20110912 三流君 Outlook 2007 アウトルック オプション 接続したら直ちに送信する VBA テスト</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/2674748119827686008/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/09/outlook-2007.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/2674748119827686008'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/2674748119827686008'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/09/outlook-2007.html' title='Outlook 2007 アウトルック オプション 直ちに送信する'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/YswBr1Bgb6I/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-1233856591935917439</id><published>2011-08-28T19:46:00.000+09:00</published><updated>2011-08-28T19:46:49.691+09:00</updated><title type='text'>VBS IE操作 confirm確認メッセージを無効にする小細工</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/SHyTGwhkNyI?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
VBS(WSH)で、confirm確認メッセージをつぶしてから、&lt;br /&gt;
ボタンをクリックして処理を行いました。&lt;br /&gt;
&lt;br /&gt;
小細工で同名の関数を.createElement SCRIPTで作成して、&lt;br /&gt;
.appendChildで追加&lt;br /&gt;
そんな感じです。&lt;br /&gt;
&lt;br /&gt;
ソースコードと全体の流れは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110828&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110828 &lt;/a&gt;を見てください&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 IE操作 VBS JRA IPAT テスト 試行錯誤 confirm 確認メッセージ 無効 .createElement SCRIPT .appendChild&lt;br /&gt;
&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/1233856591935917439/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-confirm.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1233856591935917439'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1233856591935917439'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-confirm.html' title='VBS IE操作 confirm確認メッセージを無効にする小細工'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/SHyTGwhkNyI/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-7252162121941608778</id><published>2011-08-28T19:44:00.000+09:00</published><updated>2011-08-28T19:44:35.434+09:00</updated><title type='text'>VBS IE操作 .Valueで値をセット .Clickでボタンを押す JRA入出金メニュー</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/Fqzd_nTly6k?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
VBS(WSH)で、名前の付いた項目に値をセットして、ボタンをクリックしてみたいと思います。&lt;br /&gt;
&lt;br /&gt;
input type=text は、 名前を指定して .Value に 値をセット&lt;br /&gt;
type=BUTTON の ボタンは、名前を指定して .Click で ボタンを押しました。&lt;br /&gt;
&lt;br /&gt;
HTMLの入力項目やボタンにName=と名前が付いていると楽だなぁ・・と思いつつ。。。。&lt;br /&gt;
&lt;br /&gt;
ソースコードと全体の流れは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110828&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110828 &lt;/a&gt;を見てください&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 IE操作 VBS JRA IPAT テスト 試行錯誤 ボタン type=BUTTON .Click 金額 type=text .Value&lt;br /&gt;
&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/7252162121941608778/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-value-click-jra.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7252162121941608778'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7252162121941608778'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-value-click-jra.html' title='VBS IE操作 .Valueで値をセット .Clickでボタンを押す JRA入出金メニュー'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/Fqzd_nTly6k/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-7219213842001295534</id><published>2011-08-28T19:41:00.002+09:00</published><updated>2011-08-28T19:41:57.743+09:00</updated><title type='text'>VBS IE操作 name=MENU1 の ボタンを押す JRA入出金メニュー 入金指示</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/_sRquYEBHcM?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
VBS(WSH)で、名前の付いたボタンをクリックしてみたいと思います。&lt;br /&gt;
&lt;br /&gt;
同じように、入出金メニュー(新しく開いたIE)を探してから、&lt;br /&gt;
name=MENU1 と 名前が付いているので&lt;br /&gt;
.Clickしてみた、そんな感じてす。&lt;br /&gt;
&lt;br /&gt;
ソースコードと全体の流れは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110828&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110828 &lt;/a&gt;を見てください&lt;br /&gt;
&lt;br /&gt;
三流君 IE操作 VBS JRA IPAT テスト 試行錯誤 ボタン BUTTON .Click </content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/7219213842001295534/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-namemenu1-jra.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7219213842001295534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/7219213842001295534'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-namemenu1-jra.html' title='VBS IE操作 name=MENU1 の ボタンを押す JRA入出金メニュー 入金指示'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/_sRquYEBHcM/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-1705625385202090025</id><published>2011-08-28T19:40:00.000+09:00</published><updated>2011-08-28T19:40:25.763+09:00</updated><title type='text'>VBS IE操作 リンク先を調べ クリックする</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/Yk347rMLvVc?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
VBS(WSH)で、IEのドキュメントからリンク先を調べてクリックしてみたいと思います。&lt;br /&gt;
&lt;br /&gt;
.getElementsByTagName で Aのタグを集めます&lt;br /&gt;
.Lengthで集めた数がわかるので、&lt;br /&gt;
For n = 0 To objA.Length - 1のループを作ります。&lt;br /&gt;
objA(n).OuterHTML で n番目のHTMLソースを取得できます。&lt;br /&gt;
&lt;br /&gt;
あとは、見つけたらクリックじゃないけど、&lt;br /&gt;
見つけるのに、InStr関数を使ったりして、見つけ、&lt;br /&gt;
そして、objA(n).Click  でクリックしました。&lt;br /&gt;
&lt;br /&gt;
ソースコードと全体の流れは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110828&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110828&lt;/a&gt;を見てください&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 IE操作 VBS JRA IPAT テスト 試行錯誤 .getElementsByTagName .OuterHTML InStr .Click &lt;br /&gt;
&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/1705625385202090025/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1705625385202090025'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1705625385202090025'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie.html' title='VBS IE操作 リンク先を調べ クリックする'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/Yk347rMLvVc/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-1866769256003196930</id><published>2011-08-28T19:38:00.000+09:00</published><updated>2011-08-28T19:38:36.502+09:00</updated><title type='text'>VBS IE操作 表示されているIEをURLを条件に探す</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/Uvq4s4ylftA?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
ソースコードと全体の流れは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110828&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110828 &lt;/a&gt;を見てください&lt;br /&gt;
&lt;br /&gt;
VBS(WSH)から表示されているIEをURLを条件に探してみたいと思います。&lt;br /&gt;
&lt;br /&gt;
CreateObject Shell.Application で シェルのオブジェクトを作成して、&lt;br /&gt;
For Each objWindow In objShell.Windows で 1つ1つ取り出して、&lt;br /&gt;
TypeName(objWindow.document) で ドキュメントのタイプを表示させてみました。&lt;br /&gt;
&lt;br /&gt;
TypeName(objWindow.document) が HTMLDocument だったら、&lt;br /&gt;
MsgBox objWindow.document.Title &amp; vbCrLf &amp; objWindow.document.URL&lt;br /&gt;
で、タイトルとURLを確認してみました。&lt;br /&gt;
&lt;br /&gt;
あとは、.URLの値を比べ&lt;br /&gt;
Set objIE = objWindow で見つけたオブジェクトをセットしただけでした。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 IE操作 VBS JRA IPAT テスト 試行錯誤 CreateObject Shell.Application document.URL&lt;br /&gt;
&lt;br /&gt;
</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/1866769256003196930/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-ieurl.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1866769256003196930'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/1866769256003196930'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/08/vbs-ie-ieurl.html' title='VBS IE操作 表示されているIEをURLを条件に探す'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/Uvq4s4ylftA/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-6157512877284243444</id><published>2011-08-24T01:22:00.000+09:00</published><updated>2011-08-24T01:22:22.600+09:00</updated><title type='text'>三流君 IE操作 起動済みIE、操作済み、既存の表示済みＷＥＢ画面を操作</title><content type='html'>&lt;iframe width=&quot;480&quot; height=&quot;295&quot; src=&quot;http://www.youtube.com/embed/po2IeQtSwaw?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
YouTubeで見る → &lt;a href=&quot;http://www.youtube.com/watch?v=po2IeQtSwaw&quot;&gt;http://www.youtube.com/watch?v=po2IeQtSwaw&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;説明&lt;/b&gt;&lt;br /&gt;
既存の表示済みＷＥＢ画面を操作したかったので、&lt;br /&gt;
&lt;br /&gt;
Shell.Application で 管理されている&lt;br /&gt;
.Windows を For Each で 1つ1つ取り出し、&lt;br /&gt;
TypeNameでタイプを探る。&lt;br /&gt;
&lt;br /&gt;
タイプが If TypeName(objWindow.document) = HTMLDocument なら、&lt;br /&gt;
次に&lt;br /&gt;
URLを探す&lt;br /&gt;
If objWindow.document.URL で判断 &lt;br /&gt;
URLが一致したら、変数objIEに保存する ( Set objIE = objWindow   &#39;代入する  )&lt;br /&gt;
&lt;br /&gt;
目的のIEが↑で見つかったかを&lt;br /&gt;
If objIE Is Nothing Then&lt;br /&gt;
でチェックして、見つからない時は Exit Sub&lt;br /&gt;
&lt;br /&gt;
見つかったら、項目(Name=MEMO)にデータをセットする&lt;br /&gt;
セット後、登録ボタンを押す&lt;br /&gt;
&lt;br /&gt;
こんな感じの流れです。&lt;br /&gt;
&lt;br /&gt;
ソースコードは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110823/1314115156&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110823/1314115156&lt;/a&gt;を見てください。&lt;br /&gt;
&lt;br /&gt;
三流君 VBA IE操作 起動済みIE 操作済みIE 既存IE 試行錯誤 テスト デバッグ Shell.Application .Windows document.URL</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/6157512877284243444/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/08/ie-ie.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/6157512877284243444'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/6157512877284243444'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/08/ie-ie.html' title='三流君 IE操作 起動済みIE、操作済み、既存の表示済みＷＥＢ画面を操作'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/po2IeQtSwaw/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-4772761477051490329</id><published>2011-08-01T23:37:00.000+09:00</published><updated>2011-08-01T23:37:48.454+09:00</updated><title type='text'>30分でわかる Excel VBAでIE操作 はじめの一歩 参照設定してね</title><content type='html'>&lt;iframe width=&quot;480&quot; height=&quot;295&quot; src=&quot;http://www.youtube.com/embed/hW4Dc8UV9k8?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
ごめんなさい、録音ミスで無音です。&lt;br /&gt;
まぁ、画面の動きを見て、あっこんなことできるんだぁ・・・&lt;br /&gt;
程度に見てください。&lt;br /&gt;
&lt;br /&gt;
解説のTOPは &lt;a href=&quot;http://www.ken3.org/cgi-bin/group/vba_ie.asp&quot;&gt;http://www.ken3.org/cgi-bin/group/vba_ie.asp&lt;/a&gt; を見てください。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 30分でわかる Excel VBA IE操作 はじめの一歩 参照設定 As HTMLDocument HTMLFormElement HTMLInputElement</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/4772761477051490329/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/08/30-excel-vbaie.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/4772761477051490329'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/4772761477051490329'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/08/30-excel-vbaie.html' title='30分でわかる Excel VBAでIE操作 はじめの一歩 参照設定してね'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/hW4Dc8UV9k8/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-8356252426145736911</id><published>2011-07-30T17:00:00.000+09:00</published><updated>2011-07-30T17:00:46.467+09:00</updated><title type='text'>三流君 IE操作 .Document.Script.setTimeout をテスト その２</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/HvaZB6zZSLI?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
ボタンに割り当てられたJavaScriptを実行したかったので、&lt;br /&gt;
.Document.Script.setTimeout &quot;javascript:xxxx関数直接コール;&quot;, 1000  &lt;br /&gt;
のテストを兼ねて実験してみました。&lt;br /&gt;
&lt;br /&gt;
ソースコードは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110730/1312012493&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110730/1312012493&lt;/a&gt;を 見てください。&lt;br /&gt;
(※ &lt;a href=&quot;http://www.ken3.org/cgi-bin/group/vba_ie_script.asp&quot;&gt;http://www.ken3.org/cgi-bin/group/vba_ie_script.asp&lt;/a&gt;も 合せてみてください。)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 IE操作 JavaScript実行 .Document.Script.setTimeout テスト結果 試行錯誤</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/8356252426145736911/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/07/ie-documentscriptsettimeout.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8356252426145736911'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/8356252426145736911'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/07/ie-documentscriptsettimeout.html' title='三流君 IE操作 .Document.Script.setTimeout をテスト その２'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/HvaZB6zZSLI/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-984535485227262639</id><published>2011-07-22T23:51:00.002+09:00</published><updated>2011-07-22T23:51:47.566+09:00</updated><title type='text'>VBS IE操作 楽天ツールバー使用時の自動ログイン処理をテスト／デバッグ</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/DMu7a8nlCuI?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
コードは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110722/1311345764&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110722/1311345764&lt;/a&gt; を見てください。&lt;br /&gt;
読者より、すばやいレス・質問が来たので、テスト／デバッグしてみました。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 VBS IE操作 楽天市場 ログイン処理 テスト デバッグ</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/984535485227262639/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/07/vbs-ie_22.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/984535485227262639'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/984535485227262639'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/07/vbs-ie_22.html' title='VBS IE操作 楽天ツールバー使用時の自動ログイン処理をテスト／デバッグ'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/DMu7a8nlCuI/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-215232123290016418</id><published>2011-07-21T20:36:00.000+09:00</published><updated>2011-07-21T20:36:07.918+09:00</updated><title type='text'>VBS で IEを操作して 楽天に自動でログインするスクリプトを作成 テスト</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/rWRiG-DP_ms?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
コードは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110721&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110721&lt;/a&gt;に置いておくので、実験してみてください。&lt;br /&gt;
&lt;br /&gt;
VBS から IEを使用して、&lt;br /&gt;
楽天市場にログインするスクリプトを作成してみたいと思います&lt;br /&gt;
作成の流れは、&lt;br /&gt;
1.ログインページのソースを確認&lt;br /&gt;
2.データをセット&lt;br /&gt;
3.ログインのボタンを押す&lt;br /&gt;
を作成してテストしてみました。&lt;br /&gt;
&lt;br /&gt;
三流君 VBS IE操作 楽天 自動ログイン スクリプト .getElementsByName .getElementsByTagName .Click InStr</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/215232123290016418/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/07/vbs-ie.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/215232123290016418'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/215232123290016418'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/07/vbs-ie.html' title='VBS で IEを操作して 楽天に自動でログインするスクリプトを作成 テスト'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/rWRiG-DP_ms/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2331353154849483999.post-4681605351057745928</id><published>2011-07-16T08:20:00.000+09:00</published><updated>2011-07-16T08:20:27.311+09:00</updated><title type='text'>三流君 IE操作 VBSでJRA-IPATログインを例題に新しいウインドウを処理</title><content type='html'>&lt;iframe width=&quot;425&quot; height=&quot;344&quot; src=&quot;http://www.youtube.com/embed/jqbCQEh37PI?fs=1&quot; frameborder=&quot;0&quot; allowFullScreen=&quot;&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;br /&gt;
ソースは &lt;a href=&quot;http://d.hatena.ne.jp/ken3memo/20110716&quot;&gt;http://d.hatena.ne.jp/ken3memo/20110716&lt;/a&gt; を見てください。&lt;br /&gt;
JRA IPATログインを例題にして、新しいウインドウ(IE)を取得してみました。&lt;br /&gt;
と言っても、手抜きの&lt;br /&gt;
objShell.Windows(objShell.Windows.Count - 1)&lt;br /&gt;
を最後のウインドウと決めつけセットしただけですが...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
三流君 IE操作 VBS JRA IPATログイン 新しいウインドウ Shell.Application Windows.Count 試行錯誤 テスト</content><link rel='replies' type='application/atom+xml' href='http://ken3memo.blogspot.com/feeds/4681605351057745928/comments/default' title='コメントの投稿'/><link rel='replies' type='text/html' href='http://ken3memo.blogspot.com/2011/07/ie-vbsjra-ipat.html#comment-form' title='0 件のコメント'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/4681605351057745928'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2331353154849483999/posts/default/4681605351057745928'/><link rel='alternate' type='text/html' href='http://ken3memo.blogspot.com/2011/07/ie-vbsjra-ipat.html' title='三流君 IE操作 VBSでJRA-IPATログインを例題に新しいウインドウを処理'/><author><name>三流君 Ken3</name><uri>http://www.blogger.com/profile/02145447418546632676</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/jqbCQEh37PI/default.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>