| Thread | Last Post | Replies |
|
| DataGridView Changing Cell Color | 13 Sep 2007 06:34 GMT | 1 |
I want to change the cell color of a specific cell without going through an event. I tried using: this.datagrid.Rows[0].Cells[0].InheritedStyle.BackColor = Color.LightGray;
|
| datagridview checkbox | 13 Sep 2007 00:35 GMT | 6 |
Gday, I have a datagridview that I am creating the columns programatically which all seems to work fine. I have a couple of dropdown boxes, so I have set the editMode= EditOnEnter.
|
| Hotkey functionality | 12 Sep 2007 23:22 GMT | 4 |
I need hotkey functionality inside my Windows forms application. There are going to be more than 20-30 commands some of which will even involve function keys (E.g. CTRL+F2). I came across the following article from 2002 explaining the technique:
|
| Question about installer classes/custom actions during setup & deployment projects. | 12 Sep 2007 22:08 GMT | 1 |
By default a VS.NET 2005 generated setup and deployment MSI will prompt the user to "remove or repair" if they attempt to run the MSI after already installing the application. I would like to change this behavior so that instead the user is
|
| ComboBoxEx | 12 Sep 2007 10:59 GMT | 2 |
Have you ever seen some .NET wrapping for Win32 ComboBoxEx control? I'd like to find something ready with images/indentations in the dropdown list, etc... Thanks.
|
| C#, Tool Windows and focus issues | 12 Sep 2007 09:42 GMT | 1 |
I am writing a special version of a paint program using c# and the .Net Framework 2.0. So I have multiple Windows with the FormBorderStyle FixedToolWindow, one windows as a main editor window with the default border style and now i
|
| User Control Unload event | 12 Sep 2007 07:36 GMT | 1 |
Is there some event that triggers inside a user control when its parent form is closed? I have a user control that subscribes to an event in its constructor. I need it to unsubscribe when it is no longer needed, but I can't find an appropriate event to hook into. Is there a ...
|
| Question on control used in Outlook for my project | 12 Sep 2007 05:16 GMT | 1 |
I would like to do a form similar to how the contacts are displayed in Outlook? Any ideas on what kind of control they used or how they did it? Bill
|
| User Control issue at design time | 11 Sep 2007 17:26 GMT | 7 |
The following is all relevant to VS 8.0.50727.762 (SP.050727-7600) I have .Net 3.0 installed along with the CTPs for WPF and WCF etc. I do NOT have Orcas installed. I have created UserControl A I have created UserControl B that has UserControl A on it
|
| Entering a set of integers | 11 Sep 2007 07:34 GMT | 2 |
I am wring a Windows Forms application with VS2005/C#. The user of this app will enter a set of integer values (0-255 each), unknown quantity. All I can think of is TextBox and custom code to parse comma-separated values, but it's not elegant and error-prone. Can someone suggest ...
|
| how to display a simple table | 10 Sep 2007 15:12 GMT | 1 |
I'm developing an application for pocket pc with Windows forms c# Visual Studio 2005. I want to have a form with some sort of a table showing some data. I don't want to work with data base. Only to display, for example, some
|
| Create a page in a class library? | 10 Sep 2007 11:47 GMT | 3 |
I'm working in a C# class library and one of it's functions is to send some mails. These mails are meant to contain HTML code and also data obtained programatically.
|
| Squares in TexBoxes where CrLf should be | 10 Sep 2007 07:52 GMT | 3 |
I have a TextBox in VB.Net that is multiline and has AcceptReturn set to True. When I put in a few lines, save it to the database (via a web service) and return it back, the carriage return/line feeds show up as black squares. If I view the text coming back from the web service in ...
|
| form is shown in background... should be foreground | 08 Sep 2007 18:25 GMT | 2 |
A really weird problem: Form1 is the main form. Clicking on its button displays: Form2 as a modal form (ShowDialog). Clicking on its button has the purpose to close this form and display Form3. The problem is that
|
| how to set the datagridview columns to allow user to click to sort | 08 Sep 2007 14:48 GMT | 3 |
I have a datagridview with 3 columns. the grid selectionmode is set to this.grid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
|