| Thread | Last Post | Replies |
|
| Change the layout of a DataView (or similar control) - i.e. accross not down | 27 May 2008 16:32 GMT | 1 |
At present in my app I am using a Dataview to display data from an sql server table. It is currently layout out in the following manner: Column1 | column2 | Column3 | Column4 | ............. |
|
| using directive vs explicit qualification. Which performs better? | 27 May 2008 16:30 GMT | 4 |
The other day, my boss corrected me to use "explicit qualification" instead of using "using directive". she asked me to use : "System.Data.DataSet ds = new System.Data.DataSet();"
|
| "Global functions" bug? | 27 May 2008 16:13 GMT | 8 |
I have a public class called Database.cs. It has public static functions and I call them from ProjectA. The code looks something like: int intConnectionSuccessful = Database.ConnectToDatabase(); Works great.
|
| Can I do this in C#? | 27 May 2008 15:53 GMT | 10 |
I'm writing a C# program to read from an Access database table called LocationDetail. This table is made up of two columns: Location, DiscDate. It looks like this: 0000001234 122590
|
| Early determination | 27 May 2008 14:38 GMT | 3 |
if( (myList!=null) && (myList.Count>10) ) { Do something.... }
|
| loading array | 27 May 2008 14:33 GMT | 5 |
vs2008 c# how can I load an array from XML? lets say I have now string[] arr = {23,32,45,34,21,23,243,45 }
|
| castle / Alt.Net ireland anyone? [a bit off topic] | 27 May 2008 13:45 GMT | 1 |
Just wondering if there is an interest to meet up in Ireland(in in Dublin) and talk about the castle stack, similarly to alt.net I find that meeting up makes knowledge exchange faster The idea is to improve the quality of the code we write using the best
|
| Wizard Type Framework | 27 May 2008 13:04 GMT | 1 |
Hello, I would like to create a framework for implementing wizards. The wizards will be driven from entries that are contained within a database. For example a "questions" table would hold all the questions
|
| Com Exception from .Net Application. | 27 May 2008 12:14 GMT | 3 |
My .Net application call a COM Class method. The signature of COm method is object get_Item(ref object Key); This method had defined in "NCR.APTRA.AXFS" namespace and I Have "formList" of Type "NCR.APTRA.AXFS.IXFSDictionary"
|
| C#.Net web form calling a Button from javascript | 27 May 2008 11:06 GMT | 1 |
In the C#.Net, how do we calling a Button's event from the javascript? e.g., if I hit the "Enter" key, then it will execute the btnQry_Click(object sender, EventArgs e) Thanks for help.
|
| Parameterized Query | 27 May 2008 09:39 GMT | 3 |
Is there a way to see the exact SQL being generated from a parameterized query? I am using this technique but am getting some strange SQL errors during execution and I would like to see the final SQL that is being generated.
|
| PropertyGrid (binding) | 27 May 2008 09:39 GMT | 1 |
I have the folloing problem: A PropertyGrid which suppose to be binded to listbox is not binded well. I am doing such thing in the form constructor: propGrid.SelectedObject=lbSelectedItems.SelectedValue;
|
| Binding (copy) | 27 May 2008 07:26 GMT | 4 |
I would like to know how can I copy from BindingList<obj> to some other BindingList<obj>? I tried to pass one binding list to other via constractor but this is copying it by reference and I want by value.
|
| Create a thumnail from a video file | 27 May 2008 06:39 GMT | 1 |
I need to grab thumbnails from a video file with extension wmv or dat. I need to write the code in c# has anybody done this before. Any help is appreciated.
|
| Debug.Assert behavioral change VS 2005/2008 | 27 May 2008 03:29 GMT | 1 |
Given the following code: static void Main(string[] args) { Debug.Assert(false, "Oopsy");
|