Skip to content

Commit

Permalink
Not show empty Labels and copy button in Detailed block String, EDID …
Browse files Browse the repository at this point in the history
…block does Not, Extracted
  • Loading branch information
eloaders committed Jan 20, 2014
1 parent 8bbf185 commit 6948703
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/i-nex/.src/FEDID.class
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ Public Sub Form_Open()
.Padding = 3
.Font.Bold = True
.Text = EDID[i - 1]
If EDID[i - 1] = Null Then
.Visible = False
Endif
End With
Next

Expand All @@ -72,6 +75,18 @@ Public Sub Form_Open()
.Picture = Picture["AppIcons/edit-copy.png"]
.Tooltip = "Copy"
.Name = EDID[i - 1]
If EDID[i - 1] = Null Then
.Visible = False
Endif
If EDID[i - 1] Begins "Extracted" Then
.Visible = False
Endif
If EDID[i - 1] Like "*EDID block does Not*" Then
.Visible = False
Endif
If EDID[i - 1] Like "*Detailed block String*" Then
.Visible = False
Endif
End With
Next
End
Expand Down

0 comments on commit 6948703

Please sign in to comment.