[Tween-svn] [1420] 正規表現でのフィルタの際に発生した例外を完全に無視していたのを修正

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2011年 1月 29日 (土) 14:56:57 JST


Revision: 1420
          http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1420
Author:   syo68k
Date:     2011-01-29 14:56:57 +0900 (Sat, 29 Jan 2011)

Log Message:
-----------
正規表現でのフィルタの際に発生した例外を完全に無視していたのを修正

Modified Paths:
--------------
    trunk/Tween/EventViewerDialog.vb


-------------- next part --------------
Modified: trunk/Tween/EventViewerDialog.vb
===================================================================
--- trunk/Tween/EventViewerDialog.vb	2011-01-29 04:54:45 UTC (rev 1419)
+++ trunk/Tween/EventViewerDialog.vb	2011-01-29 05:56:57 UTC (rev 1420)
@@ -83,6 +83,7 @@
                     Dim rx As New Regex(TextBoxKeyword.Text)
                     Return rx.Match(x.Username).Success OrElse rx.Match(x.Target).Success
                 Catch ex As Exception
+                    MessageBox.Show(My.Resources.ButtonOK_ClickText3 + ex.Message, "", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
                     Return False
                 End Try
             Else



Tween-svn メーリングリストの案内
Back to archive index