| Thread | Last Post | Replies |
|
| Sorting Bindinglist based DataGridView | 27 Mar 2008 07:18 GMT | 14 |
I have 3.5 WinForms DataGridView whose DataSource is BindingList<TEntity>. I need to sort when user clicks in column header. I tried MSDN sample but Sort(newColumn, direction);
|
| I can't stand this compiler.... I spent HOURS (!) trying to make these few lines work: | 27 Mar 2008 07:14 GMT | 15 |
I am trying to write a webmethod which would look a bit like this: ------------------------------------------------------------------------------------------------------- private string ConnectionString {
|
| What is List<int> numQuery2 = | 27 Mar 2008 03:33 GMT | 2 |
I found in MSDN some sample code: List<int> numQry = ...etc I couldn't find any info in MSDN on List or <int> though. Does anybody know what this is & in which namespace it belongs in?
|
| marshal array of formatted blittable classes | 27 Mar 2008 00:48 GMT | 1 |
I would like to pass an array of formatted blittable classes through P/Invoke to a C++ dll, but it is not working. Here are the definitions: C++ struct Point2Rec
|
| C# .Net SQL Server Connections | 27 Mar 2008 00:25 GMT | 3 |
I have created an app in VS 2005 C# using .Net connecting to a corporate SQL 2000 Server. When connecting at the main office all is well. When connecting from one of our remote locations the connection is slow (T1). This results in inacurate data being displayed after GetData and ...
|
| OutOfMemoryException When Allocating Huge Objects That Use Lots of RAM on 64-bit Machine | 27 Mar 2008 00:07 GMT | 6 |
I am running out of memory (OutOfMemoryException) when I do something like this: Hashtable h = new Hashtable(10000000); It doesn't seem to use all of the RAM on the machine. I have 4GB of
|
| Tree Structures | 26 Mar 2008 23:38 GMT | 1 |
Is there any way to do an arbitrary recursive structure that is also typesafe? (or somewhat. The issue being the last "leafs" in the structure) I'm thinking one could create a class that is basically a parent and child and if child is null then its the last elements ones in the ...
|
| delimited string test | 26 Mar 2008 23:16 GMT | 3 |
hey all, let's say you have a delimited string value of String value = val1,val2,val3; and you do something like the following
|
| e.Graphics.DrawString | 26 Mar 2008 22:54 GMT | 4 |
If I use the DrawString below with object of StringFormat as the last object it works good. If I instead remove object StringFormat below as the last object of DrawString I get some rows that are not printed correctly.
|
| output from a process: StandardOut, or Pipes | 26 Mar 2008 22:53 GMT | 7 |
I am trying to redirect output from a process that I didn't create. I see that the process class has the ability to redirect this through the StandardOutput property. I also noticed that .net 3.5 has pipes, so I assume that I should be able to use those new classes as well.
|
| Thread memory consumption | 26 Mar 2008 22:49 GMT | 3 |
My .NET 1.1 program allocates many Threads that loop making database calls and other stuff. Thread1 = new Thread(new ThreadStart(this.Thread1)); Thread1.Start();
|
| Object Browser | 26 Mar 2008 22:43 GMT | 5 |
I need some tips on enumerating the names and syntax of properties, methods, events, and public variables, enums, user-defined types in a COM, programatically in C# ... a little like Object Browser in VS2006 but without the IDE.
|
| datatablecollection and missing schema | 26 Mar 2008 22:15 GMT | 3 |
hey all, i noticed if i use the missing schema to fill a datatablecollection the table names are generic (Table, Table1, Table2) is there anyway to change that? i tried on the sql side to use an alias for
|
| Packaging fonts into a windows exe | 26 Mar 2008 22:13 GMT | 5 |
can anyone tell me whether it is possible to pack a font into a .net 2.0 windows application (resource)? i need to use the font within the application, but i don't want to distribute it as a ttf file. i've read on msdn that this is possible through wpf in .net 3.0 but can't find
|
| using 7zip in c# | 26 Mar 2008 21:13 GMT | 9 |
All, i'm using 7zip to archive data that my application produces, the following code fails to work. The problem is, the code seems to redirect where its looking for the 7z.exe to where-ever the
|