[DEVELOPMENT ENVIRONMENT]
* BUG: Profile windows should not crash anymore when displaying percentage values. git-svn-id: svn://localhost/gambas/trunk@7298 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
99c8a1a7c7
commit
8ecb0c50be
1 changed files with 15 additions and 0 deletions
|
@ -457,6 +457,11 @@ Public Sub gvwProfile_Data(Row As Integer, Column As Integer)
|
|||
End Select
|
||||
|
||||
End With
|
||||
|
||||
Catch
|
||||
|
||||
gvwProfile.Data.Text = ""
|
||||
gvwProfile.Data.Background = Color.ButtonBackground
|
||||
|
||||
End
|
||||
|
||||
|
@ -806,6 +811,11 @@ Public Sub gvwCalled_Data(Row As Integer, Column As Integer)
|
|||
|
||||
End With
|
||||
|
||||
Catch
|
||||
|
||||
gvwCalled.Data.Text = ""
|
||||
gvwCalled.Data.Background = Color.ButtonBackground
|
||||
|
||||
End
|
||||
|
||||
Public Sub gvwCalled_Activate()
|
||||
|
@ -980,6 +990,11 @@ Public Sub gvwSource_Data(Row As Integer, Column As Integer)
|
|||
|
||||
End With
|
||||
|
||||
Catch
|
||||
|
||||
gvwSource.Data.Text = ""
|
||||
gvwSource.Data.Background = Color.ButtonBackground
|
||||
|
||||
End
|
||||
|
||||
Public Sub edtSource_Scroll()
|
||||
|
|
Loading…
Reference in a new issue