Internet saytlari
https://www.spot.uz/oz/2018/09/28/resurslar/
http://www.uzavtoyul.uz/uz/post/neftgaz-sohasi-samaradorligi-va-istiqbollari-muhokama-qilindi.html
http://uz.denemetr.com/category/%D0%94%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D1%8B/
https://daryo.uz/2018/08/31/shoxpaxta-gaz-koni-boyicha-ozbekiston-rossiya-hamkorligi-5-yilga-uzaytirildi/
https://daryo.uz/2018/05/29/gazprom-va-ozbekneftgaz-shoxpaxta-konida-gaz-qazib-olish-boyicha-yangi-kelishuv-imzoladi/
https://uz.wikipedia.org/wiki/Gaz_konlari
https://www.bp.com/content/dam/bp/business-sites/en/global/corporate/pdfs/energy-economics/statistical-review/bp-stats-review-2018-full-report.pdf
https://www.bp.com/content/dam/bp/business-sites/en/global/corporate/pdfs/energy-economics/energy-outlook/bp-energy-outlook-2019.pdf
https://beam.venngage.com/edit/f74a80c1-fdbb-44e6-882d-881474d740da?token=59f684caf65571b12f9d3d35fa63d7aa&createdBy=
http://uza.uz/uz/politics/neft-gaz-sohasi-samaradorligi-va-istiqbollari-muhokama-qilin-25-01-2018?month=04&year=2018&ELEMENT_CODE=neft-gaz-sohasi-samaradorligi-va-istiqbollari-muhokama-qilin-25-01-2018&SECTION_CODE=politics
Ilova
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;
namespace Dissertatsiya
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
DataTable table = new DataTable();
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the '_72konDataSet.kon' table. You can move, or remove it, as needed.
this.konTableAdapter.Fill(this._72konDataSet.kon);
}
private void button3_Click(object sender, EventArgs e)
{
Form2 fr1 = new Form2();
fr1.Show();
}
private void panel1_Paint(object sender, PaintEventArgs e)
{
}
private void groupBox1_Enter(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
Form3 fr3 = new Form3();
fr3.Show();
}
private void button6_Click(object sender, EventArgs e)
{
table.Columns.Add(" ID ", typeof(int));
table.Columns.Add("Sana", typeof(string));
table.Columns.Add("Kunlik neft", typeof(string));
dataGridView2.DataSource = table;
string[] lines = File.ReadAllLines(@"C:\Users\Feruza\Desktop\table.txt");
string[] values;
for(int i=0; i
{
values = lines[i].ToString().Split('/');
string[] row = new string[values.Length];
for(int j=0; j
{
row[j] = values[j].Trim();
}
table.Rows.Add(row);
}
q0.Text = "29342.83";
qa.Text = "8.18";
totk.Text = "7540.16";
qostdr.Text = "16641.52";
qostizv.Text = "13053.39";
toplangan.Text = "12052.11";
}
private void groupBox3_Enter(object sender, EventArgs e)
{
}
private void button4_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Form4 form4 = new Form4();
form4.Show();
}
}
}
namespace Dissertatsiya
{
partial class Form2
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
///
disposing">true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form2));
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Times New Roman", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
this.label1.Location = new System.Drawing.Point(41, 43);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(510, 346);
this.label1.TabIndex = 0;
this.label1.Text = resources.GetString("label1.Text");
this.label1.Click += new System.EventHandler(this.label1_Click);
//
// button1
//
this.button1.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.button1.Location = new System.Drawing.Point(453, 469);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(98, 32);
this.button1.TabIndex = 1;
this.button1.Text = "OK";
this.button1.UseVisualStyleBackColor = false;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// Form2
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.BackColor = System.Drawing.Color.OldLace;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.ClientSize = new System.Drawing.Size(604, 531);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "Form2";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Info";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Dissertatsiya
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Hide();
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Windows.Forms.DataVisualization.Charting;
namespace Dissertatsiya
{
public partial class Form4 : Form
{
public Form4()
{
InitializeComponent();
}
private void Form4_Load(object sender, EventArgs e)
{
float x1 = 2012;
float x2 = 2013;
float x3 = 2014;
float x4 = 2015;
float x5 = 2016;
float x6 = 2017;
float x7 = 2018;
float x8 = 2019;
float x9 = 2020;
float x10 = 2021;
float x11 = 2022;
float x12 = 2023;
float x13 = 2024;
float x14 = 2025;
float x15 = 2026;
float x16 = 2027;
float x17 = 2028;
float x18 = 2029;
float x19 = 2030;
float x20 = 2031;
float x21 = 2032;
float x22 = 2033;
float x23 = 2034;
float x24 = 2035;
float x25 = 2036;
float x26 = 2037;
float x27 = 2038;
float x28 = 2039;
float x29 = 2040;
var chart = chart1.ChartAreas[0];
chart.AxisX.IntervalType = DateTimeIntervalType.Number;
chart.AxisX.LabelStyle.Format = "";
chart.AxisY.LabelStyle.Format = "";
chart.AxisY.LabelStyle.IsEndLabelVisible = true;
chart.AxisX.Minimum = 2012;
chart.AxisX.Maximum = 2040;
chart.AxisY.Minimum = 0;
chart.AxisY.Maximum = 100;
chart.AxisX.Interval = 1;
chart.AxisY.Interval = 5;
chart1.Series.Add("Ft, t");
chart1.Series["Ft, t"].ChartType = SeriesChartType.Line;
chart1.Series["Ft, t"].Color = Color.Red;
chart1.Series[0].IsVisibleInLegend = false;
chart1.Series["Ft, t"].Points.AddXY(x1, 15.7);
chart1.Series["Ft, t"].Points.AddXY(x2, 57.2);
chart1.Series["Ft, t"].Points.AddXY(x3, 62.7);
chart1.Series["Ft, t"].Points.AddXY(x4, 56.4);
chart1.Series["Ft, t"].Points.AddXY(x5, 61.3);
chart1.Series["Ft, t"].Points.AddXY(x6, 53.46);
chart1.Series["Ft, t"].Points.AddXY(x7, 55.8);
chart1.Series["Ft, t"].Points.AddXY(x8, 70.8);
chart1.Series["Ft, t"].Points.AddXY(x9, 55.6);
chart1.Series["Ft, t"].Points.AddXY(x10, 76.9);
chart1.Series["Ft, t"].Points.AddXY(x11, 61.9);
chart1.Series["Ft, t"].Points.AddXY(x12, 78.3);
chart1.Series["Ft, t"].Points.AddXY(x13, 63.9);
chart1.Series["Ft, t"].Points.AddXY(x14, 84.4);
chart1.Series["Ft, t"].Points.AddXY(x15, 60.3);
chart1.Series["Ft, t"].Points.AddXY(x16, 92.3);
chart1.Series["Ft, t"].Points.AddXY(x17, 66.8);
chart1.Series["Ft, t"].Points.AddXY(x18, 87.9);
chart1.Series["Ft, t"].Points.AddXY(x19, 70.8);
chart1.Series["Ft, t"].Points.AddXY(x20, 68.9);
chart1.Series["Ft, t"].Points.AddXY(x21, 66.1);
chart1.Series["Ft, t"].Points.AddXY(x22, 64.6);
chart1.Series["Ft, t"].Points.AddXY(x23, 62.9);
chart1.Series["Ft, t"].Points.AddXY(x24, 57.4);
chart1.Series["Ft, t"].Points.AddXY(x25, 55.5);
chart1.Series["Ft, t"].Points.AddXY(x26, 50.1);
chart1.Series["Ft, t"].Points.AddXY(x27, 47.5);
chart1.Series["Ft, t"].Points.AddXY(x28, 48.6);
chart1.Series["Ft, t"].Points.AddXY(x29, 30.1);
}
private void chart1_Click(object sender, EventArgs e)
{
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Dissertatsiya
{
static class Program
{
///
/// The main entry point for the application.
///
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
Do'stlaringiz bilan baham: |