| Thread | Last Post | Replies |
|
| Deterministic Collection Using Generics | 18 Dec 2005 14:23 GMT | 3 |
Here is my try at generics. This creates a collection that implements IInvoke and IDisposable and Adds types that implement IInvoke and IDisposable. When the collection goes out of using scope dispose is called on all members of the collection. Calling Invoke on the
|
| C# listview and database update question | 18 Dec 2005 10:10 GMT | 1 |
In my C# Windows Form MyForm, there's one ListView control listView1 in the MyForm. The ListViewItem in the listView1 MATCHING EXACTLY the data in a SQL Server database table Customer.
|
| PLS HELP: Add a button in Command Box of a form | 18 Dec 2005 09:42 GMT | 1 |
I need to add a button to the Command Box (not sure if that's the correct word for it) of the form - to the top right corner where "Minimize", "Maximize" and "Close buttons" are. This button will be "Full Screen" button.
|
| Breaking Forms in to partial classes | 17 Dec 2005 23:11 GMT | 3 |
VS 2005 uses the Partial Class & <form>.Designer.cs for its windows forms generated code. When upgrading from 2003 the project wizard did not break the form, it left it the old way. I would like to split them. Who the heck do you do that?
|
| Newbie : C# and Foxpro tables or Access tables??? | 17 Dec 2005 23:01 GMT | 5 |
Our firm does not want to spend the cash and buy SQL Server or Oracle. So we have to make do with what we have. Has anyone in this forum tried Access or Foxpro as a backend to C#? What has been your result like?
|
| ASCII / ANSI encoding | 17 Dec 2005 20:46 GMT | 10 |
I'm in the process if converting the data out of an old DOS-based SunAccounts system (don't ask!) into SQL Server. The data has been sent to me as a collection of hundreds of SunAccounts backup files and it's a simple (yet extremely laborious!) process of opening
|
| How do I check the vesrion of .NET Framework? | 17 Dec 2005 20:23 GMT | 4 |
What would be the best way to check the version of .NET framework (2.0 Beta, or 2.0 Release) ? Thank you, Alan
|
| (Hard one,any expert out threre ? ) Create object from string ? add webcontrols dynamically on page. | 17 Dec 2005 19:36 GMT | 1 |
I have some webcontrols that i want to add dynamically on a page. I have stored the path / namespace in database (ex MyNameSpace.WebControls.Control1) to the class/webcontrol. Lets say i have a column in database that looks like this.
|
| sending empty files | 17 Dec 2005 17:51 GMT | 1 |
I would like to ask, why when i try to open file , that has been sent - its empty. Size of sent file is proper, but for example when it's pdf - acrobat reader says " file might be damaged" Here is my send finction
|
| Sorting data in fixed file format | 17 Dec 2005 17:18 GMT | 5 |
I'm looking for a way to sort text files consisting of fixed file format. The files are big, typically over 10 million records and they consist of about 100 fields with the record being over 600 bytes in length. I need to
|
| Hyper-Threading and ProcessorAffinity | 17 Dec 2005 15:40 GMT | 8 |
I create new thread as following: Thread mThread = new Thread(new ThreadStart(m_ClassThread.Go)); In my system I have 2 Process devices ,(CPU0 and CPU1) , I want to create 3 Threads, 2 of those thread to run in CPU0 and the last one in CPU1 , I get
|
| ParameterType.FullName returns "System.Boolean&" explain why | 17 Dec 2005 14:45 GMT | 2 |
I am using reflections to get Parameters and their types of a COM Interop Assembly method. ParameterType.FullName returns "System.Boolean&" what's the significance of & at the end? Here's my code:
|
| Generics questions in .NET 2.0 | 17 Dec 2005 13:47 GMT | 8 |
Make a template of a template: public class A<T> { A(string s){}
|
| How to insert a user control into DataGrid control?? | 17 Dec 2005 13:17 GMT | 1 |
Hi all.. Can anyone tell me is there any way to add a User control page into a Datagrid?? If not possible please tell me the reason why it is.....
|
| Howto debug a dll loaded at runtime? | 17 Dec 2005 12:40 GMT | 2 |
I load an assembly DLL dynamically using System.AppDomain.CurrentDomain.Load(... ). I create the istance of an object contained in the assembly and invoke one of its method.
|