Skip to content

Commit

Permalink
Merge pull request #776 from africanmathsinitiative/master
Browse files Browse the repository at this point in the history
merge from main
  • Loading branch information
dannyparsons authored Sep 25, 2017
2 parents dea176f + 6cbc1a9 commit 1a4c4ce
Show file tree
Hide file tree
Showing 42 changed files with 773 additions and 259 deletions.
2 changes: 1 addition & 1 deletion instat/DlgDefineClimaticData.Designer.vb

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

2 changes: 1 addition & 1 deletion instat/dlgCalculator.designer.vb

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

18 changes: 10 additions & 8 deletions instat/dlgCalculator.vb
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@ Public Class dlgCalculator
Dim clsDetach As New RFunction
Public bFirstLoad As Boolean = True
Public iHelpCalcID As Integer
Private iBasicWidth As Integer

Private Sub dlgCalculator_Load(sender As Object, e As EventArgs) Handles MyBase.Load
autoTranslate(Me)
If bFirstLoad Then
InitialiseDialog()
iBasicWidth = Me.Width
SetDefaults()
bFirstLoad = False
Else
Expand Down Expand Up @@ -132,21 +134,21 @@ Public Class dlgCalculator
Private Sub CalculationsOptions()
Select Case ucrCalc.ucrInputCalOptions.GetText
Case "Maths"
Me.Size = New System.Drawing.Size(680, 435)
Me.Size = New System.Drawing.Size(iBasicWidth * 1.33, Me.Height)
Case "Logical and Symbols"
Me.Size = New System.Drawing.Size(627, 435)
Me.Size = New System.Drawing.Size(iBasicWidth * 1.23, Me.Height)
Case "Statistics"
Me.Size = New System.Drawing.Size(588, 435)
Me.Size = New System.Drawing.Size(iBasicWidth * 1.15, Me.Height)
Case "Strings (Character Columns)"
Me.Size = New System.Drawing.Size(630, 435)
Me.Size = New System.Drawing.Size(iBasicWidth * 1.24, Me.Height)
Case "Probability"
Me.Size = New System.Drawing.Size(810, 435)
Me.Size = New System.Drawing.Size(iBasicWidth * 1.59, Me.Height)
Case "Dates"
Me.Size = New System.Drawing.Size(660, 435)
Me.Size = New System.Drawing.Size(iBasicWidth * 1.3, Me.Height)
Case "Rows"
Me.Size = New System.Drawing.Size(615, 435)
Me.Size = New System.Drawing.Size(iBasicWidth * 1.21, Me.Height)
Case Else
Me.Size = New System.Drawing.Size(510, 435)
Me.Size = New System.Drawing.Size(iBasicWidth, Me.Height)
End Select
End Sub

Expand Down
283 changes: 283 additions & 0 deletions instat/dlgClimaticCheckDataRain.Designer.vb

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

File renamed without changes.
9 changes: 9 additions & 0 deletions instat/dlgClimaticCheckDataRain.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Public Class dlgClimaticCheckDataRain
Private Sub UcrSelectorByDataFrameAddRemove1_Load(sender As Object, e As EventArgs) Handles ucrSelectorRain.Load

End Sub

Private Sub dlgRain_Load(sender As Object, e As EventArgs) Handles MyBase.Load

End Sub
End Class

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

Loading

0 comments on commit 1a4c4ce

Please sign in to comment.