Hola, ich hatte Probleme … eeh … das Visual Studio 2010 hatte das Intellisense nicht mehr aktiv. Somit konnte ich nicht mehr so wie gewohnt arbeiten. Durch Google Suche wurde ich auf Seiten weitergeleitet, welche mir nicht weiterhelfen konnten. Aber ich habe dann ein Lösung durch Ausprobieren selbst herausgefunden. Die Lösung ist in Visual Studio [...]
This c# code shows you how you coloring every second row in a ListView: int i = 0; foreach (ListViewItem item in listView1.Items) { if (i++ % 2 == 1) { item.BackColor = Color.LightGray; item.ForeColor = Color.BlueViolet; item.UseItemStyleForSubItems = true; } }
// Clear the ListView control listView1.Items.Clear();
// Set the view to show details. listView1.View = View.Details; // Allow the user to edit item text. listView1.LabelEdit = true; // Allow the user to rearrange columns. listView1.AllowColumnReorder = true; // Select the item and subitems when selection is made. listView1.FullRowSelect = true; // Display grid lines. listView1.GridLines = true; // Sort the items [...]
This c# code shows you, how to add a row in a listview: ListViewItem row = new ListViewItem(); row.SubItems.Add(value.ToString()); listview1.Items.Add(row); This creates 3 items and 3 subitems in a listview: // Create three items and three sets of subitems for each item. ListViewItem item1 = new ListViewItem("Item 1", 0); item1.SubItems.Add("Item1 Subitem 1"); item1.SubItems.Add("Item1 Subitem 2"); [...]
This c# code creates columns with columnheader for the items and subitems in a listview. There are different ways to create columns. ColumnHeader column1 = new ColumnHeader(); column1.Width = 100; column1.Text = "Column 1"; column1.TextAlign = HorizontalAlignment.Right; listView1.Columns.Add(column1); listView1.Columns.Add("Column 2", 120, HorizontalAlignment.Center); // Width of -1 indicates to adjust the width of the longest item [...]
Ein paar Links zu der Oracle Datenbank Allgemein Oracle Database The Oracle Database Domain Oracle Configuration IT Toolbox portal for Oracle What Is oracle? Oracle Database Corner Oracle Tools DeZign for Databases Quest Software SQL Developer TOAD Qafe Application Framework Oracle News Database Journal INT Oracle User Groups UK Oracle User Group German Oracle User [...]
XML mit Java und C++: http://www.informatik.uni-trier.de/~naeher/Professur/courses/ss2002/data/xml/oop.pdf Linkliste C/C++: http://cplus.kompf.de/links.html Microsoft XML Core Services: http://www.perfectxml.com/CPPMSXML/20020710.asp XML class for processing and building simple XML documents: http://www.codeproject.com/KB/cpp/markupclass.aspx The XML C parser and toolkit of Gnome – libxml: http://www.xmlsoft.org/ XML Grundlagen: http://www.microsoft.com/germany/msdn/library/data/xml/XMLBasics.mspx?mfr=true Ein kleiner und schneller XML-Parser für systemeigenes C++ : http://msdn.microsoft.com/msdnmag/issues/07/04/Xml/default.aspx?loc=de#contents XML for beginners and experts: http://www.codeproject.com/KB/cpp/XmlHelper.aspx XML [...]
http://www.codeproject.com/ http://www.source-center.de/ http://www.programmersheaven.com/ http://www.planet-source-code.com/ http://www.quellcodes.de/ http://www.spotlight.de/ (foren) http://www.coding-forum.de
PHP http://www.selfphp3.de/ http://www.php3-forum.de/klick.php3 http://www.php-resource.de/ http://www.phpboard.de/ http://geb-coding.2y.net/ http://www.phpcoders.de http://www.phpbuilder.com/ http://www.zugeschaut-und-mitgebaut.de/php/ http://www.koehntopp.de/php/ http://www.php.net http://www.php-homepage.de http://www.php-center.de http://www.phpwelt.de http://www.phpwizard.net http://www.php-programme.de http://www.koehntopp.de/php/ http://thinkphp.de/ http://www.phpcrawler.de/ http://www.phparchiv.de/ http://www.dynamic-webpages.de/ http://www.php-area.de/