Changeset 23890

Show
Ignore:
Timestamp:
11/17/08 13:58:34 (5 years ago)
Author:
takeshik
Message:

ライセンス告知の追加 (分割コミット) 完了

Location:
lang/vb2005/Tween/Tween
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • lang/vb2005/Tween/Tween/Setting.vb

    r23163 r23890  
     1' Tween - Client of Twitter 
     2' Copyright © 2007-2008 kiri_feather (@kiri_feather) <kiri_feather@gmail.com> 
     3'           © 2008      Moz (@syo68k) <http://iddy.jp/profile/moz/> 
     4'           © 2008      takeshik (@takeshik) <http://www.takeshik.org/> 
     5' All rights reserved. 
     6'  
     7' This file is part of Tween. 
     8'  
     9' This program is free software; you can redistribute it and/or modify it 
     10' under the terms of the GNU General Public License as published by the Free 
     11' Software Foundation; either version 3 of the License, or (at your option) 
     12' any later version. 
     13'  
     14' This program is distributed in the hope that it will be useful, but 
     15' WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
     16' or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 
     17' for more details.  
     18'  
     19' You should have received a copy of the GNU General Public License along 
     20' with this program. If not, see <http://www.gnu.org/licenses/>, or write to 
     21' the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, 
     22' Boston, MA 02110-1301, USA. 
     23 
    124Imports System.Xml 
    225 
     
    165188        Else 
    166189            xdocument.AppendChild(xdocument.CreateXmlDeclaration("1.0", "utf-8", Nothing)) 
    167             xdocument.AppendChild(xdocument.CreateComment("���̐ݒ��@�C����Tween �ɂ������������������B�蓮�ŕύX���Ȃ��ł��������B")) 
     190            xdocument.AppendChild(xdocument.CreateComment("この設定ファイルは Tween により自動生成されました。手動で変更しないでください。")) 
    168191            xdocument.AppendChild(xdocument.CreateElement("tween-configuration")) 
    169192            xdocument.Save(fileName) 
     
    193216           Password.Text.Trim = "" Then 
    194217            Me.DialogResult = Windows.Forms.DialogResult.Cancel 
    195             MessageBox.Show("���[�U�[���ƃp�X���[�h��肵�Ă��������B") 
     218            MessageBox.Show("ユーザー名とパスワードを指定してください。") 
    196219            Exit Sub 
    197220        End If 
    198221        If Username.Text.Contains("@") Then 
    199222            Me.DialogResult = Windows.Forms.DialogResult.Cancel 
    200             MessageBox.Show("���[�U�[���Ɂw@�x��߂Ȃ��ł��������B�i���[���A�h���X�s�j") 
     223            MessageBox.Show("ユーザー名に『@』を含めないでください。(メールアドレス不可)") 
    201224            Exit Sub 
    202225        End If 
     
    312335 
    313336        Catch ex As Exception 
    314             MessageBox.Show("�ݒ��Ɍ����������B") 
     337            MessageBox.Show("設定値に誤りがあります。") 
    315338            Me.DialogResult = Windows.Forms.DialogResult.Cancel 
    316339            Exit Sub 
     
    454477            prd = CType(TimelinePeriod.Text, Integer) 
    455478        Catch ex As Exception 
    456             MessageBox.Show("�X�V�Ԋu�ɂ͐��l�i0�܂���5�`600�j��肵�Ă��������B") 
     479            MessageBox.Show("更新間隔には数値(0または15~600)を指定してください。") 
    457480            e.Cancel = True 
    458481            Exit Sub 
     
    460483 
    461484        If prd <> 0 And (prd < 15 Or prd > 600) Then 
    462             MessageBox.Show("�X�V�Ԋu�ɂ͐��l�i0�܂���5�`600�j��肵�Ă��������B") 
     485            MessageBox.Show("更新間隔には数値(0または15~600)を指定してください。") 
    463486            e.Cancel = True 
    464487        End If 
     
    470493            thr = CType(NextThreshold.Text, Integer) 
    471494        Catch ex As Exception 
    472             MessageBox.Show("臒l�ɂ͐��l�i1�`20�j��肵�Ă��������B") 
     495            MessageBox.Show("閾値には数値(1~20)を指定してください。") 
    473496            e.Cancel = True 
    474497            Exit Sub 
     
    476499 
    477500        If thr < 1 Or thr > 20 Then 
    478             MessageBox.Show("臒l�ɂ͐��l�i1�`20�j��肵�Ă��������B") 
     501            MessageBox.Show("閾値には数値(1~20)を指定してください。") 
    479502            e.Cancel = True 
    480503        End If 
     
    486509            thr = CType(NextPages.Text, Integer) 
    487510        Catch ex As Exception 
    488             MessageBox.Show("�y�[�W���ɂ͐��l�i1�`20�j��肵�Ă��������B") 
     511            MessageBox.Show("ページ数には数値(1~20)を指定してください。") 
    489512            e.Cancel = True 
    490513            Exit Sub 
     
    492515 
    493516        If thr < 1 Or thr > 20 Then 
    494             MessageBox.Show("�y�[�W���ɂ͐��l�i1�`20�j��肵�Ă��������B") 
     517            MessageBox.Show("ページ数には数値(1~20)を指定してください。") 
    495518            e.Cancel = True 
    496519        End If 
     
    502525            prd = CType(DMPeriod.Text, Integer) 
    503526        Catch ex As Exception 
    504             MessageBox.Show("�X�V�Ԋu�ɂ͐��l�i0�܂���5�`600�j��肵�Ă��������B") 
     527            MessageBox.Show("更新間隔には数値(0または15~600)を指定してください。") 
    505528            e.Cancel = True 
    506529            Exit Sub 
     
    508531 
    509532        If prd <> 0 And (prd < 15 Or prd > 600) Then 
    510             MessageBox.Show("�X�V�Ԋu�ɂ͐��l�i0�܂���5�`600�j��肵�Ă��������B") 
     533            MessageBox.Show("更新間隔には数値(0または15~600)を指定してください。") 
    511534            e.Cancel = True 
    512535        End If 
     
    518541        '    days = CType(ReadLogDays.Text, Integer) 
    519542        'Catch ex As Exception 
    520         '    MessageBox.Show("�ǂݍ��ݓ��͐��l�i0�`7�j��肵�Ă��������B") 
     543        '    MessageBox.Show("読み込み日数には数値(0~7)を指定してください。") 
    521544        '    e.Cancel = True 
    522545        '    Exit Sub 
     
    524547 
    525548        'If days < 0 Or days > 7 Then 
    526         '    MessageBox.Show("�ǂݍ��ݓ��͐��l�i0�`7�j��肵�Ă��������B") 
     549        '    MessageBox.Show("読み込み日数には数値(0~7)を指定してください。") 
    527550        '    e.Cancel = True 
    528551        'End If 
     
    534557            pages = CType(StartupReadPages.Text, Integer) 
    535558        Catch ex As Exception 
    536             MessageBox.Show("�ǂݍ��݃y�[�W���ɂ͐��l�i1�`999�j��肵�Ă��������B") 
     559            MessageBox.Show("読み込みページ数には数値(1~999)を指定してください。") 
    537560            e.Cancel = True 
    538561            Exit Sub 
     
    540563 
    541564        If pages < 1 Or pages > 999 Then 
    542             MessageBox.Show("�ǂݍ��݃y�[�W���ɂ͐��l�i1�`999�j��肵�Ă��������B") 
     565            MessageBox.Show("読み込みページ数には数値(1~999)を指定してください。") 
    543566            e.Cancel = True 
    544567        End If 
     
    550573            pages = CType(StartupReadReply.Text, Integer) 
    551574        Catch ex As Exception 
    552             MessageBox.Show("�ǂݍ��݃y�[�W���ɂ͐��l�i0�`999�j��肵�Ă��������B") 
     575            MessageBox.Show("読み込みページ数には数値(0~999)を指定してください。") 
    553576            e.Cancel = True 
    554577            Exit Sub 
     
    556579 
    557580        If pages < 0 Or pages > 999 Then 
    558             MessageBox.Show("�ǂݍ��݃y�[�W���ɂ͐��l�i0�`999�j��肵�Ă��������B") 
     581            MessageBox.Show("読み込みページ数には数値(0~999)を指定してください。") 
    559582            e.Cancel = True 
    560583        End If 
     
    566589            pages = CType(StartupReadDM.Text, Integer) 
    567590        Catch ex As Exception 
    568             MessageBox.Show("�ǂݍ��݃y�[�W���ɂ͐��l�i1�`999�j��肵�Ă��������B") 
     591            MessageBox.Show("読み込みページ数には数値(1~999)を指定してください。") 
    569592            e.Cancel = True 
    570593            Exit Sub 
     
    572595 
    573596        If pages < 1 Or pages > 999 Then 
    574             MessageBox.Show("�ǂݍ��݃y�[�W���ɂ͐��l�i1�`999�j��肵�Ă��������B") 
     597            MessageBox.Show("読み込みページ数には数値(1~999)を指定してください。") 
    575598            e.Cancel = True 
    576599        End If 
     
    10491072    Private Sub HubServerDomain_Validating(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles HubServerDomain.Validating 
    10501073        If HubServerDomain.Text.Trim = "" Then 
    1051             MessageBox.Show("�󗓂ɂ͂ł��܂���f�t�H���g�l�utwitter.com�v���ݒ肳�����B", "�h���C���w�� MessageBoxButtons.OK, MessageBoxIcon.Warning) 
     1074            MessageBox.Show("空欄にはできません。デフォルト値「twitter.com」が設定されます。", "ドメイン指定", MessageBoxButtons.OK, MessageBoxIcon.Warning) 
    10521075            HubServerDomain.Text = "twitter.com" 
    10531076        End If 
     
    11911214        Dim filedlg As New OpenFileDialog() 
    11921215 
    1193         filedlg.Filter = "��s�`���t�@�C��(*.exe)|*.exe|���ׂẴt�@�C��(*.*)|*.*" 
     1216        filedlg.Filter = "実行形式ファイル(*.exe)|*.exe|すべてのファイル(*.*)|*.*" 
    11941217        filedlg.FilterIndex = 1 
    1195         filedlg.Title = "�u���E�U��肵�Ă�������" 
     1218        filedlg.Title = "ブラウザを指定してください" 
    11961219        filedlg.RestoreDirectory = True 
    11971220 
     
    12181241        If TextProxyPort.Text.Trim() = "" Then TextProxyPort.Text = "0" 
    12191242        If Integer.TryParse(TextProxyPort.Text.Trim(), port) = False Then 
    1220             MessageBox.Show("�|�[�g�ԍ��ɂ͐����l��肵�Ă��������B") 
     1243            MessageBox.Show("ポート番号には整数値を指定してください。") 
    12211244            e.Cancel = True 
    12221245            Exit Sub 
    12231246        End If 
    12241247        If port < 0 Or port > 65535 Then 
    1225             MessageBox.Show("�|�[�g�ԍ��ɂ��`65535��肵�Ă��������B") 
     1248            MessageBox.Show("ポート番号には0~65535を指定してください。") 
    12261249            e.Cancel = True 
    12271250            Exit Sub 
     
    12341257            pstnm = CType(MaxPost.Text, Integer) 
    12351258        Catch ex As Exception 
    1236             MessageBox.Show("1���ԓ�������ST�񐔂ɂ͐��l�i1�`999�j��肵�Ă��������B") 
     1259            MessageBox.Show("1時間当たり最大POST回数には数値(1~999)を指定してください。") 
    12371260            e.Cancel = True 
    12381261            Exit Sub 
     
    12401263 
    12411264        If pstnm < 1 Or pstnm > 999 Then 
    1242             MessageBox.Show("1���ԓ�������ST�񐔂ɂ͐��l�i1�`999�j��肵�Ă��������B") 
     1265            MessageBox.Show("1時間当たり最大POST回数には数値(1~999)を指定してください。") 
    12431266            e.Cancel = True 
    12441267        End If 
  • lang/vb2005/Tween/Tween/StatusDictionary.vb

    r22965 r23890  
     1' Tween - Client of Twitter 
     2' Copyright © 2007-2008 kiri_feather (@kiri_feather) <kiri_feather@gmail.com> 
     3'           © 2008      Moz (@syo68k) <http://iddy.jp/profile/moz/> 
     4'           © 2008      takeshik (@takeshik) <http://www.takeshik.org/> 
     5' All rights reserved. 
     6'  
     7' This file is part of Tween. 
     8'  
     9' This program is free software; you can redistribute it and/or modify it 
     10' under the terms of the GNU General Public License as published by the Free 
     11' Software Foundation; either version 3 of the License, or (at your option) 
     12' any later version. 
     13'  
     14' This program is distributed in the hope that it will be useful, but 
     15' WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
     16' or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 
     17' for more details.  
     18'  
     19' You should have received a copy of the GNU General Public License along 
     20' with this program. If not, see <http://www.gnu.org/licenses/>, or write to 
     21' the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, 
     22' Boston, MA 02110-1301, USA. 
     23 
    124Imports System.Collections.Generic 
    225Imports System.Collections.ObjectModel 
     
    1336 
    1437    Public Sub BeginUpdate() 
    15         _addedIds = New Specialized.StringCollection()  '�^�u�lj�pID�R���N�V��������   End Sub 
     38        _addedIds = New Specialized.StringCollection()  'タブ追加用IDコレクション準備 
     39    End Sub 
    1640 
    1741    Public Function EndUpdate() As String 
    18         Dim NotifyString As String = _tabs.Distribute(_addedIds)    '�^�u�ɒlj� 
    19         _tabs.Sort()    '�\�[�g 
    20         Return NotifyString     '�ʒm�p���b�Z�[�W��� 
     42        Dim NotifyString As String = _tabs.Distribute(_addedIds)    'タブに追加 
     43        _tabs.Sort()    'ソート 
     44        Return NotifyString     '通知用メッセージを戻す 
    2145    End Function 
    2246 
     
    4064 
    4165'Public Class StatusDictionary 
    42 '    Private _tabs As TabInformations  '�v�fTabsClass�N���X�̃W�F�l���b�N���X�g�C���X�^���X�i�^�u���p�j 
     66'    Private _tabs As TabInformations  '要素TabsClassクラスのジェネリックリストインスタンス(タブ情報用) 
    4367'    Private _statuses As New Dictionary(Of String, MyListItem) 
    4468'    Private _setting As Setting 
     
    287311 
    288312Public Class TabInformations 
    289     '�•ʃ^�u�̏���tionary�ŕێ� 
     313    '個別タブの情報をDictionaryで保持 
    290314    Private _sorter As ListViewItemComparerClass 
    291315    Private _tabs As New Dictionary(Of String, TabClass)() 
     
    348372 
    349373    Public Function Distribute(ByVal AddedIDs As Specialized.StringCollection) As String 
    350         '�e�^�u�̃t�B���^�[�Əƍ��B���v�������u��D�lj� 
    351         Return "�ʒm���b�Z�[�W" 
     374        '各タブのフィルターと照合。合致したらタブにID追加 
     375        Return "通知メッセージ" 
    352376    End Function 
    353377 
     
    529553 
    530554    '''' <summary> 
    531     '''' �������@ 
     555    '''' 比較する方法 
    532556    '''' </summary> 
    533557    'Public Enum ComparerMode 
     
    544568 
    545569    '''' <summary> 
    546     '''' ��ёւ���stView��ԍ� 
     570    '''' 並び替えるListView列の番号 
    547571    '''' </summary> 
    548572    'Public Property Column() As Integer 
     
    565589 
    566590    ''' <summary> 
    567     ''' �������~���� 
     591    ''' 昇順か降順か 
    568592    ''' </summary> 
    569593    Public Property Order() As SortOrder 
     
    577601 
    578602    '''' <summary> 
    579     '''' ��ёւ��̕�    '''' </summary> 
     603    '''' 並び替えの方法 
     604    '''' </summary> 
    580605    'Public Property Mode() As ComparerMode 
    581606    '    Get 
     
    588613 
    589614    '''' <summary> 
    590     '''' �񂲂Ƃ̕�ёւ��̕�    '''' </summary> 
     615    '''' 列ごとの並び替えの方法 
     616    '''' </summary> 
    591617    'Public WriteOnly Property ColumnModes() As ComparerMode() 
    592618    '    Set(ByVal Value As ComparerMode()) 
     
    596622 
    597623    ''' <summary> 
    598     ''' ListViewItemComparer�N���X�̃R���X�g���N�^ 
     624    ''' ListViewItemComparerクラスのコンストラクタ 
    599625    ''' </summary> 
    600     ''' <param name="col">��ёւ����ԍ�</param> 
    601     ''' <param name="ord">�������~����</param> 
    602     ''' <param name="cmod">��ёւ��̕�param> 
     626    ''' <param name="col">並び替える列番号</param> 
     627    ''' <param name="ord">昇順か降順か</param> 
     628    ''' <param name="cmod">並び替えの方法</param> 
    603629    Public Sub New(ByVal ord As SortOrder) 
    604630        _order = ord 
     
    609635    End Sub 
    610636 
    611     'x��y���������Ƃ��̓}�C�i�X�̐��A�傫���Ƃ��̓v���X�̐��A 
    612     '�����Ƃ������ 
     637    'xがyより小さいときはマイナスの数、大きいときはプラスの数、 
     638    '同じときは0を返す 
    613639    Public Function Compare(ByVal x As String, ByVal y As String) _ 
    614640            As Integer Implements IComparer(Of String).Compare 
     
    616642 
    617643        result = String.Compare(x, y) 
    618         '�~���̎��͌��ʂ�t�ɂ���        If _order = SortOrder.Descending Then 
     644        '降順の時は結果を+-逆にする 
     645        If _order = SortOrder.Descending Then 
    619646            result = -result 
    620647        End If 
  • lang/vb2005/Tween/Tween/TwConfig.vb

    r23269 r23890  
     1' Tween - Client of Twitter 
     2' Copyright © 2007-2008 kiri_feather (@kiri_feather) <kiri_feather@gmail.com> 
     3'           © 2008      Moz (@syo68k) <http://iddy.jp/profile/moz/> 
     4'           © 2008      takeshik (@takeshik) <http://www.takeshik.org/> 
     5' All rights reserved. 
     6'  
     7' This file is part of Tween. 
     8'  
     9' This program is free software; you can redistribute it and/or modify it 
     10' under the terms of the GNU General Public License as published by the Free 
     11' Software Foundation; either version 3 of the License, or (at your option) 
     12' any later version. 
     13'  
     14' This program is distributed in the hope that it will be useful, but 
     15' WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 
     16' or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 
     17' for more details.  
     18'  
     19' You should have received a copy of the GNU General Public License along 
     20' with this program. If not, see <http://www.gnu.org/licenses/>, or write to 
     21' the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, 
     22' Boston, MA 02110-1301, USA. 
     23 
    124Imports System.Configuration 
    225 
     
    16191642 
    16201643    Private Function EncryptString(ByVal str As String) As String 
    1621         '������o�C�g�^�z�����        Dim bytesIn As Byte() = System.Text.Encoding.UTF8.GetBytes(str) 
    1622  
    1623         'DESCryptoServiceProvider�I�u�W�F�N�g�̍쐬 
     1644        '文字列をバイト型配列にする 
     1645        Dim bytesIn As Byte() = System.Text.Encoding.UTF8.GetBytes(str) 
     1646 
     1647        'DESCryptoServiceProviderオブジェクトの作成 
    16241648        Dim des As New System.Security.Cryptography.DESCryptoServiceProvider 
    16251649 
    1626         '���L�L�[�Ə����N�^���        '�p�X���[�h��C�g�z�����        Dim bytesKey As Byte() = System.Text.Encoding.UTF8.GetBytes("_tween_encrypt_key_") 
    1627         '���L�L�[�Ə����N�^���        des.Key = ResizeBytesArray(bytesKey, des.Key.Length) 
     1650        '共有キーと初期化ベクタを決定 
     1651        'パスワードをバイト配列にする 
     1652        Dim bytesKey As Byte() = System.Text.Encoding.UTF8.GetBytes("_tween_encrypt_key_") 
     1653        '共有キーと初期化ベクタを設定 
     1654        des.Key = ResizeBytesArray(bytesKey, des.Key.Length) 
    16281655        des.IV = ResizeBytesArray(bytesKey, des.IV.Length) 
    16291656 
    1630         '�Í������ꂽ�f�[�^����o�����߂�emoryStream 
     1657        '暗号化されたデータを書き出すためのMemoryStream 
    16311658        Using msOut As New System.IO.MemoryStream 
    1632             'DES�Í����I�u�W�F�N�g�̍쐬 
     1659            'DES暗号化オブジェクトの作成 
    16331660            Using desdecrypt As System.Security.Cryptography.ICryptoTransform = _ 
    16341661                des.CreateEncryptor() 
    16351662 
    1636                 '�������ނ��߂�ryptoStream�̍쐬 
     1663                '書き込むためのCryptoStreamの作成 
    16371664                Using cryptStream As New System.Security.Cryptography.CryptoStream( _ 
    16381665                    msOut, desdecrypt, _ 
    16391666                    System.Security.Cryptography.CryptoStreamMode.Write) 
    1640                     '�������� 
     1667                    '書き込む 
    16411668                    cryptStream.Write(bytesIn, 0, bytesIn.Length) 
    16421669                    cryptStream.FlushFinalBlock() 
    1643                     '�Í������ꂽ�f�[�^��� 
     1670                    '暗号化されたデータを取得 
    16441671                    Dim bytesOut As Byte() = msOut.ToArray() 
    16451672 
    1646                     '�‚���                    cryptStream.Close() 
     1673                    '閉じる 
     1674                    cryptStream.Close() 
    16471675                    msOut.Close() 
    16481676 
    1649                     'Base64�ŕ�����ύX���Č��ʂ�� 
     1677                    'Base64で文字列に変更して結果を返す 
    16501678                    Return System.Convert.ToBase64String(bytesOut) 
    16511679                End Using 
     
    16551683 
    16561684    Private Function DecryptString(ByVal str As String) As String 
    1657         'DESCryptoServiceProvider�I�u�W�F�N�g�̍쐬 
     1685        'DESCryptoServiceProviderオブジェクトの作成 
    16581686        Dim des As New System.Security.Cryptography.DESCryptoServiceProvider 
    16591687 
    1660         '���L�L�[�Ə����N�^���        '�p�X���[�h��C�g�z�����        Dim bytesKey As Byte() = System.Text.Encoding.UTF8.GetBytes("_tween_encrypt_key_") 
    1661         '���L�L�[�Ə����N�^���        des.Key = ResizeBytesArray(bytesKey, des.Key.Length) 
     1688        '共有キーと初期化ベクタを決定 
     1689        'パスワードをバイト配列にする 
     1690        Dim bytesKey As Byte() = System.Text.Encoding.UTF8.GetBytes("_tween_encrypt_key_") 
     1691        '共有キーと初期化ベクタを設定 
     1692        des.Key = ResizeBytesArray(bytesKey, des.Key.Length) 
    16621693        des.IV = ResizeBytesArray(bytesKey, des.IV.Length) 
    16631694 
    1664         'Base64�ŕ�����o�C�g�z��߂� 
     1695        'Base64で文字列をバイト配列に戻す 
    16651696        Dim bytesIn As Byte() = System.Convert.FromBase64String(str) 
    1666         '�Í������ꂽ�f�[�^��ݍ��ނ��߂�emoryStream 
     1697        '暗号化されたデータを読み込むためのMemoryStream 
    16671698        Using msIn As New System.IO.MemoryStream(bytesIn) 
    1668             'DES�������I�u�W�F�N�g�̍쐬 
     1699            'DES復号化オブジェクトの作成 
    16691700            Using desdecrypt As System.Security.Cryptography.ICryptoTransform = _ 
    16701701                des.CreateDecryptor() 
    1671                 '�ǂݍ��ނ��߂�ryptoStream�̍쐬 
     1702                '読み込むためのCryptoStreamの作成 
    16721703                Using cryptStreem As New System.Security.Cryptography.CryptoStream( _ 
    16731704                    msIn, desdecrypt, _ 
    16741705                    System.Security.Cryptography.CryptoStreamMode.Read) 
    16751706 
    1676                     '���������ꂽ�f�[�^������邽�߂�treamReader 
     1707                    '復号化されたデータを取得するためのStreamReader 
    16771708                    Using srOut As New System.IO.StreamReader( _ 
    16781709                        cryptStreem, System.Text.Encoding.UTF8) 
    1679                         '���������ꂽ�f�[�^�������                        Dim result As String = srOut.ReadToEnd() 
    1680  
    1681                         '�‚���                        srOut.Close() 
     1710                        '復号化されたデータを取得する 
     1711                        Dim result As String = srOut.ReadToEnd() 
     1712 
     1713                        '閉じる 
     1714                        srOut.Close() 
    16821715                        cryptStreem.Close() 
    16831716                        msIn.Close()