Zbiór zmian 395
- Data:
- 2009-02-24 17:40:52 (17 years ago)
- Lokalizacja:
- trunk/BazaReklam
- Pliki:
-
- 2 zmodyfikowane
-
Properties/AssemblyInfo.cs (zmodyfikowane) (1 diff)
-
StartForm.cs (zmodyfikowane) (7 diffs)
Legenda:
- Bez zmian
- Dodane
- Usunięte
-
trunk/BazaReklam/Properties/AssemblyInfo.cs
r386 r395 30 30 // 31 31 [assembly: AssemblyVersion("1.0.0.0")] 32 [assembly: AssemblyFileVersion("1.0.0.8 0")]32 [assembly: AssemblyFileVersion("1.0.0.81")] -
trunk/BazaReklam/StartForm.cs
r65 r395 4 4 using System.Data; 5 5 using System.Data.SqlClient; 6 using System.Diagnostics; 6 7 using System.Drawing; 7 8 using System.Text; … … 20 21 public static StartForm getStartForm(MDIBazaReklam parent) 21 22 { 22 if (startForm == null) { 23 startForm = new StartForm(parent); 24 } 23 if (startForm == null) startForm = new StartForm(parent); 25 24 return startForm; 26 25 } … … 37 36 view_Podsumowanie_Wykonania_Planu_AgencjaTableAdapter1.Connection.ConnectionString = ConnString.getConnString().Value; 38 37 39 if (User.getUser().St_kierownik) { 38 if (User.getUser().St_kierownik) 39 { 40 40 wynikAgencji(); 41 41 } 42 else if (User.getUser().St_handlowiec | User.getUser().St_subhandlowiec) { 42 else if (User.getUser().St_handlowiec | User.getUser().St_subhandlowiec) 43 { 43 44 wynikAgenta(); 44 45 } … … 117 118 118 119 filtrujToolStripComboBox.SelectedIndex = 0; 119 agenciToolStripComboBox.SelectedIndex = 0; 120 agenciToolStripComboBox.SelectedIndex = 0; 120 121 } 121 122 … … 499 500 view_Podsumowanie_Wykonania_Planu_AgencjaTableAdapter1.Fill( 500 501 rEKLAMADataSet.View_Podsumowanie_Wykonania_Planu_Agencja, 501 User.getUser().SymbolAgencji, (short)DateTime.Today.Month, (short)DateTime.Today.Year); 502 User.getUser().SymbolAgencji, (short)DateTime.Today.Month, (short)DateTime.Today.Year); 502 503 503 504 //wynik miesieczny … … 644 645 agentToolStripComboBox.Text = User.getUser().Login; 645 646 } 647 648 pierwszaAktywacja = true; 646 649 647 650 wypelnijShedulerWyniki(); 648 649 pierwszaAktywacja = true;650 651 } 651 652 … … 662 663 } 663 664 665 if (pierwszaAktywacja) return; 666 664 667 if (User.getUser().St_kierownik) 665 668 {
