<?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/oresenyou/">
    <title>mfgd @ wiki</title>
    <link>http://w.atwiki.jp/oresenyou/</link>
    <atom:link href="https://w.atwiki.jp/oresenyou/rss10.xml" rel="self" type="application/rss+xml" />
    <atom:link rel="hub" href="https://pubsubhubbub.appspot.com" />
    <description>mfgd @ wiki</description>

    <dc:language>ja</dc:language>
    <dc:date>2009-04-03T16:53:27+09:00</dc:date>
    <utime>1238745207</utime>

    <items>
      <rdf:Seq>
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/15.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/14.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/13.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/12.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/11.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/10.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/9.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/8.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/7.html" />
                <rdf:li rdf:resource="https://w.atwiki.jp/oresenyou/pages/6.html" />
              </rdf:Seq>
    </items>
	
		
    
  </channel>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/15.html">
    <title>FileSystemObjectを利用したファイル存在チェック</title>
    <link>https://w.atwiki.jp/oresenyou/pages/15.html</link>
    <description>
          Private Function FilePassExtChk(ByVal strPass As String) As String

        Dim fs As New Scripting.FileSystemObject
        Dim strResult As String = String.Empty
        Try
            If False = fs.FileExists(strPass) Then
                strResult = &quot;ファイルが見つかりませんでした&quot;
            End If

            If Not IsNothing(fs) Then
                fs = Nothing
            End If
        Catch ex As Exception
            pvLogging.WriteLog(ex.Message, enumログタイプ.TYPE_ERROR)
        End Try

        Return strResult

    End Function

※FileSystemObjectを使用する際にはscrrun.dllの参照設定を行う必要有。
ネットワークパス指定も正常であることを確認済み（2009/04/03）
VB2008で動作確認済み。    </description>
    <dc:date>2009-04-03T16:53:27+09:00</dc:date>
    <utime>1238745207</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/14.html">
    <title>漢字・ひらがなチェック</title>
    <link>https://w.atwiki.jp/oresenyou/pages/14.html</link>
    <description>
      Private Function KanjiChk(ByVal strStr As String) As Boolean
    
    &#039;全角文字、全角英数字が1文字でもヒットした場合エラー
    If Regex.IsMatch(strStr, &quot;[一-龠]+|[ぁ-ん]+|[ァ-ヴ]+]+|[ａ-ｚＡ-Ｚ０-９]+&quot;) Then Return False

End Function

これ使うには【Imports System.Text.RegularExpressions】する必要有。




VBは文字コードにUnicodeを採用しているらしい。

Unicodeの漢字の正規表現は、
【[一-龠]+|[ぁ-ん]+|[ァ-ヴ]+]+|[ａ-ｚＡ-Ｚ０-９]+】でほぼ間違いないらしい。
参考URL：http://d.hatena.ne.jp/toton/20051102/1130971334


2009/04/01：vb2008で動作確認済み    </description>
    <dc:date>2009-04-03T16:37:38+09:00</dc:date>
    <utime>1238744258</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/13.html">
    <title>正規表現による日本語のチェック</title>
    <link>https://w.atwiki.jp/oresenyou/pages/13.html</link>
    <description>
      Private Function KanjiChk(ByVal strStr As String) As Boolean    
    &#039;全角文字、全角英数字が1文字でもヒットした場合エラー
    If Regex.IsMatch(strStr, &quot;[一-龠]+|[ぁ-ん]+|[ァ-ヴ]+]+| _ 
                                    [ａ-ｚＡ-Ｚ０-９]+&quot;) Then Return False
End Function


これ使うには【Imports System.Text.RegularExpressions】する必要有。

VBは文字コードにUnicodeを採用しているらしい。

Unicodeの漢字の正規表現は、【[一-龠]+|[ぁ-ん]+|[ァ-ヴ]+]+|[ａ-ｚＡ-Ｚ０-９]+】でほぼ間違いないらしい。
参考URL：http://d.hatena.ne.jp/toton/20051102/1130971334


2009/04/01：vb2008で動作確認済み    </description>
    <dc:date>2009-04-02T08:57:51+09:00</dc:date>
    <utime>1238630271</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/12.html">
    <title>SQLSERVER2005に接続できません。</title>
    <link>https://w.atwiki.jp/oresenyou/pages/12.html</link>
    <description>
      SQLSERVER2005 に接続できません。(信頼関係接続のエラー)
 
------------------------------
ADDITIONAL INFORMATION:
 
ユーザー &#039;&#039; はログインできませんでした。このユーザーは SQL Server の信頼関係接続と関連付けられていません。 (Microsoft SQL Server、エラー: 18452)
 
ヘルプを表示するには http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;EvtSrc=MSSQLServer&amp;EvtID=18452&amp;LinkId=20476 をクリック



原因：
対応するSERVERに接続する際に使用する、パスワードを記憶させていなかったため、
ユーザーが認識できなかったのではないかと思われる。

対処
エクスプローラから対象サーバに接続
ユーザ名、パスワードを入力し記憶させる。    </description>
    <dc:date>2009-03-16T22:47:42+09:00</dc:date>
    <utime>1237211262</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/11.html">
    <title>プラグイン/コメント</title>
    <link>https://w.atwiki.jp/oresenyou/pages/11.html</link>
    <description>
      * コメントプラグイン
@wikiのwikiモードでは
 #comment()
と入力することでコメントフォームを簡単に作成することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_60_ja.html


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

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

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

-----


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


#bf(ゲーム)
    </description>
    <dc:date>2009-03-16T08:57:07+09:00</dc:date>
    <utime>1237161427</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/9.html">
    <title>プラグイン</title>
    <link>https://w.atwiki.jp/oresenyou/pages/9.html</link>
    <description>
      @wikiにはいくつかの便利なプラグインがあります。

-----


#ls

-----

これ以外のプラグインについては@wikiガイドをご覧ください
=&gt;http://atwiki.jp/guide/
    </description>
    <dc:date>2009-03-16T08:57:07+09:00</dc:date>
    <utime>1237161427</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/8.html">
    <title>プラグイン/動画(Youtube)</title>
    <link>https://w.atwiki.jp/oresenyou/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>2009-03-16T08:57:07+09:00</dc:date>
    <utime>1237161427</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/7.html">
    <title>プラグイン/アーカイブ</title>
    <link>https://w.atwiki.jp/oresenyou/pages/7.html</link>
    <description>
      * アーカイブ
@wikiのwikiモードでは
 #archive_log()
と入力することで、特定のウェブページを保存しておくことができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/25_171_ja.html


-----


たとえば、#archive_log()と入力すると以下のように表示されます。
保存したいURLとサイト名を入力して&quot;アーカイブログ&quot;をクリックしてみよう


#archive_log()
    </description>
    <dc:date>2009-03-16T08:57:07+09:00</dc:date>
    <utime>1237161427</utime>
  </item>
    <item rdf:about="https://w.atwiki.jp/oresenyou/pages/6.html">
    <title>プラグイン/編集履歴</title>
    <link>https://w.atwiki.jp/oresenyou/pages/6.html</link>
    <description>
      * 更新履歴
@wikiのwikiモードでは
 #recent(数字)
と入力することで、wikiのページ更新履歴を表示することができます。
詳しくはこちらをご覧ください。
＝＞http://atwiki.jp/guide/17_117_ja.html


-----


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


#recent(20)
    </description>
    <dc:date>2009-03-16T08:57:07+09:00</dc:date>
    <utime>1237161427</utime>
  </item>
  </rdf:RDF>
