Skip to content

Commit

Permalink
SliderBox1 Value For .png Max = 10, Def = 9, for .jpg Max = 100, Def …
Browse files Browse the repository at this point in the history
…= 70
  • Loading branch information
eloaders committed Nov 23, 2013
1 parent 213eeb2 commit 260ca67
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/i-nex/.src/ScreenShot.class
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Public Sub Form_Open()
ComboBox1.Add(".png")
ComboBox1.Add(".jpg")
ComboBox1.Text = ".png"
SliderBox1.Value = 70
SliderBox1.Value = 9

End

Expand Down Expand Up @@ -56,3 +56,15 @@ Public Sub Form_Close()
Finfosys.Show

End

Public Sub ComboBox1_Click()

If ComboBox1.Text = ".png" Then
SliderBox1.MaxValue = 10
SliderBox1.Value = 9
Else
SliderBox1.MaxValue = 100
SliderBox1.Value = 70
Endif

End

0 comments on commit 260ca67

Please sign in to comment.