| Thread | Last Post | Replies |
|
| A real time updating interface | 30 Oct 2006 09:34 GMT | 5 |
Hello, I'm a Java programmer and I'm new to C# (I've read something but I've no real programming experience). I'm programming a form that displays some data from an external source (i.e. a com port) ad displays it. The updating cycle is about every second. The windows form
|
| C# ListViewItems sometimes lose their BackColor settings when I run the .exe file directly | 30 Oct 2006 09:33 GMT | 2 |
I'm developing a C# program using Visual Studio 2005 Professional Edition. In the main form I have inserted a ListView control that is populated in a different way depending on the item selected in a ComboBox.
|
| Check if the database must be saved when you close a C# form (with bound controls) | 30 Oct 2006 09:24 GMT | 2 |
I'm writing a C# program that interfaces with a SQL Server 2005 database (I use Visual Studio 2005 Professional Edition as compiler). I have defined the classical ADO.NET SqlDataAdapter, DataSet and DataTable objects so that, once the database has been loaded with the
|
| getCalendarDataSet only returns one hit several times | 30 Oct 2006 08:52 GMT | 2 |
The following code only returns one item several times. How can I get the rest of my calendar appointments? DataSet l_ds = outlook.getCalendarDataSet(); string l_s = l_ds.GetXml();
|
| Help me to Expot Dataset to Excel Workbook | 30 Oct 2006 08:36 GMT | 1 |
I have a dataset with 3 datatables. I need to export the dataset to Excel work book. I need to have 3 worksheets in the workbook, each of the worksheet should contain a datatable in order i.e. first worksheet
|
| DllImport and using Win32 API GetParent return no value | 30 Oct 2006 08:06 GMT | 1 |
I wrote tiny sample of smart client using Win32 API and get parent IE's handle as follow [DllImport("User32.dll")] public static extern IntPtr GetParent(IntPtr hWnd);
|
| generic interface question | 30 Oct 2006 07:19 GMT | 1 |
I have a question on why I am getting an error of "Cannot implicitly convert type 'testGenerics.testCollection' to 'testGenerics.IMyCollection<System.IComparable>'. An explicit conversion exists (are you missing a cast?)" for the following code.
|
| Where is the best place to store such data | 30 Oct 2006 03:20 GMT | 4 |
I have some data values that will will rarely change over the life of the program. I don't think it is wise to save it in a database. Is it ok to save them in Properties.Settings if I have many different values? Example I want to save information about the user of the software, ...
|
| Crystal Reports with parameters for a Stored Procedure | 30 Oct 2006 00:28 GMT | 1 |
I created a Crystal Report based on a Stored Procedure which has parameters. How can I pass the parameters and in what object? Can somebody help please? Thanks
|
| Enums in a database | 29 Oct 2006 23:26 GMT | 10 |
In C# I can set up an Enum so that number are represented as keywords, which is very useful. Is there such a datatype in a database? I suppose I could use an extra table, with the ID column as the number, and a corresponding column with strings representing the keywords. This ...
|
| C# directx 2d | 29 Oct 2006 23:14 GMT | 5 |
Does anyone have a link to Visual Studio 2005 directcx 2d sprite manipulation or just simple graphics with directx 2d. Jack --------------------------------------------------------------------------------
|
| Shortcuts don't work. | 29 Oct 2006 21:59 GMT | 5 |
With ToolStripMenuItem objects i created a 'Tools' menu and from that menu droped an Item to which i assigned a ShortcutKey of 'Keys.Control
| Keys.E', and the shortcut doesn't work. This ToolStripMenuItem is inside a Form, i tryed with different
|
| Learning C# (2) | 29 Oct 2006 21:25 GMT | 4 |
1. When to derive a class from IDisposable? 2. Does the statement below indicate that "MyDisposable" is an abstract class that needs its children classes to implement methods and all objects of children classes will be "Disposable"?
|
| String Manipulation - Substring, VB function Left, "length safe" Substring | 29 Oct 2006 21:12 GMT | 6 |
What is a good one line method for doing a "length safe" String.Substring? The VB classes offer up the old Left function so that string s = Microsoft.VisualBasic.Left("kelly",200)
|
| Hashtable of Hashtables being accessed from multiple threads. | 29 Oct 2006 19:46 GMT | 2 |
I have this Hashtable of Hashtables, and I'm accessing this object from multiple threads, now the Hashtable object is thread safe for reading, but not for writing, so I lock the object every time I need to write to it, but now it occurred to me that maybe I could just lock one of ...
|