svnno****@sourc*****
svnno****@sourc*****
2011年 10月 24日 (月) 18:22:50 JST
Revision: 1640 http://sourceforge.jp/projects/tween/svn/view?view=rev&revision=1640 Author: syo68k Date: 2011-10-24 18:22:50 +0900 (Mon, 24 Oct 2011) Log Message: ----------- バルーンクリックなどの際にZオーダー最前面に来ない場合があるので対策した Modified Paths: -------------- trunk/Tween/Tween.vb -------------- next part -------------- Modified: trunk/Tween/Tween.vb =================================================================== --- trunk/Tween/Tween.vb 2011-10-24 07:54:26 UTC (rev 1639) +++ trunk/Tween/Tween.vb 2011-10-24 09:22:50 UTC (rev 1640) @@ -2085,6 +2085,7 @@ Me.WindowState = FormWindowState.Normal End If Me.Activate() + Me.BringToFront() End Sub Private Shared Function CheckAccountValid() As Boolean @@ -2777,6 +2778,7 @@ Me.WindowState = FormWindowState.Normal End If Me.Activate() + Me.BringToFront() End If End Sub @@ -8650,6 +8652,7 @@ ImagefilePathText.Text = CType(e.Data.GetData(DataFormats.FileDrop, False), String())(0) ImageFromSelectedFile() Me.Activate() + Me.BringToFront() StatusText.Focus() ElseIf e.Data.GetDataPresent(DataFormats.StringFormat) Then Dim data As String = TryCast(e.Data.GetData(DataFormats.StringFormat, True), String) @@ -9951,6 +9954,7 @@ Google.GASender.GetInstance().TrackPage("/user_profile", tw.UserId) userinfo.ShowDialog(Me) Me.Activate() + Me.BringToFront() Google.GASender.GetInstance().TrackPage("/home_timeline", tw.UserId) End Using End Sub @@ -10072,6 +10076,7 @@ Me.Visible = True If Me.WindowState = FormWindowState.Minimized Then Me.WindowState = FormWindowState.Normal Me.Activate() + Me.BringToFront() Me.StatusText.Focus() End If End Sub @@ -10897,6 +10902,7 @@ Me.Visible = True If Me.WindowState = FormWindowState.Minimized Then Me.WindowState = FormWindowState.Normal Me.Activate() + Me.BringToFront() Me.StatusText.Focus() End Sub) End If