| Thread | Last Post | Replies |
|
| FileStream Question | 06 Dec 2006 21:01 GMT | 2 |
The following code which is supposed to dynamically create files with incrementing names is throwing an exception due to the inclusion of the DateTime.Now component of the sReportSave string: string sReportSave = ( DateTime.Now + "Report.Dat" );
|
| ListView Item and Memory | 06 Dec 2006 20:58 GMT | 1 |
I have a ListView and a form for entering data. When the user is finished entering the data he presses AddToListView. Then there is a large object that is being filled with data that the user has entered and the object is added to the ListView. Then I call:
|
| Setup Error msg when program loads | 06 Dec 2006 19:31 GMT | 2 |
i get a msterious error msg which i haven't been able to duplicate on my development machine, and doesn't happen on every client machine, and not even consistantly on any particular client machine, just sort of randomly.
|
| Ok to hard-code reference to database ID value in app code? | 06 Dec 2006 19:23 GMT | 5 |
I have a class "User" in my application's business tier, and an associated table "User" in my database. A user has a type. Currently they are: ID Name 1 Regular User
|
| Getting correct value from Interlocked operations? | 06 Dec 2006 19:22 GMT | 23 |
I am implementing a threaded producer / consumer pattern just for fun. I am using an internal counter to keep track of the produced / consumed items and am logging that information. I am using the Interlocked class to increment a set of counter.
|
| Please Help: Expression Classifications | 06 Dec 2006 18:08 GMT | 2 |
Can someone please elaborate on (or annotate) this text excerpt I found while reading "The C# Programming Language", by Anders Hejlsberg, Scott Wiltamuth, Peter Golde: Section 7.1
|
| Columnas en DataGrid | 06 Dec 2006 18:05 GMT | 1 |
Buenas... Estoy haciendo una aplicacion en .Net 2003 y quiero desplegar una informacion en un DataGrid, el problema es que necesito darle formato a una de las columnas, necesito cambiarle el Width, le puedo cambiar el
|
| Scope of StreamWriter in Static Class; resource usage implications | 06 Dec 2006 18:02 GMT | 1 |
In a 2.0 Windows Forms app... in a static class I have a method named WriteToLocalLog() that writes to a text file on the local machine. I declare a StreamWriter at the class level (not inside the method), as follows:
|
| how to read data from a sheet in excel file | 06 Dec 2006 15:39 GMT | 1 |
I need to read data from an excel file and populate a dataset. After some search I found following code: connString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +
|
| HowTo: check for existence of xml attributes to prevent exception event from firing | 06 Dec 2006 15:34 GMT | 3 |
I would like to check for the existence of an attribute in order to prevent an exception from firing. Could someone provide an example? tia
|
| Stored procedure with output parameter | 06 Dec 2006 15:10 GMT | 7 |
I have a generic function that executes a stored procedure & returns a data table. Code: ===
|
| beginners queue question | 06 Dec 2006 14:41 GMT | 1 |
I need help displaying the contents of my queue in a listbox(possibly richtextbox if easier?) I know its quite a simple request! any help would be much appriciated thanks
|
| Video streaming with c# | 06 Dec 2006 13:49 GMT | 7 |
Hi i am writing a application where i want to browse video file and copy data into stream and send that stream over network...I have develop P2P windows application where i successfully transfer text message to each other but now i want to send video file and play that file on ...
|
| .NET Basic Question | 06 Dec 2006 13:25 GMT | 12 |
I need to know the Platform indenpendcy of .Net Framework , Like java .... .net is platform independent or not Please answers me , as i am not aware about much in .net frame work regards
|
| Creating a derived object from a base object | 06 Dec 2006 11:18 GMT | 10 |
Is there an easy/special way to turn a base object into a derived object? So for example, given the following: class MyString : String {
|