From 86fa9df16cfb20f51626836664aacbee930ca4f8 Mon Sep 17 00:00:00 2001 From: John Lunalo Date: Wed, 2 Mar 2016 09:48:28 +0300 Subject: [PATCH 1/5] dlgCumulativeDistribution Creating Empty dialog --- instat/dlgCumulativeDistribution.Designer.vb | 51 ++++++++ instat/dlgCumulativeDistribution.fr-FR.resx | 15 +++ instat/dlgCumulativeDistribution.resx | 120 +++++++++++++++++++ instat/dlgCumulativeDistribution.sw-KE.resx | 15 +++ instat/dlgCumulativeDistribution.vb | 5 + instat/instat.vbproj | 15 +++ 6 files changed, 221 insertions(+) create mode 100644 instat/dlgCumulativeDistribution.Designer.vb create mode 100644 instat/dlgCumulativeDistribution.fr-FR.resx create mode 100644 instat/dlgCumulativeDistribution.resx create mode 100644 instat/dlgCumulativeDistribution.sw-KE.resx create mode 100644 instat/dlgCumulativeDistribution.vb diff --git a/instat/dlgCumulativeDistribution.Designer.vb b/instat/dlgCumulativeDistribution.Designer.vb new file mode 100644 index 00000000000..c6413c8c04c --- /dev/null +++ b/instat/dlgCumulativeDistribution.Designer.vb @@ -0,0 +1,51 @@ + _ +Partial Class dlgCumulativeDistribution + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.ucrBase = New instat.ucrButtons() + Me.SuspendLayout() + ' + 'ucrBase + ' + Me.ucrBase.Location = New System.Drawing.Point(12, 196) + Me.ucrBase.Name = "ucrBase" + Me.ucrBase.Size = New System.Drawing.Size(410, 53) + Me.ucrBase.TabIndex = 0 + ' + 'dlgCumulativeDistribution + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(435, 261) + Me.Controls.Add(Me.ucrBase) + Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow + Me.Name = "dlgCumulativeDistribution" + Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen + Me.Tag = "Cumulative_Distribution" + Me.Text = "Cumulative Distribution" + Me.ResumeLayout(False) + + End Sub + + Friend WithEvents ucrBase As ucrButtons +End Class diff --git a/instat/dlgCumulativeDistribution.fr-FR.resx b/instat/dlgCumulativeDistribution.fr-FR.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/dlgCumulativeDistribution.fr-FR.resx @@ -0,0 +1,15 @@ + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgCumulativeDistribution.resx b/instat/dlgCumulativeDistribution.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/instat/dlgCumulativeDistribution.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgCumulativeDistribution.sw-KE.resx b/instat/dlgCumulativeDistribution.sw-KE.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/dlgCumulativeDistribution.sw-KE.resx @@ -0,0 +1,15 @@ + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgCumulativeDistribution.vb b/instat/dlgCumulativeDistribution.vb new file mode 100644 index 00000000000..000d5802aed --- /dev/null +++ b/instat/dlgCumulativeDistribution.vb @@ -0,0 +1,5 @@ +Public Class dlgCumulativeDistribution + Private Sub dlgCumulativeDistribution_Load(sender As Object, e As EventArgs) Handles MyBase.Load + + End Sub +End Class \ No newline at end of file diff --git a/instat/instat.vbproj b/instat/instat.vbproj index 515e151034b..ac5cc6aeb01 100644 --- a/instat/instat.vbproj +++ b/instat/instat.vbproj @@ -238,6 +238,12 @@ Form + + dlgCumulativeDistribution.vb + + + Form + dlgDeleteColumn.vb @@ -1430,6 +1436,15 @@ dlgCopySheet.vb + + dlgCumulativeDistribution.vb + + + dlgCumulativeDistribution.vb + + + dlgCumulativeDistribution.vb + dlgDeleteColumn.vb From 207d7eea0f4a36c7cd63e35e8be3ddd49379fa30 Mon Sep 17 00:00:00 2001 From: John Lunalo Date: Wed, 2 Mar 2016 09:50:34 +0300 Subject: [PATCH 2/5] Adding Basic code --- instat/dlgCumulativeDistribution.vb | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/instat/dlgCumulativeDistribution.vb b/instat/dlgCumulativeDistribution.vb index 000d5802aed..97c9773831e 100644 --- a/instat/dlgCumulativeDistribution.vb +++ b/instat/dlgCumulativeDistribution.vb @@ -1,5 +1,22 @@ -Public Class dlgCumulativeDistribution - Private Sub dlgCumulativeDistribution_Load(sender As Object, e As EventArgs) Handles MyBase.Load +' Instat-R +' Copyright (C) 2015 +' +' This program is free software: you can redistribute it and/or modify +' it under the terms of the GNU General Public License as published by +' the Free Software Foundation, either version 3 of the License, or +' (at your option) any later version. +' +' This program is distributed in the hope that it will be useful, +' but WITHOUT ANY WARRANTY; without even the implied warranty of +' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +' GNU General Public License for more details. +' +' You should have received a copy of the GNU General Public License k +' along with this program. If not, see . +Imports instat.Translations +Public Class dlgCumulativeDistribution + Private Sub dlgCumulativeDistribution_Load(sender As Object, e As EventArgs) Handles MyBase.Load + autoTranslate(Me) End Sub End Class \ No newline at end of file From b868f432a7a1b356f44c4508f3d1152056af11e9 Mon Sep 17 00:00:00 2001 From: John Lunalo Date: Wed, 2 Mar 2016 09:59:01 +0300 Subject: [PATCH 3/5] dlgReorderLevels Creating new dialog --- instat/dlgReorderLevels.Designer.vb | 51 ++++++++++++ instat/dlgReorderLevels.fr-FR.resx | 15 ++++ instat/dlgReorderLevels.resx | 120 ++++++++++++++++++++++++++++ instat/dlgReorderLevels.sw-KE.resx | 15 ++++ instat/dlgReorderLevels.vb | 3 + instat/instat.vbproj | 15 ++++ 6 files changed, 219 insertions(+) create mode 100644 instat/dlgReorderLevels.Designer.vb create mode 100644 instat/dlgReorderLevels.fr-FR.resx create mode 100644 instat/dlgReorderLevels.resx create mode 100644 instat/dlgReorderLevels.sw-KE.resx create mode 100644 instat/dlgReorderLevels.vb diff --git a/instat/dlgReorderLevels.Designer.vb b/instat/dlgReorderLevels.Designer.vb new file mode 100644 index 00000000000..a7f61f5e358 --- /dev/null +++ b/instat/dlgReorderLevels.Designer.vb @@ -0,0 +1,51 @@ + _ +Partial Class dlgReorderLevels + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.ucrBase = New instat.ucrButtons() + Me.SuspendLayout() + ' + 'ucrBase + ' + Me.ucrBase.Location = New System.Drawing.Point(13, 196) + Me.ucrBase.Name = "ucrBase" + Me.ucrBase.Size = New System.Drawing.Size(410, 53) + Me.ucrBase.TabIndex = 0 + ' + 'dlgReorderLevels + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(447, 261) + Me.Controls.Add(Me.ucrBase) + Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow + Me.Name = "dlgReorderLevels" + Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen + Me.Tag = "Reorder_Levels" + Me.Text = "Reorder Levels" + Me.ResumeLayout(False) + + End Sub + + Friend WithEvents ucrBase As ucrButtons +End Class diff --git a/instat/dlgReorderLevels.fr-FR.resx b/instat/dlgReorderLevels.fr-FR.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/dlgReorderLevels.fr-FR.resx @@ -0,0 +1,15 @@ + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgReorderLevels.resx b/instat/dlgReorderLevels.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/instat/dlgReorderLevels.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgReorderLevels.sw-KE.resx b/instat/dlgReorderLevels.sw-KE.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/dlgReorderLevels.sw-KE.resx @@ -0,0 +1,15 @@ + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgReorderLevels.vb b/instat/dlgReorderLevels.vb new file mode 100644 index 00000000000..2287b8b7d6d --- /dev/null +++ b/instat/dlgReorderLevels.vb @@ -0,0 +1,3 @@ +Public Class dlgReorderLevels + +End Class \ No newline at end of file diff --git a/instat/instat.vbproj b/instat/instat.vbproj index ac5cc6aeb01..cfa65503e13 100644 --- a/instat/instat.vbproj +++ b/instat/instat.vbproj @@ -298,6 +298,12 @@ Form + + dlgReorderLevels.vb + + + Form + dlgReorderSheet.vb @@ -1526,6 +1532,15 @@ dlgRenameSheet.vb + + dlgReorderLevels.vb + + + dlgReorderLevels.vb + + + dlgReorderLevels.vb + dlgReorderSheet.vb From b69258b44d8b227b08b52d18a64465e1899c3886 Mon Sep 17 00:00:00 2001 From: John Lunalo Date: Wed, 2 Mar 2016 10:00:41 +0300 Subject: [PATCH 4/5] dlgReoderLevels Adding Basic code --- instat/dlgReorderLevels.vb | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/instat/dlgReorderLevels.vb b/instat/dlgReorderLevels.vb index 2287b8b7d6d..4dfd9bdf3a5 100644 --- a/instat/dlgReorderLevels.vb +++ b/instat/dlgReorderLevels.vb @@ -1,3 +1,22 @@ -Public Class dlgReorderLevels +' Instat-R +' Copyright (C) 2015 +' +' This program is free software: you can redistribute it and/or modify +' it under the terms of the GNU General Public License as published by +' the Free Software Foundation, either version 3 of the License, or +' (at your option) any later version. +' +' This program is distributed in the hope that it will be useful, +' but WITHOUT ANY WARRANTY; without even the implied warranty of +' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +' GNU General Public License for more details. +' +' You should have received a copy of the GNU General Public License k +' along with this program. If not, see . +Imports instat.Translations +Public Class dlgReorderLevels + Private Sub dlgReorderLevels_Load(sender As Object, e As EventArgs) Handles MyBase.Load + autoTranslate(Me) + End Sub End Class \ No newline at end of file From c3b1c5c824a4f72382d07fc96e81005434e68a41 Mon Sep 17 00:00:00 2001 From: John Lunalo Date: Wed, 2 Mar 2016 10:11:57 +0300 Subject: [PATCH 5/5] dlgReferenceLevels: Creating New Dialog --- instat/dlgReferenceLevels.Designer.vb | 51 +++++++++++ instat/dlgReferenceLevels.fr-FR.resx | 15 ++++ instat/dlgReferenceLevels.resx | 120 ++++++++++++++++++++++++++ instat/dlgReferenceLevels.sw-KE.resx | 15 ++++ instat/dlgReferenceLevels.vb | 22 +++++ instat/instat.vbproj | 15 ++++ 6 files changed, 238 insertions(+) create mode 100644 instat/dlgReferenceLevels.Designer.vb create mode 100644 instat/dlgReferenceLevels.fr-FR.resx create mode 100644 instat/dlgReferenceLevels.resx create mode 100644 instat/dlgReferenceLevels.sw-KE.resx create mode 100644 instat/dlgReferenceLevels.vb diff --git a/instat/dlgReferenceLevels.Designer.vb b/instat/dlgReferenceLevels.Designer.vb new file mode 100644 index 00000000000..b9a20047b2e --- /dev/null +++ b/instat/dlgReferenceLevels.Designer.vb @@ -0,0 +1,51 @@ + _ +Partial Class dlgReferenceLevels + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.ucrBase = New instat.ucrButtons() + Me.SuspendLayout() + ' + 'ucrBase + ' + Me.ucrBase.Location = New System.Drawing.Point(12, 196) + Me.ucrBase.Name = "ucrBase" + Me.ucrBase.Size = New System.Drawing.Size(410, 53) + Me.ucrBase.TabIndex = 0 + ' + 'dlgReferenceLevels + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(432, 261) + Me.Controls.Add(Me.ucrBase) + Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow + Me.Name = "dlgReferenceLevels" + Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen + Me.Tag = "Reference_Levels" + Me.Text = "Reference Levels" + Me.ResumeLayout(False) + + End Sub + + Friend WithEvents ucrBase As ucrButtons +End Class diff --git a/instat/dlgReferenceLevels.fr-FR.resx b/instat/dlgReferenceLevels.fr-FR.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/dlgReferenceLevels.fr-FR.resx @@ -0,0 +1,15 @@ + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgReferenceLevels.resx b/instat/dlgReferenceLevels.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/instat/dlgReferenceLevels.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgReferenceLevels.sw-KE.resx b/instat/dlgReferenceLevels.sw-KE.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/dlgReferenceLevels.sw-KE.resx @@ -0,0 +1,15 @@ + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/instat/dlgReferenceLevels.vb b/instat/dlgReferenceLevels.vb new file mode 100644 index 00000000000..ecdc7903194 --- /dev/null +++ b/instat/dlgReferenceLevels.vb @@ -0,0 +1,22 @@ +' Instat-R +' Copyright (C) 2015 +' +' This program is free software: you can redistribute it and/or modify +' it under the terms of the GNU General Public License as published by +' the Free Software Foundation, either version 3 of the License, or +' (at your option) any later version. +' +' This program is distributed in the hope that it will be useful, +' but WITHOUT ANY WARRANTY; without even the implied warranty of +' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +' GNU General Public License for more details. +' +' You should have received a copy of the GNU General Public License k +' along with this program. If not, see . + +Imports instat.Translations +Public Class dlgReferenceLevels + Private Sub dlgReferenceLevels_Load(sender As Object, e As EventArgs) Handles MyBase.Load + autoTranslate(Me) + End Sub +End Class \ No newline at end of file diff --git a/instat/instat.vbproj b/instat/instat.vbproj index cfa65503e13..5ece843a184 100644 --- a/instat/instat.vbproj +++ b/instat/instat.vbproj @@ -292,6 +292,12 @@ Form + + dlgReferenceLevels.vb + + + Form + dlgRenameSheet.vb @@ -1523,6 +1529,15 @@ dlgPrintPreviewOptions.vb + + dlgReferenceLevels.vb + + + dlgReferenceLevels.vb + + + dlgReferenceLevels.vb + dlgRenameSheet.vb