Skip to content

Commit

Permalink
Merge pull request #24 from africanmathsinitiative/master
Browse files Browse the repository at this point in the history
updating my repo
  • Loading branch information
nyagishira committed Mar 21, 2016
2 parents 7c9bc19 + 49d474c commit 3a58fe3
Show file tree
Hide file tree
Showing 50 changed files with 2,491 additions and 472 deletions.
34 changes: 17 additions & 17 deletions instat/dlgCPTtoTabularData.designer.vb

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

33 changes: 22 additions & 11 deletions instat/dlgCPTtoTabularData.vb
Original file line number Diff line number Diff line change
Expand Up @@ -15,26 +15,37 @@
' along with this program. If not, see <http://www.gnu.org/licenses/>.
Imports instat.Translations
Public Class dlgCPTtoTabularData
Private Sub UcrButtons1_Load(sender As Object, e As EventArgs) Handles ucrBase.Load
autoTranslate(Me)
ucrBase.clsRsyntax.SetFunction("climate_obj$SST_domain()")
ucrBase.clsRsyntax.iCallType = 0
End Sub

Public bFirstLoad As Boolean = True
Private Sub dlgCPTtoTabularData_Load(sender As Object, e As EventArgs) Handles MyBase.Load
autoTranslate(Me)

If bFirstLoad Then
InitialiseDialog()
SetDefaults()
bFirstLoad = False
Else
ReopenDialog()
End If

TestOKEnabled()
End Sub

Private Sub NumericUpDown1_ValueChanged(sender As Object, e As EventArgs) Handles nudMinLat.ValueChanged
Private Sub InitialiseDialog()
ucrBase.clsRsyntax.SetFunction("climate_obj$SST_domain()")
End Sub
Private Sub SetDefaults()

End Sub
Private Sub ReopenDialog()

Private Sub NumericUpDown4_ValueChanged(sender As Object, e As EventArgs) Handles nudMaxLat.ValueChanged
End Sub
Private Sub TestOKEnabled()

End Sub
Private Sub ucrBase_ClickReset(sender As Object, e As EventArgs) Handles ucrBase.ClickReset
SetDefaults()
TestOKEnabled()
End Sub


Private Sub NumericUpDown3_ValueChanged(sender As Object, e As EventArgs) Handles nudMinLon.ValueChanged

End Sub
End Class
112 changes: 54 additions & 58 deletions instat/dlgChangeFormatDayMonth.designer.vb

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

33 changes: 30 additions & 3 deletions instat/dlgChangeFormatDayMonth.vb
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,38 @@
' along with this program. If not, see <http://www.gnu.org/licenses/>.

Imports instat.Translations
Public Class dlgChangeFormatDayMonth
Private Sub UcrButtons1_Load(sender As Object, e As EventArgs) Handles ucrBase.Load
Public Class dlgChangeFormatDayMonth
Public bFirstLoad As Boolean = True
Private Sub dlgChangeFormatDayMonth_Load(sender As Object, e As EventArgs) Handles MyBase.Load
autoTranslate(Me)


If bFirstLoad Then
InitialiseDialog()
SetDefaults()
bFirstLoad = False
Else
ReopenDialog()
End If

TestOKEnabled()
End Sub
Private Sub InitialiseDialog()
ucrBase.clsRsyntax.SetFunction("climate_obj$change_format_day_month()")
ucrBase.clsRsyntax.iCallType = 0
End Sub
Private Sub SetDefaults()

End Sub

Private Sub ReopenDialog()

End Sub
Private Sub TestOKEnabled()

End Sub
Private Sub ucrBase_ClickReset(sender As Object, e As EventArgs) Handles ucrBase.ClickReset
SetDefaults()
TestOKEnabled()
End Sub
End Class

Expand Down
Loading

0 comments on commit 3a58fe3

Please sign in to comment.