| Thread | Last Post | Replies |
|
| what's the meaning? | 21 Aug 2007 19:26 GMT | 2 |
I'm writing my first project in C#, and i have before a line that i don;t really understand, while the notes i'm using do give any useful info. If someone would help, i would really appreciate.
|
| How to do an enumeration in an interface? | 21 Aug 2007 18:57 GMT | 3 |
I have a situation where I have to combine an enumerated value with an interface. How can this be done? namespace Stuff {
|
| Multithreaded GUI issues | 21 Aug 2007 18:50 GMT | 8 |
I posted an issue a couple of days ago that nobody has answered anything on yet (re: error in System.Net.OSSOCK.closesocket()) and I'm starting to wonder if maybe my problem lies elsewhere. As I mentioned in that post, the app is multithreaded. It downloads from a
|
| Opening a file for both read/write | 21 Aug 2007 18:49 GMT | 2 |
In C I can open a file as readable, writable, or both. Then I can arbitrarily do either operation without closing the file between operations as long as I perform some kind of file position indicator repositioning when I change between reading and writing. In C# I'd like ...
|
| Why doesn't performance increase too mcuh in multi threading? Please help | 21 Aug 2007 18:06 GMT | 2 |
Dear members I am working with a 2GH P4 Intel, and 512GB RAM. I have a long list matrix 3000 * 15,000 of type double. I have a calculation procedure which can be executed on any single
|
| child type cannot be used as generic type parameter | 21 Aug 2007 17:53 GMT | 4 |
How to fix ? Andrus. code to reproduce: namespace test {
|
| Why doesn't performance increase too mcuh in multi threading? Please help | 21 Aug 2007 16:44 GMT | 3 |
Dear members I am working with a 2000 GH P4 Intel, and 512GB RAM. I have a long list matrix 3000 * 15,000 of type double. I have a calculation procedure which can be executed on any single
|
| read serviceaccount of a windows serice | 21 Aug 2007 16:29 GMT | 1 |
I want to get the serviceaccount of an already installed windows service. With the class Service.Controller (under System.ServiceProcess) I can read a couple of useful properties of existing services, but there is no way to read the account under which
|
| Opening a new window / dialog: | 21 Aug 2007 16:27 GMT | 3 |
Hey guys, I've got a C# Web Application written in .NET 2.0 in C#. I'd like to add a "Tree-View" component to the form so that they can easily select the "subject" of the form. However, I would prefer to have the tree-view form on
|
| Reading StandardOutput from a Process (no deadlock please) | 21 Aug 2007 15:41 GMT | 7 |
I'm trying to read the output and write the input of a process using its StandardOutput/Input and I'd really like to check if the process is waiting for input or whether it has output ready to be read. Is it possible? It seems like a fairly simple thing to try and do but most
|
| Cannot add row to DataGridView based on array | 21 Aug 2007 14:45 GMT | 2 |
I need to add row in DatagridView based on array of business entities. I used AddingNew event as described in Joe Stegman "DataBinding FAQ - Updated.doc" from Microsoft without success. Error "Collection is read only" occurs.
|
| how to create header text for data grid | 21 Aug 2007 14:22 GMT | 1 |
Hai all, I need to display some text for each row header in the data grid. that is ., I need to display the text in the gray part for each row starting in the data grid.
|
| Check for file in use | 21 Aug 2007 13:52 GMT | 19 |
Is there an easy way to check to see if a file is in use? I want to open a CSV file from my .NET2 program, and write to it. However, the file could be in use by another program. If that is the case, I don't want to attempt to write to it, just abort.
|
| Bitmap.FromFile generates Out Of Memory with some icons!! | 21 Aug 2007 11:14 GMT | 1 |
I tried loading an icon to an imageList using the following method: Image cc = Bitmap.FromFile("C:\\myicon.ico"); imageList1.Images.Add(cc); It works with some icons but generates an "Out of Memory" error with some
|
| telling the language of a unicode string | 21 Aug 2007 10:13 GMT | 7 |
I have a simple Unicode string in my c# application. I would like to tell which languages this string contains. For example, if this string have some letters in Greek and English than I would like to tell that to my user.
|