<?xml version="1.0" encoding="UTF-8" ?><rdf:RDF 
  xmlns="http://purl.org/rss/1.0/"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:atom="http://www.w3.org/2005/Atom"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xml:lang="ja">
  <channel rdf:about="http://w.atwiki.jp/exceltips/">
    <title>exceltips @ ウィキ</title>
    <link>http://w.atwiki.jp/exceltips/</link>
    <atom:link href="https://w.atwiki.jp/exceltips/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>exceltips @ ウィキ</description>

    <dc:language>ja</dc:language>
    <dc:date>2012-02-11T13:55:50+09:00</dc:date>
    <utime>1328936150</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/2.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/1.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/exceltips/pages/8.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/15.html">
    <title>ブックを開く（名前を指定）</title>
    <link>https://w.atwiki.jp/exceltips/pages/15.html</link>
    <description>
      ----------------------------------------------------------------

Sub Sample7()

Dim buf As String
Dim wb As Workbook
Dim OpenFile As String
Dim OpenFilename As String
Dim CutPoint As Long
Dim FilePath As String
Dim FileName As String
Dim FileLen  As Long

OpenFile = Application.GetOpenFilename(&quot;Microsoft Excelブック,*.xls&quot;)

If OpenFile &lt;&gt; &quot;False&quot; Then
    
    CutPoint = InStrRev(OpenFile, &quot;\&quot;)
    FileLen = Len(OpenFile) - CutPoint
    OpenFilename = Right(OpenFile, FileLen)
    
    For Each wb In Workbooks
        If wb.Name = OpenFilename Then
            MsgBox OpenFilename &amp; vbCrLf &amp; &quot;はすでに開いています&quot;, vbExclamation
            Exit Sub
        End If
    Next wb
    
    Workbooks.Open OpenFile
Else
    MsgBox OpenFilename &amp; vbCrLf &amp; &quot;は存在しません&quot;, vbExclamation
    Exit Sub
End If

End Sub

----------------------------------------------------------------    </description>
    <dc:date>2012-02-11T13:55:50+09:00</dc:date>
    <utime>1328936150</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/14.html">
    <title>フォルダ名取得</title>
    <link>https://w.atwiki.jp/exceltips/pages/14.html</link>
    <description>
      ◆FileDialogオブジェクト
----------------------------------------------------------------
Sub Sample1()
    With Application.FileDialog(msoFileDialogFolderPicker)
    If .Show = True Then
        MsgBox .SelectedItems(1)
    End If
    End With
End Sub
----------------------------------------------------------------    </description>
    <dc:date>2012-02-11T13:01:00+09:00</dc:date>
    <utime>1328932860</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/2.html">
    <title>メニュー</title>
    <link>https://w.atwiki.jp/exceltips/pages/2.html</link>
    <description>
      **tips
-[[変数のデータ型]]
-[[フォルダ名取得]]
-[[ブックを開く（名前を指定）]]
----

**リンク
-[[Office TANAKA&gt;&gt;http://officetanaka.net/]]
-[[☆ Excelでお仕事！&gt;&gt;http://www.asahi-net.or.jp/~ef2o-inue/top01.html]]

-[[価格.com&gt;&gt;http://kakaku.com/]]
-[[coneco.net&gt;&gt;http://www.coneco.net/]]

// リンクを張るには &quot;[&quot; 2つで文字列を括ります。
// &quot;&gt;&quot; の左側に文字、右側にURLを記述するとリンクになります


//**更新履歴
//#recent(20)

&amp;link_editmenu(text=ここを編集)    </description>
    <dc:date>2012-02-11T12:54:55+09:00</dc:date>
    <utime>1328932495</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/1.html">
    <title>トップページ</title>
    <link>https://w.atwiki.jp/exceltips/pages/1.html</link>
    <description>
      ニュース
------
google pickup
#showrss(http://news.google.com/news?hl=ja&amp;ned=us&amp;ie=UTF-8&amp;oe=UTF-8&amp;output=rss&amp;topic=ir)
------
google technoogy
#showrss(http://news.google.com/news?hl=ja&amp;ned=us&amp;ie=UTF-8&amp;oe=UTF-8&amp;output=rss&amp;topic=t)
------    </description>
    <dc:date>2012-02-11T12:05:06+09:00</dc:date>
    <utime>1328929506</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/13.html">
    <title>変数のデータ型</title>
    <link>https://w.atwiki.jp/exceltips/pages/13.html</link>
    <description>
      |データ型  |使用メモリ|値の範囲|	
|バイト型 (Byte)|1 バイト|0 ～ 255|
|ブール型 (Boolean)|2 バイト|真 (True) または偽 (False)|
|整数型 (Integer)|2 バイト|-32,768 ～ 32,767|
|長整数型 (Long)|4 バイト|Integerより大きい整数（ -2,147,483,648 ～ 2,147,483,647）を扱う|
|単精度浮動小数点数型 (Single)|4 バイト|小数点を含む数値-3.402823E38 ～ -1.401298E-45 (負の値) 1.401298E-45 ～ 3.402823E38 (正の値)|
|倍精度浮動小数点数型 (Double)|8 バイト|Singleよりも桁の大きい実数|
|通貨型 (Currency)|8 バイト|Longよりも桁の大きな小数点を含む数値を扱う|
|日付型 (Date)|8 バイト|西暦 100 年 1 月 1 日～西暦 9999 年 12 月 31 日|
|文字列型 (String)(可変長)|0 バイト|+ 文字列の長さ 0 ～ 2GB|
|オブジェクト型 (Object)|4 バイト|オブジェクトを参照するデータ型|
|バリアント型 (Variant) (数値)|6 バイト|倍精度浮動小数点数型の範囲と同じ|    </description>
    <dc:date>2012-02-11T10:39:50+09:00</dc:date>
    <utime>1328924390</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/12.html">
    <title>プラグイン/人気商品一覧</title>
    <link>https://w.atwiki.jp/exceltips/pages/12.html</link>
    <description>
      * 人気商品一覧
@wikiのwikiモードでは
 #price_list(カテゴリ名)
と入力することで、あるカテゴリの売れ筋商品のリストを表示することができます。

カテゴリには以下のキーワードがご利用できます。
|キーワード|表示される内容|
|ps3|PlayStation3|
|ps2|PlayStation3|
|psp|PSP|
|wii|Wii|
|xbox|XBOX|
|nds|Nintendo DS|
|desctop-pc|デスクトップパソコン|
|note-pc|ノートパソコン|
|mp3player|デジタルオーディオプレイヤー|
|kaden|家電|
|aircon|エアコン|
|camera|カメラ|
|game-toy|ゲーム・おもちゃ全般|
|all|指定無し|

空白の場合はランダムな商品が表示されます。

※このプラグインは[[価格比較サイト@PRICE&gt;&gt;http://atprice.jp]]のデータを利用しています。

-----

たとえば、
 #price_list(game-toy)
と入力すると以下のように表示されます。

ゲーム・おもちゃ全般の売れ筋商品
#price_list(game-toy)

ノートパソコンの売れ筋商品
#price_list(game-toy)

人気商品リスト
#price_list()
    </description>
    <dc:date>2012-02-11T10:13:51+09:00</dc:date>
    <utime>1328922831</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/exceltips/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


-----
たとえば、#comment() と入力すると以下のように表示されます。

#comment    </description>
    <dc:date>2012-02-11T10:13:51+09:00</dc:date>
    <utime>1328922831</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/10.html">
    <title>プラグイン/関連ブログ</title>
    <link>https://w.atwiki.jp/exceltips/pages/10.html</link>
    <description>
      * 関連ブログ
@wikiのwikiモードでは
 #bf(興味のある単語)
と入力することで、あるキーワードに関連するブログ一覧を表示することができます

詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_161_ja.html

-----


たとえば、#bf(ゲーム)と入力すると以下のように表示されます。


#bf(ゲーム)
    </description>
    <dc:date>2012-02-11T10:13:51+09:00</dc:date>
    <utime>1328922831</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/9.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/exceltips/pages/9.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2012-02-11T10:13:51+09:00</dc:date>
    <utime>1328922831</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/exceltips/pages/8.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/exceltips/pages/8.html</link>
    <description>
      * 動画(youtube)
@wikiのwikiモードでは
 #video(動画のURL)
と入力することで、動画を貼り付けることが出来ます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_209_ja.html

また動画のURLはYoutubeのURLをご利用ください。
＝＞http://www.youtube.com/

-----


たとえば、#video(http://youtube.com/watch?v=kTV1CcS53JQ)と入力すると以下のように表示されます。


#video(http://youtube.com/watch?v=kTV1CcS53JQ)

    </description>
    <dc:date>2012-02-11T10:13:51+09:00</dc:date>
    <utime>1328922831</utime>
  </item>
  </rdf:RDF>
