Zbiór zmian 998

Pokaż
Ignoruj:
Data:
2010-01-06 12:31:33 (16 years ago)
Autor:
Sylwek
Opis:

Re #240

Lokalizacja:
trunk
Pliki:
7 zmodyfikowane

Legenda:

Bez zmian
Dodane
Usunięte
  • trunk/BazaReklam/Baza Reklam.csproj

    r996 r998  
    3636    <ProductName>Baza Reklam</ProductName> 
    3737    <PublisherName>AACT</PublisherName> 
     38    <CreateWebPageOnPublish>true</CreateWebPageOnPublish> 
    3839    <WebPage>index.htm</WebPage> 
    3940    <OpenBrowserOnPublish>false</OpenBrowserOnPublish> 
    4041    <ApplicationRevision>0</ApplicationRevision> 
    41     <ApplicationVersion>1.2.9.0</ApplicationVersion> 
     42    <ApplicationVersion>1.2.10.0</ApplicationVersion> 
    4243    <UseApplicationTrust>false</UseApplicationTrust> 
    4344    <BootstrapperEnabled>false</BootstrapperEnabled> 
  • trunk/BazaReklam/ClientsForm.cs

    r900 r998  
    291291            if (rEKLAMABindingSource.Current == null) return; 
    292292 
     293            DataRowView row = (DataRowView)rEKLAMABindingSource.Current; 
     294            int idRek = Int32.Parse(row["reklamaId"].ToString()); 
     295            int custId = Int32.Parse(row["customerId"].ToString()); 
     296 
     297            OrderDetails.getOrderDetails().PokazSzczegolyZamowienia(idRek); 
     298            if (OrderDetails.getOrderDetails().ShowDialog() == DialogResult.OK) 
     299            { 
     300                rEKLAMADataSet.REKLAMA.Clear(); 
     301                rEKLAMATableAdapter.FillByCustomerId(rEKLAMADataSet.REKLAMA, custId); 
     302            } 
     303        } 
     304 
     305        private void nowaButton_Click(object sender, EventArgs e) 
     306        { 
     307            if (kLIENCIBindingSource.Current == null) return; 
     308 
    293309            try 
    294310            { 
    295311                Cursor = Cursors.WaitCursor; 
    296                 DataRowView row = (DataRowView) rEKLAMABindingSource.Current; 
    297                 int idRek = Int32.Parse(row["reklamaId"].ToString()); 
    298                 int custId = Int32.Parse(row["customerId"].ToString()); 
    299  
    300                 OrderDetails.getOrderDetails().PokazSzczegolyZamowienia(idRek); 
    301  
    302                 if (OrderDetails.getOrderDetails().ShowDialog() == DialogResult.OK) 
    303                 { 
    304                     rEKLAMADataSet.REKLAMA.Clear(); 
    305                     rEKLAMATableAdapter.FillByCustomerId(rEKLAMADataSet.REKLAMA, custId); 
    306                 } 
    307             } 
    308             finally 
    309             { 
    310                 Cursor = Cursors.Default; 
    311             } 
    312         } 
    313  
    314         private void nowaButton_Click(object sender, EventArgs e) 
    315         { 
    316             if (kLIENCIBindingSource.Current == null) return; 
    317  
    318             try 
    319             { 
    320                 Cursor = Cursors.WaitCursor; 
    321  
    322                 DataRowView row = (DataRowView) kLIENCIBindingSource.Current; 
    323                 REKLAMADataSet.KLIENCIRow klient = (REKLAMADataSet.KLIENCIRow) row.Row; 
     312 
     313                DataRowView row = (DataRowView)kLIENCIBindingSource.Current; 
     314                REKLAMADataSet.KLIENCIRow klient = (REKLAMADataSet.KLIENCIRow)row.Row; 
    324315 
    325316                if (klient.IskodKlientaNull()) 
     
    392383                    finally 
    393384                    { 
    394                         if (cmd.Connection!=null) 
     385                        if (cmd.Connection != null) 
    395386                        { 
    396387                            cmd.Connection.Close(); 
     
    411402                Cursor = Cursors.WaitCursor; 
    412403 
    413                 DataRowView row = (DataRowView) rEKLAMABindingSource.Current; 
     404                DataRowView row = (DataRowView)rEKLAMABindingSource.Current; 
    414405                int idRek = Int32.Parse(row["reklamaId"].ToString()); 
    415406                int custId = Int32.Parse(row["customerId"].ToString()); 
     
    432423        { 
    433424            if (kLIENCIBindingSource.Current == null) return; 
    434              
     425 
    435426            const string caption = "Klient - usuwanie klienta"; 
    436427 
     
    439430                                                        MessageBoxButtons.YesNo, 
    440431                                                        MessageBoxIcon.Question); 
    441              
     432 
    442433            if (dialogResult != DialogResult.Yes) return; 
    443434 
    444435 
    445             DataRowView row = (DataRowView) kLIENCIBindingSource.Current; 
     436            DataRowView row = (DataRowView)kLIENCIBindingSource.Current; 
    446437            int custId = Int32.Parse(row["CustomerId"].ToString()); 
    447438 
     
    451442            { 
    452443 
    453                 dialogResult = MessageBox.Show("Istniej¹ dane (reklamy, osoby do kontaktu lub klasyfikacja klienta) zwi¹zane z klientem! Usun¹æ klienta?",  
     444                dialogResult = MessageBox.Show("Istniej¹ dane (reklamy, osoby do kontaktu lub klasyfikacja klienta) zwi¹zane z klientem! Usun¹æ klienta?", 
    454445                                                caption, 
    455446                                               MessageBoxButtons.YesNo, 
    456447                                               MessageBoxIcon.Question); 
    457                  
     448 
    458449                if (dialogResult == DialogResult.Yes) 
    459450                { 
     
    678669 
    679670                                    rEKLAMADataSet.KLIENCI.Clear(); 
    680                                      
     671 
    681672                                    command.CommandText = "sp_GetClientsWithNoContact"; 
    682673                                    command.CommandType = CommandType.StoredProcedure; 
     
    796787 
    797788            sqlDataAdapter.Fill(rEKLAMADataSet.KLIENCI); 
    798              
     789 
    799790            clientsDataGridView.Refresh(); 
    800791 
     
    809800        { 
    810801            if (rEKLAMABindingSource.Current == null) return; 
    811              
    812             DataRowView row = (DataRowView) rEKLAMABindingSource.Current; 
     802 
     803            DataRowView row = (DataRowView)rEKLAMABindingSource.Current; 
    813804            int idReklamy = Convert.ToInt32(row["reklamaId"]); 
    814805            Facturer f = new Facturer(idReklamy); 
     
    817808            { 
    818809                rEKLAMADataSet.REKLAMA.Clear(); 
    819                 DataRowView r = (DataRowView) kLIENCIBindingSource.Current; 
     810                DataRowView r = (DataRowView)kLIENCIBindingSource.Current; 
    820811                int customerId = Int32.Parse(r["CustomerId"].ToString()); 
    821812                rEKLAMATableAdapter.FillByCustomerId(rEKLAMADataSet.REKLAMA, customerId); 
     
    829820            if (rEKLAMABindingSource.Current == null) return; 
    830821 
    831             DataRowView row = (DataRowView) rEKLAMABindingSource.Current; 
    832             REKLAMADataSet.REKLAMARow reklama = (REKLAMADataSet.REKLAMARow) row.Row; 
     822            DataRowView row = (DataRowView)rEKLAMABindingSource.Current; 
     823            REKLAMADataSet.REKLAMARow reklama = (REKLAMADataSet.REKLAMARow)row.Row; 
    833824 
    834825            if (AdHelper.IsOgloszenie(reklama)) 
     
    840831            { 
    841832                ProjectForm pf = new ProjectForm(reklama.ReklamaID); 
    842             pf.ShowDialog(); 
    843         } 
     833                pf.ShowDialog(); 
     834            } 
    844835        } 
    845836 
     
    984975            if (zestawienieFakturBindingSource.Current == null) return; 
    985976 
    986             DataRowView row = (DataRowView) zestawienieFakturBindingSource.Current; 
     977            DataRowView row = (DataRowView)zestawienieFakturBindingSource.Current; 
    987978 
    988979            //nie ma faktury 
     
    10961087                DataRowView r = datatable.AddNew(); 
    10971088                kONTAKTYBindingSource.MoveLast(); 
    1098                  
     1089 
    10991090 
    11001091 
     
    11051096                AddUpdateKontakt(r, custId); 
    11061097 
    1107                  
     1098 
    11081099 
    11091100                kONTAKTYBindingSource.EndEdit(); 
     
    11191110        { 
    11201111            if (kONTAKTYBindingSource.Current == null) return; 
    1121              
     1112 
    11221113            if (MessageBox.Show("Czy na pewno chcesz usun¹æ rekord?", "", MessageBoxButtons.YesNo) == DialogResult.Yes) 
    11231114            { 
     
    11321123            if (rEKLAMABindingSource.Current == null) return; 
    11331124 
    1134             DataRowView row = (DataRowView) rEKLAMABindingSource.Current; 
     1125            DataRowView row = (DataRowView)rEKLAMABindingSource.Current; 
    11351126            int idReklamy = Convert.ToInt32(row["reklamaId"]); 
    11361127            int custId = Convert.ToInt32(row["customerId"]); 
     
    11471138            if (rEKLAMABindingSource.Current == null) return; 
    11481139 
    1149             DataRowView row = (DataRowView) rEKLAMABindingSource.Current; 
    1150             REKLAMADataSet.REKLAMARow reklama = (REKLAMADataSet.REKLAMARow) row.Row; 
     1140            DataRowView row = (DataRowView)rEKLAMABindingSource.Current; 
     1141            REKLAMADataSet.REKLAMARow reklama = (REKLAMADataSet.REKLAMARow)row.Row; 
    11511142 
    11521143            if (reklama.IsID_FAKTURYNull()) 
     
    11861177        { 
    11871178            if (kLIENCIBindingSource.Current == null) return; 
    1188              
     1179 
    11891180            MessageBox.Show("Dane zapisano", "Klient"); 
    11901181        } 
     
    12691260 
    12701261 
    1271                 if (((REKLAMADataSet.KLIENCIRow)row.Row).IsCountryNull())  
     1262                if (((REKLAMADataSet.KLIENCIRow)row.Row).IsCountryNull()) 
    12721263                    countryComboBox.SelectedIndex = -1; 
    12731264 
     
    12781269        private void kryteriumWyszukiwania_KeyPress(object sender, KeyPressEventArgs e) 
    12791270        { 
    1280             if (e.KeyChar == 13)  
     1271            if (e.KeyChar == 13) 
    12811272                szukajToolStripButton.PerformClick(); 
    12821273        } 
     
    22642255            ExcelHelper excelHelper = new ExcelHelper(); 
    22652256            excelHelper.Export(clientsDataGridView); 
    2266              
     2257 
    22672258            Cursor = Cursors.Default; 
    22682259        } 
     
    23212312        { 
    23222313            if (kLIENCIBindingSource.Current == null) return; 
    2323              
     2314 
    23242315            try 
    23252316            { 
     
    23292320 
    23302321                ZamowieniaForm zam = new ZamowieniaForm(klient); 
    2331                 zam.ShowDialog();                 
     2322                zam.ShowDialog(); 
    23322323            } 
    23332324            finally 
     
    24902481            } 
    24912482 
    2492            // if (idSubscription > 0  && gridSubscriptions.DataSource 
     2483            // if (idSubscription > 0  && gridSubscriptions.DataSource 
    24932484            List<Subscription> subscriptions = (List<Subscription>)gridSubscriptions.DataSource; 
    24942485 
    2495             DataRowView row = (DataRowView) kLIENCIBindingSource.Current; 
    2496             REKLAMADataSet.KLIENCIRow klient = (REKLAMADataSet.KLIENCIRow) row.Row; 
     2486            DataRowView row = (DataRowView)kLIENCIBindingSource.Current; 
     2487            REKLAMADataSet.KLIENCIRow klient = (REKLAMADataSet.KLIENCIRow)row.Row; 
    24972488 
    24982489            SubscriptionForm subscriptionForm = new SubscriptionForm(klient.CustomerID, subscript); 
  • trunk/BazaReklam/OrderDetails.cs

    r936 r998  
    306306            Cursor = Cursors.WaitCursor; 
    307307 
    308             SaveChanges(); 
    309  
     308            if (!SaveChanges()) 
     309            { 
     310                Cursor = Cursors.Default; 
     311                return; 
     312            } 
     313 
     314            Cursor = Cursors.Default; 
    310315            MessageBox.Show("Zmiany zapisane"); 
    311             Cursor = Cursors.Default; 
    312316        } 
    313317 
     
    322326            Cursor = Cursors.WaitCursor; 
    323327 
    324             SaveChanges(); 
    325  
     328            if (!SaveChanges()) 
     329            { 
     330                Cursor = Cursors.Default; 
     331                return; 
     332            } 
     333 
     334            Cursor = Cursors.Default; 
    326335            MessageBox.Show("Zmiany zapisane"); 
    327             Cursor = Cursors.Default; 
    328336            Close(); 
    329337        } 
    330338 
    331         private void SaveChanges() 
    332         { 
     339        private bool SaveChanges() 
     340        { 
     341            if (SelectedModule == null) 
     342            { 
     343                MessageBox.Show("Baza reklam", "Wybierz modu³ reklamy!", MessageBoxButtons.OK, MessageBoxIcon.Warning); 
     344                return false; 
     345            } 
     346 
     347            if (SelectedTitle == null) 
     348            { 
     349                MessageBox.Show("Baza reklam", "Wybierz tytu³!", MessageBoxButtons.OK, MessageBoxIcon.Warning); 
     350                return false; 
     351            } 
     352 
     353            if (SelectedSection == null) 
     354            { 
     355                MessageBox.Show("Baza reklam", "Wybierz sekcjê!", MessageBoxButtons.OK, MessageBoxIcon.Warning); 
     356                return false; 
     357            } 
     358 
    333359            Reklama.MOD_TYP = SelectedModule.Name; 
    334360            Reklama.TYTU£ = SelectedTitle.ShortName; 
     
    377403                MessageBox.Show("Zosta³a zmieniona opcja wyró¿nienia. Zamówienie nale¿y ponownie przeliczyæ"); 
    378404                Cursor = Cursors.Default; 
    379                 return; 
     405                return false; 
    380406            } 
    381407 
     
    400426 
    401427            ukazeSieDataGridView.Sort(ukazeSieDataGridView.Columns[0], ListSortDirection.Ascending); 
     428 
     429            return true; 
    402430        } 
    403431 
     
    406434            foreach (REKLAMADataSet.UKAZE_SIE_W_NRRow emisja in emisje.Rows) 
    407435            { 
    408                 if (emisja.IsidFakturyNull()) return true; 
     436                if (emisja.IsidFakturyNull()) 
     437                    return true; 
    409438            } 
    410439 
     
    531560                } 
    532561 
    533                 if (r.ReadOnly && r.DefaultCellStyle.BackColor == Color.MintCream) continue; 
     562                if (r.ReadOnly && r.DefaultCellStyle.BackColor == Color.MintCream) 
     563                    continue; 
    534564 
    535565                foreach (DataGridViewRow s in ukazaloSieDataGridView.Rows) 
     
    739769                rEKLAMABindingSource.EndEdit(); 
    740770            } 
     771#if DEBUG 
     772            else 
     773            { 
     774                MessageBox.Show("Przelicz()\n.Coœ jest null!"); 
     775            } 
     776#endif 
    741777 
    742778        } 
     
    906942            rEKLAMA_STRONATableAdapter.FillByReklamaId(rEKLAMADataSet.REKLAMA_STRONA, reklamaId); 
    907943            uKAZE_SIE_W_NRTableAdapter.FillByReklamaId(rEKLAMADataSet.UKAZE_SIE_W_NR, reklamaId); 
    908              
    909  
    910944 
    911945            //Set ComboBox selected item 
     
    14921526            rEKLAMABindingSource.EndEdit(); 
    14931527            PrzeliczCaleZamowienie(); 
    1494  
    14951528        } 
    14961529 
     
    17401773            if (SelectedModule == null) return; 
    17411774 
    1742  
    17431775            txtTotalModuleAmount.Text = 
    17441776                    ReCaluculateModuleAmount(txtHorizontal.Text, txtVertical.Text).ToString(); 
     
    18311863            Debug.WriteLine(string.Format("Event: {0}", "txtVertical_Validating")); 
    18321864 
    1833             if ((SelectedNavigationColumn != null) && (SelectedTitle != null)) 
     1865            if (SelectedNavigationColumn != null && SelectedTitle != null) 
    18341866            { 
    18351867                NavigationColumnRepository navigationColumnRepository = 
  • trunk/BazaReklam/OrdersForm.cs

    r996 r998  
    976976        private void reklamaDataGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e) 
    977977        { 
    978             if (reklamyZestawienieBindingSource.Current != null) 
    979             { 
    980                 DataRowView row = (DataRowView)reklamyZestawienieBindingSource.Current; 
    981                 int idRek = Int32.Parse(row["reklamaId"].ToString()); 
    982  
    983  
    984                 OrderDetails.getOrderDetails().PokazSzczegolyZamowienia(idRek); 
    985                 DialogResult result = OrderDetails.getOrderDetails().ShowDialog(); 
    986  
    987                 if (result == DialogResult.OK) 
    988                 { 
    989                     rEKLAMADataSet.ReklamyZestawienie.Clear(); 
    990                     sqlDataAdapter.Fill(rEKLAMADataSet.ReklamyZestawienie); 
    991                 } 
    992             } 
    993  
     978            EditReklama(); 
    994979        } 
    995980 
     
    11911176        private void zamToolStripButton_Click(object sender, EventArgs e) 
    11921177        { 
     1178            EditReklama(); 
     1179        } 
     1180 
     1181        private void EditReklama() 
     1182        { 
    11931183            if (reklamyZestawienieBindingSource.Current != null) 
    11941184            { 
     
    11971187 
    11981188                OrderDetails.getOrderDetails().PokazSzczegolyZamowienia(idRek); 
    1199                 OrderDetails.getOrderDetails().ShowDialog(); 
     1189                if (OrderDetails.getOrderDetails().ShowDialog() == DialogResult.OK) 
     1190                { 
     1191                    rEKLAMADataSet.ReklamyZestawienie.Clear(); 
     1192                    sqlDataAdapter.Fill(rEKLAMADataSet.ReklamyZestawienie); 
     1193                } 
    12001194            } 
    12011195        } 
  • trunk/BazaReklam/Properties/AssemblyInfo.cs

    r996 r998  
    3030// 
    3131[assembly: AssemblyVersion("1.0.0.0")] 
    32 [assembly: AssemblyFileVersion("1.2.9")] 
     32[assembly: AssemblyFileVersion("1.2.10")] 
  • trunk/BazaReklam/ZestawienieZamowienForm.cs

    r791 r998  
    226226        private void zamToolStripButton_Click(object sender, EventArgs e) 
    227227        { 
    228  
    229228            if (reklamyZestawienieBindingSource.Current != null) 
    230229            { 
     
    239238                } 
    240239            } 
    241  
    242240        } 
    243241 
  • trunk/BazaReklamSetup/BazaReklamSetup.vdproj

    r981 r998  
    8282        "Entry" 
    8383        { 
     84        "MsmKey" = "8:_61EDB5BB1F4F4436A7DDA1B9B3025B3D" 
     85        "OwnerKey" = "8:_UNDEFINED" 
     86        "MsmSig" = "8:_UNDEFINED" 
     87        } 
     88        "Entry" 
     89        { 
    8490        "MsmKey" = "8:_65508AB999A44FC7909AAE84E5BD5F45" 
    8591        "OwnerKey" = "8:_UNDEFINED" 
     
    95101        { 
    96102        "MsmKey" = "8:_78F7FF4DBAE741BDB144A21AB75A662F" 
    97         "OwnerKey" = "8:_UNDEFINED" 
    98         "MsmSig" = "8:_UNDEFINED" 
    99         } 
    100         "Entry" 
    101         { 
    102         "MsmKey" = "8:_90355BBD5BDA4A8FB195EB7C7A954ADA" 
    103103        "OwnerKey" = "8:_UNDEFINED" 
    104104        "MsmSig" = "8:_UNDEFINED" 
     
    410410            "IsolateTo" = "8:" 
    411411            } 
     412            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_61EDB5BB1F4F4436A7DDA1B9B3025B3D" 
     413            { 
     414            "SourcePath" = "8:..\\BazaReklam\\Resources\\br.ico" 
     415            "TargetName" = "8:br.ico" 
     416            "Tag" = "8:" 
     417            "Folder" = "8:_A71B9F4A6F7A4846B9A8121692FB34D3" 
     418            "Condition" = "8:" 
     419            "Transitive" = "11:FALSE" 
     420            "Vital" = "11:TRUE" 
     421            "ReadOnly" = "11:FALSE" 
     422            "Hidden" = "11:FALSE" 
     423            "System" = "11:FALSE" 
     424            "Permanent" = "11:FALSE" 
     425            "SharedLegacy" = "11:FALSE" 
     426            "PackageAs" = "3:1" 
     427            "Register" = "3:1" 
     428            "Exclude" = "11:FALSE" 
     429            "IsDependency" = "11:FALSE" 
     430            "IsolateTo" = "8:" 
     431            } 
    412432            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6C6DB793A8DA3CF4F3943CD8BBC6D521" 
    413433            { 
     
    441461            "IsolateTo" = "8:" 
    442462            } 
    443             "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_90355BBD5BDA4A8FB195EB7C7A954ADA" 
    444             { 
    445             "SourcePath" = "8:..\\BazaReklam\\cab.ico" 
    446             "TargetName" = "8:cab.ico" 
    447             "Tag" = "8:" 
    448             "Folder" = "8:_A71B9F4A6F7A4846B9A8121692FB34D3" 
    449             "Condition" = "8:" 
    450             "Transitive" = "11:FALSE" 
    451             "Vital" = "11:TRUE" 
    452             "ReadOnly" = "11:FALSE" 
    453             "Hidden" = "11:FALSE" 
    454             "System" = "11:FALSE" 
    455             "Permanent" = "11:FALSE" 
    456             "SharedLegacy" = "11:FALSE" 
    457             "PackageAs" = "3:1" 
    458             "Register" = "3:1" 
    459             "Exclude" = "11:FALSE" 
    460             "IsDependency" = "11:FALSE" 
    461             "IsolateTo" = "8:" 
    462             } 
    463463            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CC2D346B584D9209A0B0C23E19E16393" 
    464464            { 
     
    573573        { 
    574574        "LangId" = "3:0" 
     575        "RequiresElevation" = "11:FALSE" 
    575576        } 
    576577        "Product" 
     
    578579        "Name" = "8:Microsoft Visual Studio" 
    579580        "ProductName" = "8:Baza Reklam" 
    580         "ProductCode" = "8:{0553529D-70F2-40D5-9ED7-0DAB681B62BB}" 
    581         "PackageCode" = "8:{F7CFD8B8-FE02-4E5C-9665-28F5691FBC7C}" 
     581        "ProductCode" = "8:{4B16CA46-93C5-463C-B503-24C98C651B53}" 
     582        "PackageCode" = "8:{68299E18-89FE-42F3-8661-61DCD67F0F45}" 
    582583        "UpgradeCode" = "8:{4E2DBBA4-3139-4790-8DDB-7AADFC963A7D}" 
    583584        "RestartWWWService" = "11:FALSE" 
     
    585586        "DetectNewerInstalledVersion" = "11:TRUE" 
    586587        "InstallAllUsers" = "11:TRUE" 
    587         "ProductVersion" = "8:1.2.8" 
     588        "ProductVersion" = "8:1.2.10" 
    588589        "Manufacturer" = "8:AACT" 
    589590        "ARPHELPTELEPHONE" = "8:" 
     
    709710            "Folder" = "8:_3EC045D247324FEAAAFA23650D200DFD" 
    710711            "WorkingFolder" = "8:_A71B9F4A6F7A4846B9A8121692FB34D3" 
    711             "Icon" = "8:_90355BBD5BDA4A8FB195EB7C7A954ADA" 
     712            "Icon" = "8:_61EDB5BB1F4F4436A7DDA1B9B3025B3D" 
    712713            "Feature" = "8:" 
    713714            } 
     
    723724            "Folder" = "8:_9BF0E65BEA7A4F3680D59A772BB53D46" 
    724725            "WorkingFolder" = "8:_A71B9F4A6F7A4846B9A8121692FB34D3" 
    725             "Icon" = "8:_90355BBD5BDA4A8FB195EB7C7A954ADA" 
     726            "Icon" = "8:_61EDB5BB1F4F4436A7DDA1B9B3025B3D" 
    726727            "Feature" = "8:" 
    727728            } 
     
    11821183            } 
    11831184        } 
    1184         "VJSharpPlugin" 
    1185         { 
    1186         } 
    11871185    } 
    11881186}