diff --git a/instat/instat.vbproj b/instat/instat.vbproj index 884c05f1afd..74035c65577 100644 --- a/instat/instat.vbproj +++ b/instat/instat.vbproj @@ -604,6 +604,12 @@ Form + + sdgModelOptions.vb + + + Form + sdgPieChartOptions.vb @@ -2345,6 +2351,15 @@ sdgHistogramOptions.vb + + sdgModelOptions.vb + + + sdgModelOptions.vb + + + sdgModelOptions.vb + sdgANOVAOptions.vb diff --git a/instat/sdgModelOptions.Designer.vb b/instat/sdgModelOptions.Designer.vb new file mode 100644 index 00000000000..adc47a1ea25 --- /dev/null +++ b/instat/sdgModelOptions.Designer.vb @@ -0,0 +1,42 @@ + _ +Partial Class sdgModelOptions + 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.SuspendLayout() + ' + 'sdgModelOptions + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(284, 261) + Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog + Me.MaximizeBox = False + Me.MinimizeBox = False + Me.Name = "sdgModelOptions" + Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent + Me.Tag = "Model_Options" + Me.Text = "Model Options" + Me.ResumeLayout(False) + + End Sub +End Class diff --git a/instat/sdgModelOptions.fr-FR.resx b/instat/sdgModelOptions.fr-FR.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/sdgModelOptions.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/sdgModelOptions.resx b/instat/sdgModelOptions.resx new file mode 100644 index 00000000000..29dcb1b3a35 --- /dev/null +++ b/instat/sdgModelOptions.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/sdgModelOptions.sw-KE.resx b/instat/sdgModelOptions.sw-KE.resx new file mode 100644 index 00000000000..9c9f69d752c --- /dev/null +++ b/instat/sdgModelOptions.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/sdgModelOptions.vb b/instat/sdgModelOptions.vb new file mode 100644 index 00000000000..eb2daf1ce67 --- /dev/null +++ b/instat/sdgModelOptions.vb @@ -0,0 +1,21 @@ +' 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 sdgModelOptions + Private Sub sdgModelOptions_Load(sender As Object, e As EventArgs) Handles MyBase.Load + autoTranslate(Me) + End Sub +End Class \ No newline at end of file