Forum: C# Feb 7th, 2009 |
| Replies: 9 Views: 750 try to write the full path of "car3.car" ; |
Forum: C# Feb 2nd, 2009 |
| Replies: 5 Views: 1,723 if u interested to use c# with embedded programming use micro .netframwork and read "Apress - Expert.NET Micro Framework - Embedded programming of microcontrollers with CSharp and Microsoft Visual... |
Forum: C# Jan 19th, 2009 |
| Replies: 3 Views: 755 1- http://www.c-sharpcorner.com/UploadFile/myoussef /CSharpMethodsP211142005232706PM/CSharpMethodsP2.aspx
2- http://en.csharp-online.net/Interfaces_and_Abstract_Classes
3- char ch1= 'a' ; ... |
Forum: C# Jan 15th, 2009 |
| Replies: 4 Views: 401 hi
this simple example u can set data in combobox
for (int i = 0; i < 10; i++)
{
comboBox1.Items.Add(i);
}
comboBox1.SelectedIndex = 0;
plz follow the advice of "Atenka" and "Ramy... |