| Thread | Last Post | Replies |
|
| read text file display data by chunk | 19 Sep 2006 18:50 GMT | 2 |
I have a text file that has a length of 840 bytes. I need to split into 20 bytes starting from byte 1. If there are data in any of the 20 bytes, I display the data. So there are 42 occurences of 20 bytes. How do I read each of the 20 bytes and display the data in C#?
|
| Datagridview cell color doesn't change? | 19 Sep 2006 18:45 GMT | 2 |
I'm using this to change the color of a row: dgAppVersionInfo.DataSource = dt; foreach( int i in gridRowColorChange ) dgAppVersionInfo.Rows[ i ].DefaultCellStyle.ForeColor = Color.Green;
|
| System.Windows.Forms namespace | 19 Sep 2006 18:39 GMT | 7 |
I'm completely new to C#, so here is my question: Why my C# program (COM dll which I can call from C++ application) cannot see namespace System.Windows.Forms..
|
| Exception in test cases | 19 Sep 2006 17:41 GMT | 2 |
We are new to using the Tests in VS 2005, and they are really great, but we are having a problem with them in regards to exceptions. Any many cases when we are debugging code we would like unhandled exceptions to pause execution where the exception occurs, rather than
|
| Thread crossing | 19 Sep 2006 17:28 GMT | 2 |
I created an application with the FrameWork 1.1 containing differents forms and threads runing. There was no problem, I could click on a picture on my Main Form to call the Show() function of another form without problem. Then I installed Visual Studio 2005 and the ...
|
| Conatainer objects | 19 Sep 2006 16:35 GMT | 3 |
Is there some easy way to determine if an object is a container? I
|
| WebControls.Login.MembershipProvider | 19 Sep 2006 16:33 GMT | 4 |
Hidey ho, C#, ASP.NET, VS2005, SQL Server 2005 Developer I've used aspnet_regsql to install the membership/role tables into my application database.
|
| Code generators: Do you guys use them? | 19 Sep 2006 16:32 GMT | 4 |
In the next few weeks, we'll be discussing what standards will be used for our web development, and one of the suggestions was to use a code generator (in our case, the first version of LLBLGen). Personally, I don't like code generators. I inherited two web
|
| How to properly get Handle of started process? | 19 Sep 2006 16:27 GMT | 4 |
Here is what I need to accomplish: 1. Start new process using Process.Start 2. Get it's handle and save to text file. On next execution I read text file and see if process with same
|
| 2.0 Collections data | 19 Sep 2006 16:18 GMT | 5 |
1) Is it worth to replace all HashTable and ArrayList (framework 1.1) usage by Dictionary and List (framework 2.0) ? I suppose the answer would be yes as the 2.0 collections are type safe and should perform better.
|
| How to emulate union c++ behaviour | 19 Sep 2006 16:16 GMT | 1 |
I have several binary files, for every file i can have int, double, decimal values and so on. I'd like to write an only method in order to read data, can I write something similar to struct union c++?
|
| save DataGridView to Xml | 19 Sep 2006 15:59 GMT | 10 |
Hello Gurus, I want to save the state of an unbound DataGridView on my Windows Form application to an XML file so i can later load it back.. Basically, on my form I have a DataGridView, it's got some
|
| App.Config and .NET 2.0 | 19 Sep 2006 15:31 GMT | 1 |
I read that 2.0 Supports modifying the App.Config however I dont see its true and I still get an exception when trying to add a new key. if(firstTime) ConfigurationManager.AppSettings.Add("FirstName", "John");
|
| User class sorting | 19 Sep 2006 15:30 GMT | 10 |
I would like to develop a generic class sorting function. Currently, when I need sort a collection of user class, for example: Person, Exhibition, Country I need implement a comparer class for each user class, for example:
|
| XML Serialization: serializing multiline strings? | 19 Sep 2006 14:50 GMT | 3 |
I'm trying to serialize a multiline string (coming from a textbox), but after deserializing it it removes the newlines. Is there a way to instruct the deserializer on how to handle the formatting it comes across?
|