Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating my main branch #6

Merged
merged 35 commits into from
Feb 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
aad17a5
Created Summary Statistics Dialogue with all parameters
duutabib Nov 19, 2015
926a846
Merge pull request #12 from africanmathsinitiative/master
maxwellfundi Feb 3, 2016
37add60
Merge pull request #18 from africanmathsinitiative/master
nyagishira Feb 3, 2016
a78ca84
Merge pull request #13 from africanmathsinitiative/master
maxwellfundi Feb 3, 2016
2ef9ac8
Redone dlgCPTtabularData
maxwellfundi Feb 3, 2016
766e384
redone dlgChangeFormatDayMonth for climatic menu
maxwellfundi Feb 3, 2016
7db0a55
redone dlgDayMonth for the Climatic Menu
maxwellfundi Feb 3, 2016
71a1dd8
redone dlgDisplayDaily for climatic menu
maxwellfundi Feb 3, 2016
ac966d0
Amended dlgYearRaincount
stevekogo Feb 3, 2016
777d19c
redone dlglsNAList for climatic menu
maxwellfundi Feb 3, 2016
25d33dc
dlgView Designing and adding code
Lunalo Feb 3, 2016
658acbd
redone dlgDisplayDailyDataRain for climatic menu
maxwellfundi Feb 3, 2016
c5bc52c
removed conflicts in dlgHistogramMethod
stevekogo Feb 3, 2016
277cc9c
redone dlgWaterBalance for climatic menu
maxwellfundi Feb 3, 2016
bb559f1
adding parameters for dlgWaterBalance for climatic menu
maxwellfundi Feb 3, 2016
461f296
edited dlgSpellLength dialogue
stevekogo Feb 3, 2016
bb2c77f
putting parameters in the dialog
Feb 3, 2016
afeb1ec
Fixing changes on dlgThreeSummaries
Lunalo Feb 3, 2016
d6d820e
Redone dlgExtremes for the climatic menu
maxwellfundi Feb 3, 2016
935df3d
Fixing The designer code
Lunalo Feb 3, 2016
0aa5e45
Merge pull request #709 from Lunalo/dlgWindrose
volloholic Feb 3, 2016
922ba1e
Merge pull request #708 from maxwellfundi/dlgWaterBalance
volloholic Feb 3, 2016
4c86edd
Merge pull request #707 from maxwellfundi/dlgExtremeEvents
volloholic Feb 3, 2016
b8603d2
Merge pull request #706 from stevekogo/Cleaning-Abibs-Codes
volloholic Feb 3, 2016
38d94c4
Merge pull request #705 from stevekogo/dlgSpellLengths
volloholic Feb 3, 2016
99fd5b7
Merge pull request #704 from Lunalo/dlgThreeSummaries
volloholic Feb 3, 2016
42c48ed
Merge pull request #702 from nyagishira/dlgBoxplotMethod
volloholic Feb 3, 2016
78440f5
Merge pull request #701 from maxwellfundi/dlgNAList
volloholic Feb 3, 2016
be8178b
Merge pull request #700 from maxwellfundi/dlgDisplayDailyDataRain
volloholic Feb 3, 2016
f8cf859
Merge pull request #699 from Lunalo/dlgView
volloholic Feb 3, 2016
036a99b
Merge pull request #698 from maxwellfundi/dlgDisplayDay
volloholic Feb 3, 2016
859013d
Merge pull request #697 from maxwellfundi/dlgDayMonth
volloholic Feb 3, 2016
4a9cfc3
Merge pull request #696 from maxwellfundi/dlgchandgeforamtdaymonth
volloholic Feb 3, 2016
453de6f
Merge pull request #695 from maxwellfundi/abibswork
volloholic Feb 3, 2016
a133af6
Merge pull request #211 from aduut/master
volloholic Feb 3, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
292 changes: 259 additions & 33 deletions instat/dlgBoxplotMethod.designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 62 additions & 8 deletions instat/dlgBoxplotMethod.vb
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,69 @@
'
' You should have received a copy of the GNU General Public License k
' along with this program. If not, see <http://www.gnu.org/licenses/>.
Imports instat.Translations
Public Class dlgBoxplotMethod
Private Sub dlgBoxplotMethod_Load(sender As Object, e As EventArgs) Handles MyBase.Load
autoTranslate(Me)
ucrBase.clsRsyntax.SetFunction("climate_obj$boxplot")
ucrBase.clsRsyntax.iCallType = 0
End Sub


Imports instat.Translations
Public Class dlgBoxplotMethod
Private Sub ucrBase_Load(sender As Object, e As EventArgs) Handles ucrBase.Load
autoTranslate(Me)
ucrBase.clsRsyntax.SetFunction("climate_obj$boxplot")
ucrBase.clsRsyntax.iCallType = 0
End Sub

Private Sub CheckBox1_CheckedChanged(sender As Object, e As EventArgs) Handles chkConvert.CheckedChanged
If chkConvert.Checked Then
ucrBase.clsRsyntax.AddParameter("convert", chkConvert.Checked.ToString().ToUpper())
End If
End Sub

End Class

Private Sub txtTitle_TextChanged(sender As Object, e As EventArgs) Handles txtTitle.TextChanged
ucrBase.clsRsyntax.AddParameter("title", Chr(34) & txtTitle.Text.ToString() & Chr(34))

End Sub

Private Sub chkHorizontal_CheckedChanged(sender As Object, e As EventArgs) Handles chkHorizontal.CheckedChanged
If chkHorizontal.Checked Then
ucrBase.clsRsyntax.AddParameter("horizontal", chkHorizontal.Checked.ToString().ToUpper())
End If

End Sub

Private Sub nudWhisklty_ValueChanged(sender As Object, e As EventArgs) Handles nudWhisklty.ValueChanged
ucrBase.clsRsyntax.AddParameter("whisklty", nudWhisklty.Value.ToString())

End Sub

Private Sub txtFillColour_TextChanged(sender As Object, e As EventArgs) Handles txtFillColour.TextChanged
ucrBase.clsRsyntax.AddParameter("fill_col", Chr(34) & txtFillColour.Text.ToString() & Chr(34))

End Sub

Private Sub txtYLabel_TextChanged(sender As Object, e As EventArgs) Handles txtYLabel.TextChanged
ucrBase.clsRsyntax.AddParameter("ylabel", Chr(34) & txtYLabel.Text.ToString() & Chr(34))

End Sub

Private Sub txtXLabel_TextChanged(sender As Object, e As EventArgs) Handles txtXLabel.TextChanged
ucrBase.clsRsyntax.AddParameter("xlabel", Chr(34) & txtXLabel.Text.ToString() & Chr(34))
End Sub

Private Sub txtFactor_TextChanged(sender As Object, e As EventArgs) Handles txtFactor.TextChanged
ucrBase.clsRsyntax.AddParameter("factor", Chr(34) & txtFactor.Text.ToString() & Chr(34))
End Sub

Private Sub txtInterestedVariable_TextChanged(sender As Object, e As EventArgs) Handles txtInterestedVariable.TextChanged
ucrBase.clsRsyntax.AddParameter("interested_var", Chr(34) & txtInterestedVariable.Text.ToString() & Chr(34))
End Sub

Private Sub txtDataPeriodLabel_TextChanged(sender As Object, e As EventArgs) Handles txtDataPeriodLabel.TextChanged
ucrBase.clsRsyntax.AddParameter("data_period_label", Chr(34) & txtDataPeriodLabel.Text.ToString() & Chr(34))

End Sub





End Class
Loading