|
Wersja 2, 0.8 KB
(wprowadzona przez dorota, 17 years temu)
|
|
|
| Line | |
|---|
| 1 | using System;
|
|---|
| 2 | using System.Collections.Generic;
|
|---|
| 3 | using System.ComponentModel;
|
|---|
| 4 | using System.Data;
|
|---|
| 5 | using System.Drawing;
|
|---|
| 6 | using System.Text;
|
|---|
| 7 | using System.Windows.Forms;
|
|---|
| 8 |
|
|---|
| 9 | namespace 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.