| Thread | Last Post | Replies |
|
| How to report a bug to MS? | 16 Jun 2006 23:26 GMT | 5 |
People, the way Windows.Forms TabControl draw itself is buggy. I the tabs page are on top of the control it is ok, but if it is set to the right, left or botton of the control it just doesn't draw the way it should. At this point Java draw it better. I'm not sure, however, if I'm ...
|
| Have you rn C# application in Linux? | 16 Jun 2006 23:24 GMT | 4 |
People, have any of you ever run a C# .NET application in Linux? If yes, tell how easy/good it was. TIA, Scirious.
|
| Drag and Drop multiple items | 16 Jun 2006 23:00 GMT | 3 |
I've searched for info on how to drag and drop a group of strings (or any other object) from one control to another. Looked through articles by Dino Esposito, checked the Forms books by Sells and MacDonald. You'd think it would be there.
|
| Lost in the XML jungle | 16 Jun 2006 22:31 GMT | 4 |
I think I'm lost in the XML attribute jungle in my attempt to serialize/deserializing data that must be persistant, and any help is highly appriciated. I need to save this class in an XML file and it must be unicode formatted:
|
| FileStream.Write slow to write last 100K of 2GB file | 16 Jun 2006 22:15 GMT | 5 |
Is there a faster way to write the last 100K of a large file? This code takes almost two minutes to run on my machine. int buffer = 100000; int length = 2000000000;
|
| Beginner's question about GC | 16 Jun 2006 22:14 GMT | 2 |
Let's say I have an object A. Object A exclusively references object B. Now: Object A goes out of scope. does this mean the system garbage collects object A and B together?
|
| Dynamic Property Array in Form Designer | 16 Jun 2006 22:13 GMT | 1 |
I'm using C# 2.0. I have a UserControl-based class that contains a set of controls that are TextBox-based. The number of controls defaults to 1, but it is a browsable property (NumFields) in the form designer and can be changed.
|
| Form Loading - Issue With Trapping for Errors | 16 Jun 2006 22:09 GMT | 4 |
I created a Windows application that is having an odd issue. The application starts for a split second, but then closes. I cannot get any error messages to display as to what causes the program to close. Listed below is my Default_Load method. How would I be able to trap the ...
|
| AutoPostBAck problem | 16 Jun 2006 21:39 GMT | 1 |
HELP!!!! I have a ListBox control, when one of the item is clicked I am using a series of porperties and methos for Reponse class in order to allow download diff files. The problem is that it doesn't matter what is clicked after a
|
| Identifying the current class in a class hierarchy | 16 Jun 2006 21:21 GMT | 2 |
Is there anyway I can get the Type of the class that owns the currently executing code? I'm trying to get this information for logging purposes. I have a number of tracing messages throughout a class hierarchy, and I'd like to be able to log which class a specific trace message ...
|
| Real-time GC | 16 Jun 2006 20:45 GMT | 3 |
Can somebody help me with theory and practice of automatic garbage collection. The greatest problem is that for some programs, the GC takes some time. Thx
|
| Explorer Context Menu of a given file? | 16 Jun 2006 20:41 GMT | 2 |
Can anybody give me a pointer if/how I could retrieve the Explorer context menu of a given file in C#? Thanks in advance, Martin
|
| Rectangle in a pictureBox | 16 Jun 2006 19:26 GMT | 3 |
I have a picturebox which I will have a image loaded to it and some text fields with coordinates. I am drawing a rectangle according to the coordinates in the text fields. Rectangle r = new Rectangle(int.Parse(this.txt_Left.Text),
|
| Checking to see if a column exists in a datatable | 16 Jun 2006 18:44 GMT | 2 |
Iam struggling with an application where I am trying to transfer a datarow from one sql server to another instance of sql server. The schmeas may be slightly different and I am getting an exception when they are different. Is there anyway i can modify the code below so that if ...
|
| Creation of wizard in .net | 16 Jun 2006 18:05 GMT | 1 |
I have some ini files with me. I want to create a wizard that would take this ini file as its input and output a C# class which when given to a control would give me means to edit the ini file. I'm speaking in the
|