Skip to content

Commit

Permalink
Don't show ComboBox to select info of processor[0-9] if TabPanel1.Cur…
Browse files Browse the repository at this point in the history
…rent.Text = CPUID
  • Loading branch information
eloaders committed Jan 17, 2014
1 parent b8ff5cd commit 64e275d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/i-nex/.src/Finfosys.class
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ Public Sub TabStrip1_Click()
Endif
'
Me.Text = "I-Nex / " & TabStrip1.Current.Text

TabPanel1_Click()
End

Public Sub Form_Move()
Expand All @@ -882,3 +882,13 @@ Public Sub Button16_Click()
TabPanel1.Index = 1

End

Public Sub TabPanel1_Click()

If TabPanel1.Current.Text = "CPUID" Then
ComboBox1.Visible = False
Else
ComboBox1.Visible = True
Endif

End

0 comments on commit 64e275d

Please sign in to comment.