root/Baza Reklam 2 - Faktury/FullInfoProjectForm.cs @ 692

Wersja 65, 0.8 KB (wprowadzona przez dorota, 17 years temu)
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Text;
7using System.Windows.Forms;
8
9namespace Baza_Reklam
10{
11    public partial class FullInfoProjectForm : Form
12    {
13        public FullInfoProjectForm(int id)
14        {
15            InitializeComponent();
16
17            this.pRODUKCJATableAdapter.Connection.ConnectionString = ConnString.getConnString().Value;
18            this.pRODUKCJATableAdapter.FillById(this.rEKLAMADataSet.PRODUKCJA,id);
19        }
20
21        private void FullInfoProjectForm_Load(object sender, EventArgs e)
22        {
23            label1.Text = Utils.nazwaAgencji(aGENTLabel1.Text);
24        }
25
26        private void button1_Click(object sender, EventArgs e)
27        {
28            this.Close();
29        }
30    }
31}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.