| Thread | Last Post | Replies |
|
| loop over the static variables of a struct? | 30 Nov 2007 23:51 GMT | 3 |
Is there a way to loop over the static variables of a struct? public struct FunFoods { public static readonly Guid GRANOLA = new
|
| Dyanamically referring to an object instance | 30 Nov 2007 22:32 GMT | 5 |
I have a situation where I have multiple objects created from concrete classes: // Concrete implementations of the Abstract class ApprovalChain MarketingApprovalChain MktgAppChain = new MarketingApprovalChain();
|
| Threading and Instances | 30 Nov 2007 20:06 GMT | 6 |
Hello, Newsgroupians: I'm a little confused when it comes to threads in C#. Here's what I'm trying to do... I have a List<> containing a set of MyPoint(s)...
|
| converting tableAdaptor queries into stored procs | 30 Nov 2007 20:05 GMT | 2 |
Is there an easy way to convert tableAdaptor queries into stored procs without messing up the dataTables in the dataSet or losing the queries themselves?
|
| Create Permutations from Dictionary<string, List<string>> | 30 Nov 2007 19:50 GMT | 2 |
I have a Dictionary<string, List<string>>, which i have successfully filled. My problem is I need to create a filter expression using all possible permutations of its contents. i.e. the dictionary essentially creates the following array:
|
| pdf to jpeg | 30 Nov 2007 19:44 GMT | 6 |
I need a way to convert just the first page of a pdf document to a jpeg using C# so I can thumbnail these out is there something free that will allow me to complete this task?
|
| Aborting Threads | 30 Nov 2007 19:10 GMT | 3 |
I have a thread which I call like this: // Allocate a new thread containing class with the host getInfoThread git = new getInfoThread(host); // Create the thread and call the Go method
|
| C# DLL in Delphi | 30 Nov 2007 19:01 GMT | 5 |
is it anyway to call C# DLL (manage) with Delphi ? Thanks
|
| How do I get the assembly name at compile time? | 30 Nov 2007 18:36 GMT | 1 |
Surely it must be possible to access an assembly's name (ie the name of the .exe or .dll file to which it will eventually compile) at compile time. All the information is available within VS, but how do I get at it? (Actually what I'd like to do is get the assembly name of a ...
|
| Embedded user controls | 30 Nov 2007 18:33 GMT | 3 |
c#, .Net 2.0, VS2008 I have a user control, and wish to embed other custom/user controls within this control. I am getting problems in compilation though, that the type or
|
| listviewitem | 30 Nov 2007 17:33 GMT | 1 |
hi all can anyone show me how i add a button to each row in a listview? i'm adding each row like this but i need to add a button as well lv = new ListViewItem(id);
|
| Renaming a class | 30 Nov 2007 16:47 GMT | 1 |
Hi I have a designer generated class when I made a user control project. There is a comment warning: /// WARNING: If you change the name of this class, you will need to change the
|
| Display Video files using vlc | 30 Nov 2007 16:18 GMT | 3 |
I tried to display the video files in C# forms using vlc. By refering this link http://www.codeproject.com/useritems/LiquidVideo.asp, I displayed the video files. But it accepts only .mpg files and not .avi. Anyone please suggest why .avi files are not displayed. Is
|
| XmlSerializer List<T> | 30 Nov 2007 15:57 GMT | 2 |
can anyone help with this problem, it seems to fail when I try to initialise the XMLSerializer. I'm getting a "There was an error reflecting type ... " innerexception: "Cannot serialize member
|
| datagrid | 30 Nov 2007 15:02 GMT | 3 |
I have a datagrid that displays related child rows from a master table. I have set the datagrids datasource to the relation I set up in the main dataset I created a dataview in order to keep all the form's controls in sync
|