| Thread | Last Post | Replies |
|
| hiding a rows in DataGridViewComboBoxColumn | 29 Oct 2006 09:23 GMT | 1 |
After a value from the combobox has been selected in a previous row of the DataGridView, I would like to hide that value from being selectable in the combobox in a new row of the DataGridView. Here is a visual sample of what I'm trying to do:
|
| Thread.Suspend() | 29 Oct 2006 08:08 GMT | 2 |
I've read that it is not recommended to use Thread.Suspend and Thread.Resume to control execution of threads and that use of the Monitor class is preferred. I'm writing a server that lets users chat together using a GTK# text window and use of Thread.Suspend and
|
| When to use the tools... | 29 Oct 2006 07:46 GMT | 1 |
Microsoft isnt always the best at doing documentation for their tools and applications. They tend to document what it does, and not so much WHY you would want to use it. So, for anyone who is willing to... can you look at the list at this link:
|
| Inner Class Extends Outer Class | 29 Oct 2006 07:46 GMT | 5 |
A construction like this: class Outer { class Inner:Outer
|
| Question of a Java programmer | 29 Oct 2006 07:35 GMT | 23 |
I´m relatively new in programming with C#. I want to design a class with can only be used in the same namespace. So I declared this class as protected, but the compiler gives me the following error:
|
| System.ObjectDisposedException | 29 Oct 2006 02:43 GMT | 3 |
I´ve a problem with a small line of code. For my Windows Application I designed a form for exporting data into xml files. I´m opening the dialog with:
|
| In the ItemCheck handler of a checked ListView, how to find the Item.text value of the row whose checked value changed? | 29 Oct 2006 01:49 GMT | 3 |
Here's a skeleton-handler of what I'm trying to do: private void editBbListView_ItemCheck(object sender, System.Windows.Forms.ItemCheckEventArgs e) {
|
| "CS1513: } expected" ASP.NET compilation error while accessing base members | 29 Oct 2006 01:25 GMT | 1 |
I'm having a weird error. I'm getting error CS1513 on Line 36. It appears when I comment out this line, it compiles just fine but doesn't do what I want, which is run the code in the base class method "Page_PreLoad(..., ...)".
|
| radio button list question | 29 Oct 2006 00:32 GMT | 2 |
How do I reset a radio buttion list so that no radio buttons are selected any longer? (Please give the code.) Many thanks.
|
| Handling C pointers within .NET | 28 Oct 2006 23:39 GMT | 5 |
I'm building a program where i want to use function which is written in C programming language. So I built .dll of it. Functions parameters list looks this: void function(char *input, char *output, int number_in, int number_out,
|
| Decoupling | 28 Oct 2006 21:50 GMT | 7 |
I'm working on an application with a Data Access Layer, API and UI. There are some entity classes defined in the DAL which the UI uses through the API. This means that there is some coupling between the DAL and the UI.
|
| Threading.Timer & System Shutdown Problem | 28 Oct 2006 19:20 GMT | 2 |
I created a windows form application. It has a Threading.Timer and when the timer ticks it does some work and show a popup window. The problem is that while this program is running if the user tries to shutdown Windows, my application doesn't quit and neither does
|
| 2 questions about the extension methods in C# 3.0 | 28 Oct 2006 17:59 GMT | 2 |
Have just read about LINQ ant the new planned features of C# 3.0. I think it's fantastic, but I have a few questions about extension methods: Question 1: Syntax
|
| Learning C# | 28 Oct 2006 17:33 GMT | 3 |
1. Put an application in sleep mode so that it consumes as little PC resource as possible. When triggered by an event, back to normal/work mode. After done with work, back to sleep mode again. How can this be done in C#?
|
| c# sms 2003 add to collection | 28 Oct 2006 16:54 GMT | 1 |
In the process of developing a C# GUI for our desktop support team. Basic code following allows me to query the contents of a collection. Would someone help me by posting a sample of how to add workstations to a collection. Thanks
|