Sunteți pe pagina 1din 20

-30

-25
-20
-15
-10
-5
-5
0
5
10
15
15
20
25
30
35
40

0.003917
0.003917
0.003917
0.003917
0.003917
0.003917
0.018598
0.003917
0.003917
0.003917
0.003917
0.0081
0.003917
0.003917
0.003917
0.003917
0.003917

-10.18942
413.0742
-10.89316
413.0742
-11.59689
413.0742
-12.30062
413.0742
-13.00436
413.0742
-13.70809
413.0742
-13.70809
9312.226
-14.41183
413.0742
-15.11556
413.0742
-15.81929
413.0742
-16.52303
413.0742
-16.52303
1766.408
-17.22676
413.0742
-17.9305
413.0742
-18.63423
413.0742
-19.33797
413.0742
-20.0417
413.0742

5.183465
5.084377
4.990344
4.900337
4.814678
4.73297
17.32317
4.65473
4.579368
4.50791
4.439148
8.416092
4.372797
4.309289
4.248838
4.190117
4.133645

8.109211
8.26725
8.423029
8.57774
8.730349
8.881064
11.52084
9.030344
9.178956
9.324457
9.468892
10.32808
9.612569
9.754234
9.893014
10.03166
10.1687

1785.185
1751.059
1718.674
1687.676
1658.175
1630.035
5966.099
1603.089
1577.134
1552.524
1528.843
2898.502
1505.991
1484.119
1463.3
1443.076
1423.627

COD PENTRU REZOLVAREA PROBLEMEI

using
using
using
using
using
using
using

System;
System.Collections.Generic;
System.ComponentModel;
System.Data;
System.Drawing;
System.Text;
System.Windows.Forms;

namespace TDEE___Tabel_de_montaj
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public
public
public
public
public
public
public
public
public
public
public
public

float
float
float
float
float
float
float
float
float
float
float
float

a1;
a2;
a3;
a4;
a5;
a6;
a7;
a8;
a9;
an,bn, va, vb;
min, max, mx;
eroare;

private void despreToolStripMenuItem_Click(object sender, EventArgs e)


{
MessageBox.Show("Zidu Mihai Daniel, 2406 B, TDEE");
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if(textBox1.Text != "" && textBox1.Text != "" && textBox2.Text != "" &&
textBox3.Text != "" && textBox4.Text != "" && textBox6.Text != "" && textBox7.Text != ""
&& textBox8.Text != "" && textBox9.Text != "" && textBox15.Text != "")
{
float a1 = float.Parse(textBox1.Text); // tn
float a2 = float.Parse(textBox2.Text); // tm
float a3 = float.Parse(textBox3.Text); // gama n
float a4 = float.Parse(textBox4.Text); // gama m
//float a5 = float.Parse(textBox5.Text); sigma n
float a6 = float.Parse(textBox6.Text); // sigma m
float a7 = float.Parse(textBox7.Text); // alfa
float a8 = float.Parse(textBox8.Text); // E

float a9 = float.Parse(textBox9.Text); // d0
an = a6 - a8 / 24 * (a9 * a9 * a4 * a4) / (a6 * a6) + a7 * a8 * (a2 - a1);
bn = a8 / 24 * a9 * a9 * a3 * a3;
textBox10.Text = an + "";
textBox11.Text = bn + "";
min = 0; max = 0;
for (int i = -1; i <= 20; i++)
{
if ((i * i * i - i * i * an - bn) * ((i + 1) * (i + 1) * (i + 1) - (i +
1) * (i + 1) * an - bn) < 1)
{
min = i ;
max = i+1;
break;
}
}
mx = (min + max) / 2;
eroare = 100;
while (Math.Abs(eroare) >
{
eroare = mx * mx * mx
if (eroare > 0) max =
if (eroare < 0) min =
mx = (min + max) / 2;
}

float.Parse(textBox19.Text))
- an * mx * mx - bn;
(max + mx) / 2;
(min + mx) / 2;

textBox12.Text = mx + "";
textBox13.Text = a9 * a9 * a3 / (8 * mx) + "";
textBox14.Text = mx * float.Parse(textBox15.Text) + "";
}
else MessageBox.Show("Completati toate valorile!");
}
private void button2_Click(object sender, EventArgs e)
{
richTextBox1.Text = richTextBox1.Text + " " + textBox1.Text + "
textBox3.Text + "
" + textBox10.Text + "
" + textBox11.Text + "
" + textBox12.Text + "
" + textBox13.Text + "
textBox14.Text;
richTextBox1.Text += Environment.NewLine;
}
private void iesireToolStripMenuItem_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}

" +
" +

COD PENTRU DESIGN


espace TDEE___Tabel_de_montaj
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed;
otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.despreToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.iesireToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.button1 = new System.Windows.Forms.Button();
this.textBox19 = new System.Windows.Forms.TextBox();
this.label16 = new System.Windows.Forms.Label();
this.textBox15 = new System.Windows.Forms.TextBox();
this.label15 = new System.Windows.Forms.Label();
this.textBox9 = new System.Windows.Forms.TextBox();
this.label9 = new System.Windows.Forms.Label();
this.textBox8 = new System.Windows.Forms.TextBox();
this.label8 = new System.Windows.Forms.Label();
this.textBox7 = new System.Windows.Forms.TextBox();
this.label7 = new System.Windows.Forms.Label();
this.textBox6 = new System.Windows.Forms.TextBox();
this.label6 = new System.Windows.Forms.Label();
this.textBox4 = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.textBox3 = new System.Windows.Forms.TextBox();
this.label3 = new System.Windows.Forms.Label();

this.textBox2 = new System.Windows.Forms.TextBox();


this.label2 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.button2 = new System.Windows.Forms.Button();
this.textBox14 = new System.Windows.Forms.TextBox();
this.textBox13 = new System.Windows.Forms.TextBox();
this.textBox12 = new System.Windows.Forms.TextBox();
this.label14 = new System.Windows.Forms.Label();
this.textBox11 = new System.Windows.Forms.TextBox();
this.label13 = new System.Windows.Forms.Label();
this.textBox10 = new System.Windows.Forms.TextBox();
this.label12 = new System.Windows.Forms.Label();
this.label11 = new System.Windows.Forms.Label();
this.label10 = new System.Windows.Forms.Label();
this.tabPage3 = new System.Windows.Forms.TabPage();
this.label30 = new System.Windows.Forms.Label();
this.label28 = new System.Windows.Forms.Label();
this.label29 = new System.Windows.Forms.Label();
this.label26 = new System.Windows.Forms.Label();
this.label27 = new System.Windows.Forms.Label();
this.label32 = new System.Windows.Forms.Label();
this.label22 = new System.Windows.Forms.Label();
this.label25 = new System.Windows.Forms.Label();
this.label31 = new System.Windows.Forms.Label();
this.label20 = new System.Windows.Forms.Label();
this.label21 = new System.Windows.Forms.Label();
this.label24 = new System.Windows.Forms.Label();
this.label23 = new System.Windows.Forms.Label();
this.label19 = new System.Windows.Forms.Label();
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.menuStrip1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.tabPage3.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.despreToolStripMenuItem,
this.iesireToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(634, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// despreToolStripMenuItem
//
this.despreToolStripMenuItem.Name = "despreToolStripMenuItem";
this.despreToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
this.despreToolStripMenuItem.Text = "Despre";
this.despreToolStripMenuItem.Click += new
System.EventHandler(this.despreToolStripMenuItem_Click);
//

// iesireToolStripMenuItem
//
this.iesireToolStripMenuItem.Name = "iesireToolStripMenuItem";
this.iesireToolStripMenuItem.Size = new System.Drawing.Size(46, 20);
this.iesireToolStripMenuItem.Text = "Iesire";
this.iesireToolStripMenuItem.Click += new
System.EventHandler(this.iesireToolStripMenuItem_Click);
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Location = new System.Drawing.Point(13, 28);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(609, 372);
this.tabControl1.TabIndex = 1;
//
// tabPage1
//
this.tabPage1.Controls.Add(this.button1);
this.tabPage1.Controls.Add(this.textBox19);
this.tabPage1.Controls.Add(this.label16);
this.tabPage1.Controls.Add(this.textBox15);
this.tabPage1.Controls.Add(this.label15);
this.tabPage1.Controls.Add(this.textBox9);
this.tabPage1.Controls.Add(this.label9);
this.tabPage1.Controls.Add(this.textBox8);
this.tabPage1.Controls.Add(this.label8);
this.tabPage1.Controls.Add(this.textBox7);
this.tabPage1.Controls.Add(this.label7);
this.tabPage1.Controls.Add(this.textBox6);
this.tabPage1.Controls.Add(this.label6);
this.tabPage1.Controls.Add(this.textBox4);
this.tabPage1.Controls.Add(this.label4);
this.tabPage1.Controls.Add(this.textBox3);
this.tabPage1.Controls.Add(this.label3);
this.tabPage1.Controls.Add(this.textBox2);
this.tabPage1.Controls.Add(this.label2);
this.tabPage1.Controls.Add(this.textBox1);
this.tabPage1.Controls.Add(this.label1);
this.tabPage1.Location = new System.Drawing.Point(4, 22);
this.tabPage1.Name = "tabPage1";
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
this.tabPage1.Size = new System.Drawing.Size(601, 346);
this.tabPage1.TabIndex = 0;
this.tabPage1.Text = "Date de intrare";
this.tabPage1.UseVisualStyleBackColor = true;
//
// button1
//
this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button1.Location = new System.Drawing.Point(496, 6);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(99, 30);
this.button1.TabIndex = 2;

this.button1.Text = "Calculeaza";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// textBox19
//
this.textBox19.Location = new System.Drawing.Point(484, 81);
this.textBox19.Name = "textBox19";
this.textBox19.Size = new System.Drawing.Size(100, 20);
this.textBox19.TabIndex = 1;
this.textBox19.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label16
//
this.label16.AutoSize = true;
this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label16.Location = new System.Drawing.Point(457, 82);
this.label16.Name = "label16";
this.label16.Size = new System.Drawing.Size(16, 16);
this.label16.TabIndex = 0;
this.label16.Text = "";
//
// textBox15
//
this.textBox15.Location = new System.Drawing.Point(276, 166);
this.textBox15.Name = "textBox15";
this.textBox15.Size = new System.Drawing.Size(100, 20);
this.textBox15.TabIndex = 1;
this.textBox15.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label15
//
this.label15.AutoSize = true;
this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label15.Location = new System.Drawing.Point(239, 170);
this.label15.Name = "label15";
this.label15.Size = new System.Drawing.Size(16, 16);
this.label15.TabIndex = 0;
this.label15.Text = "s";
//
// textBox9
//
this.textBox9.Location = new System.Drawing.Point(276, 121);
this.textBox9.Name = "textBox9";
this.textBox9.Size = new System.Drawing.Size(100, 20);
this.textBox9.TabIndex = 1;
this.textBox9.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label9
//
this.label9.AutoSize = true;
this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));

this.label9.Location = new System.Drawing.Point(239, 125);


this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(25, 16);
this.label9.TabIndex = 0;
this.label9.Text = "d0";
//
// textBox8
//
this.textBox8.Location = new System.Drawing.Point(276, 81);
this.textBox8.Name = "textBox8";
this.textBox8.Size = new System.Drawing.Size(100, 20);
this.textBox8.TabIndex = 1;
this.textBox8.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label8
//
this.label8.AutoSize = true;
this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label8.Location = new System.Drawing.Point(239, 85);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(18, 16);
this.label8.TabIndex = 0;
this.label8.Text = "E";
//
// textBox7
//
this.textBox7.Location = new System.Drawing.Point(276, 40);
this.textBox7.Name = "textBox7";
this.textBox7.Size = new System.Drawing.Size(100, 20);
this.textBox7.TabIndex = 1;
this.textBox7.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label7
//
this.label7.AutoSize = true;
this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label7.Location = new System.Drawing.Point(239, 44);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(16, 16);
this.label7.TabIndex = 0;
this.label7.Text = "";
//
// textBox6
//
this.textBox6.Location = new System.Drawing.Point(65, 210);
this.textBox6.Name = "textBox6";
this.textBox6.Size = new System.Drawing.Size(100, 20);
this.textBox6.TabIndex = 1;
this.textBox6.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label6
//
this.label6.AutoSize = true;

this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,


System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label6.Location = new System.Drawing.Point(30, 214);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(29, 16);
this.label6.TabIndex = 0;
this.label6.Text = "m";
//
// textBox4
//
this.textBox4.Location = new System.Drawing.Point(65, 166);
this.textBox4.Name = "textBox4";
this.textBox4.Size = new System.Drawing.Size(100, 20);
this.textBox4.TabIndex = 1;
this.textBox4.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label4
//
this.label4.AutoSize = true;
this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label4.Location = new System.Drawing.Point(30, 170);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(28, 16);
this.label4.TabIndex = 0;
this.label4.Text = "m";
//
// textBox3
//
this.textBox3.Location = new System.Drawing.Point(65, 121);
this.textBox3.Name = "textBox3";
this.textBox3.Size = new System.Drawing.Size(100, 20);
this.textBox3.TabIndex = 1;
this.textBox3.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(30, 125);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(24, 16);
this.label3.TabIndex = 0;
this.label3.Text = "n";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(65, 81);
this.textBox2.Name = "textBox2";
this.textBox2.Size = new System.Drawing.Size(100, 20);
this.textBox2.TabIndex = 1;
this.textBox2.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label2

//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(30, 85);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(24, 16);
this.label2.TabIndex = 0;
this.label2.Text = "tm";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(65, 40);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 20);
this.textBox1.TabIndex = 1;
this.textBox1.TextChanged += new
System.EventHandler(this.textBox1_TextChanged);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(30, 44);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(20, 16);
this.label1.TabIndex = 0;
this.label1.Text = "tn";
//
// tabPage2
//
this.tabPage2.Controls.Add(this.button2);
this.tabPage2.Controls.Add(this.textBox14);
this.tabPage2.Controls.Add(this.textBox13);
this.tabPage2.Controls.Add(this.textBox12);
this.tabPage2.Controls.Add(this.label14);
this.tabPage2.Controls.Add(this.textBox11);
this.tabPage2.Controls.Add(this.label13);
this.tabPage2.Controls.Add(this.textBox10);
this.tabPage2.Controls.Add(this.label12);
this.tabPage2.Controls.Add(this.label11);
this.tabPage2.Controls.Add(this.label10);
this.tabPage2.Location = new System.Drawing.Point(4, 22);
this.tabPage2.Name = "tabPage2";
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
this.tabPage2.Size = new System.Drawing.Size(601, 346);
this.tabPage2.TabIndex = 1;
this.tabPage2.Text = "Calcule";
this.tabPage2.UseVisualStyleBackColor = true;
//
// button2
//
this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.button2.Location = new System.Drawing.Point(494, 6);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(101, 23);

this.button2.TabIndex = 4;
this.button2.Text = "Afiseaza";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// textBox14
//
this.textBox14.Location = new System.Drawing.Point(90, 214);
this.textBox14.Name = "textBox14";
this.textBox14.Size = new System.Drawing.Size(100, 20);
this.textBox14.TabIndex = 3;
//
// textBox13
//
this.textBox13.Location = new System.Drawing.Point(90, 169);
this.textBox13.Name = "textBox13";
this.textBox13.Size = new System.Drawing.Size(100, 20);
this.textBox13.TabIndex = 3;
//
// textBox12
//
this.textBox12.Location = new System.Drawing.Point(90, 126);
this.textBox12.Name = "textBox12";
this.textBox12.Size = new System.Drawing.Size(100, 20);
this.textBox12.TabIndex = 3;
//
// label14
//
this.label14.AutoSize = true;
this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label14.Location = new System.Drawing.Point(33, 218);
this.label14.Name = "label14";
this.label14.Size = new System.Drawing.Size(26, 16);
this.label14.TabIndex = 2;
this.label14.Text = "Tn";
//
// textBox11
//
this.textBox11.Location = new System.Drawing.Point(90, 78);
this.textBox11.Name = "textBox11";
this.textBox11.Size = new System.Drawing.Size(100, 20);
this.textBox11.TabIndex = 3;
//
// label13
//
this.label13.AutoSize = true;
this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label13.Location = new System.Drawing.Point(33, 173);
this.label13.Name = "label13";
this.label13.Size = new System.Drawing.Size(56, 16);
this.label13.TabIndex = 2;
this.label13.Text = "max,n";
//
// textBox10
//
this.textBox10.Location = new System.Drawing.Point(90, 36);

this.textBox10.Name = "textBox10";
this.textBox10.Size = new System.Drawing.Size(100, 20);
this.textBox10.TabIndex = 3;
//
// label12
//
this.label12.AutoSize = true;
this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label12.Location = new System.Drawing.Point(33, 130);
this.label12.Name = "label12";
this.label12.Size = new System.Drawing.Size(25, 16);
this.label12.TabIndex = 2;
this.label12.Text = "n";
//
// label11
//
this.label11.AutoSize = true;
this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label11.Location = new System.Drawing.Point(33, 82);
this.label11.Name = "label11";
this.label11.Size = new System.Drawing.Size(26, 16);
this.label11.TabIndex = 2;
this.label11.Text = "Bn";
//
// label10
//
this.label10.AutoSize = true;
this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label10.Location = new System.Drawing.Point(33, 40);
this.label10.Name = "label10";
this.label10.Size = new System.Drawing.Size(26, 16);
this.label10.TabIndex = 2;
this.label10.Text = "An";
//
// tabPage3
//
this.tabPage3.Controls.Add(this.label30);
this.tabPage3.Controls.Add(this.label28);
this.tabPage3.Controls.Add(this.label29);
this.tabPage3.Controls.Add(this.label26);
this.tabPage3.Controls.Add(this.label27);
this.tabPage3.Controls.Add(this.label32);
this.tabPage3.Controls.Add(this.label22);
this.tabPage3.Controls.Add(this.label25);
this.tabPage3.Controls.Add(this.label31);
this.tabPage3.Controls.Add(this.label20);
this.tabPage3.Controls.Add(this.label21);
this.tabPage3.Controls.Add(this.label24);
this.tabPage3.Controls.Add(this.label23);
this.tabPage3.Controls.Add(this.label19);
this.tabPage3.Controls.Add(this.richTextBox1);
this.tabPage3.Location = new System.Drawing.Point(4, 22);
this.tabPage3.Name = "tabPage3";
this.tabPage3.Size = new System.Drawing.Size(601, 346);
this.tabPage3.TabIndex = 2;

this.tabPage3.Text = "Tabel de montaj";


this.tabPage3.UseVisualStyleBackColor = true;
//
// label30
//
this.label30.AutoSize = true;
this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label30.Location = new System.Drawing.Point(529, 40);
this.label30.Name = "label30";
this.label30.Size = new System.Drawing.Size(41, 15);
this.label30.TabIndex = 1;
this.label30.Text = "[daN]";
//
// label28
//
this.label28.AutoSize = true;
this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label28.Location = new System.Drawing.Point(440, 40);
this.label28.Name = "label28";
this.label28.Size = new System.Drawing.Size(27, 15);
this.label28.TabIndex = 1;
this.label28.Text = "[m]";
//
// label29
//
this.label29.AutoSize = true;
this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label29.Location = new System.Drawing.Point(528, 9);
this.label29.Name = "label29";
this.label29.Size = new System.Drawing.Size(27, 18);
this.label29.TabIndex = 1;
this.label29.Text = "Tn";
//
// label26
//
this.label26.AutoSize = true;
this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label26.Location = new System.Drawing.Point(291, 39);
this.label26.Name = "label26";
this.label26.Size = new System.Drawing.Size(77, 15);
this.label26.TabIndex = 1;
this.label26.Text = "[daN/mm2]";
//
// label27
//
this.label27.AutoSize = true;
this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label27.Location = new System.Drawing.Point(422, 9);
this.label27.Name = "label27";
this.label27.Size = new System.Drawing.Size(58, 18);
this.label27.TabIndex = 1;
this.label27.Text = "fmax,n";
//

9F,

9F,

11.25F,

9F,

11.25F,

// label32
//
this.label32.AutoSize = true;
this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label32.Location = new System.Drawing.Point(42, 39);
this.label32.Name = "label32";
this.label32.Size = new System.Drawing.Size(77, 15);
this.label32.TabIndex = 1;
this.label32.Text = "[daN/mm2]";
//
// label22
//
this.label22.AutoSize = true;
this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label22.Location = new System.Drawing.Point(46, 39);
this.label22.Name = "label22";
this.label22.Size = new System.Drawing.Size(84, 16);
this.label22.TabIndex = 1;
this.label22.Text = "[daN/mm2]";
//
// label25
//
this.label25.AutoSize = true;
this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label25.Location = new System.Drawing.Point(318, 9);
this.label25.Name = "label25";
this.label25.Size = new System.Drawing.Size(27, 18);
this.label25.TabIndex = 1;
this.label25.Text = "n";
//
// label31
//
this.label31.AutoSize = true;
this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label31.Location = new System.Drawing.Point(69, 9);
this.label31.Name = "label31";
this.label31.Size = new System.Drawing.Size(25, 18);
this.label31.TabIndex = 1;
this.label31.Text = "n";
//
// label20
//
this.label20.AutoSize = true;
this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif",
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label20.Location = new System.Drawing.Point(3, 39);
this.label20.Name = "label20";
this.label20.Size = new System.Drawing.Size(30, 15);
this.label20.TabIndex = 1;
this.label20.Text = "[C]";
//
// label21
//
this.label21.AutoSize = true;

9F,

9.75F,

11.25F,

11.25F,

9F,

this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F,


System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label21.Location = new System.Drawing.Point(73, 9);
this.label21.Name = "label21";
this.label21.Size = new System.Drawing.Size(27, 20);
this.label21.TabIndex = 1;
this.label21.Text = "n";
//
// label24
//
this.label24.AutoSize = true;
this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label24.Location = new System.Drawing.Point(227, 9);
this.label24.Name = "label24";
this.label24.Size = new System.Drawing.Size(28, 18);
this.label24.TabIndex = 1;
this.label24.Text = "Bn";
//
// label23
//
this.label23.AutoSize = true;
this.label23.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label23.Location = new System.Drawing.Point(161, 9);
this.label23.Name = "label23";
this.label23.Size = new System.Drawing.Size(27, 18);
this.label23.TabIndex = 1;
this.label23.Text = "An";
//
// label19
//
this.label19.AutoSize = true;
this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F,
System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label19.Location = new System.Drawing.Point(3, 9);
this.label19.Name = "label19";
this.label19.Size = new System.Drawing.Size(22, 18);
this.label19.TabIndex = 1;
this.label19.Text = "tn";
//
// richTextBox1
//
this.richTextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif",
9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.richTextBox1.Location = new System.Drawing.Point(3, 58);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(595, 285);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.Text = "";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(634, 412);
this.Controls.Add(this.tabControl1);
this.Controls.Add(this.menuStrip1);

this.MainMenuStrip = this.menuStrip1;
this.Name = "Form1";
this.Text = "Tabel de montaj";
this.Load += new System.EventHandler(this.Form1_Load);
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
this.tabPage2.ResumeLayout(false);
this.tabPage2.PerformLayout();
this.tabPage3.ResumeLayout(false);
this.tabPage3.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private

System.Windows.Forms.MenuStrip menuStrip1;
System.Windows.Forms.ToolStripMenuItem despreToolStripMenuItem;
System.Windows.Forms.TabControl tabControl1;
System.Windows.Forms.TabPage tabPage1;
System.Windows.Forms.TextBox textBox1;
System.Windows.Forms.Label label1;
System.Windows.Forms.TabPage tabPage2;
System.Windows.Forms.TextBox textBox9;
System.Windows.Forms.Label label9;
System.Windows.Forms.TextBox textBox8;
System.Windows.Forms.Label label8;
System.Windows.Forms.TextBox textBox7;
System.Windows.Forms.Label label7;
System.Windows.Forms.TextBox textBox6;
System.Windows.Forms.Label label6;
System.Windows.Forms.TextBox textBox4;
System.Windows.Forms.Label label4;
System.Windows.Forms.TextBox textBox3;
System.Windows.Forms.Label label3;
System.Windows.Forms.TextBox textBox2;
System.Windows.Forms.Label label2;
System.Windows.Forms.TextBox textBox11;
System.Windows.Forms.TextBox textBox10;
System.Windows.Forms.Label label11;
System.Windows.Forms.Label label10;
System.Windows.Forms.Button button1;
System.Windows.Forms.TabPage tabPage3;
System.Windows.Forms.Button button2;
System.Windows.Forms.TextBox textBox14;
System.Windows.Forms.TextBox textBox13;
System.Windows.Forms.TextBox textBox12;
System.Windows.Forms.Label label14;
System.Windows.Forms.Label label13;
System.Windows.Forms.Label label12;
System.Windows.Forms.TextBox textBox15;
System.Windows.Forms.Label label15;
System.Windows.Forms.ToolStripMenuItem iesireToolStripMenuItem;
System.Windows.Forms.TextBox textBox19;

private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
private
}
}

System.Windows.Forms.Label label16;
System.Windows.Forms.RichTextBox richTextBox1;
System.Windows.Forms.Label label30;
System.Windows.Forms.Label label28;
System.Windows.Forms.Label label29;
System.Windows.Forms.Label label26;
System.Windows.Forms.Label label27;
System.Windows.Forms.Label label32;
System.Windows.Forms.Label label22;
System.Windows.Forms.Label label25;
System.Windows.Forms.Label label31;
System.Windows.Forms.Label label20;
System.Windows.Forms.Label label21;
System.Windows.Forms.Label label24;
System.Windows.Forms.Label label23;
System.Windows.Forms.Label label19;

S-ar putea să vă placă și