| Thread | Last Post | Replies |
|
| simple question: how to get the control location of screen | 11 Mar 2006 02:15 GMT | 1 |
as the title. how to get the control location of screen. normally, just get the location of container.
|
| Determine control type while iterating through a collection | 11 Mar 2006 00:51 GMT | 2 |
I trigger this action from a radio button included in several panels. I want to disable all controls inside the panel when the radio button indicates the group should be inactive. This solution works but it reeks of a hack borne of my lack of experience working with >NET ...
|
| C# newbie question passing variables | 10 Mar 2006 22:56 GMT | 2 |
How can I pass a boolean variable from one winform to another winform? Thanks Jon Stroh
|
| BackColor on Transparent controls | 10 Mar 2006 18:29 GMT | 2 |
I have a custom control derived from ListControl, which does not allow me to set its BackColor to Transparent (and presumably benefit from VisualStyles). How can I determine the true effective BackColor when the control is
|
| Click Once and IIS Version | 10 Mar 2006 18:05 GMT | 3 |
Click Once requires Framework 2.0. Does it also require Win 2003 and IIS 6? Or does it work with IIS 5 on Win 2000 Server with 2.0 installed? Thank you.
|
| DataGrid ArrayList IndexOutOfRangeException | 10 Mar 2006 15:19 GMT | 2 |
I have a DataGrid bound to an ArrayList. When I delete a 'row' from the ArrayList the DataGrid throws an 'IndexOutOfRangeException' exception. I constructed a very simple sample app that reproduces the problem (code below). This sample simply populates the grid from the array. ...
|
| close a form | 10 Mar 2006 12:07 GMT | 3 |
How to close(unload) a Windows form on load event and not let to be displayed when a criteria is met? Form 1 calls form2 as frmForm2.Show and in Form2_Load event I'm chekcing for a criteria and if it's true close
|
| Text Box Manipulation | 10 Mar 2006 09:37 GMT | 1 |
I have an issue under which I have a multiline text box that can display six lines or 650 characters of Code, the problem is that a carriage return counts as a line, so if the user presses the enter button six times the cursor is all the way at the bottom fo the report,
|
| Passing variables between forms | 09 Mar 2006 19:43 GMT | 1 |
Trying to pass variables between 2 forms. I think I have it all set up correctly but I'm not getting my changes from form2 back into form1. Well, before I get into that, here is what I am trying to do. Load form1 with some default config values. When you want to change those
|
| HELP! Textbox is trapped in focus with DataBindings setup | 09 Mar 2006 19:09 GMT | 1 |
I have several textbox I manually setup the DataBindings. myTextBox.DataBindings.Add("Text", this.MyObject, "myPropertyName", true); This myPropertyName is a Nullable datatype. For example
|
| prevent windows form from "hang" | 09 Mar 2006 18:43 GMT | 2 |
Iam developing an application using windows forms as the gui. The application is doing some heavy database work. While this work is done (I use separate threads for this) I would like to print some information in the gui but I dont know how to do, because it seems like the gui is ...
|
| Inherited forms weirdness | 09 Mar 2006 16:37 GMT | 3 |
I've got a base form in my library DLL, and an inherited form in the client exe. This works wonderfully, until I go to make a change to the inherited form. For example, if I resize the child form it'll re-create object declarations in InitializeComponent(). So, if I have:
|
| Inherited form control anchoring | 09 Mar 2006 16:16 GMT | 4 |
I'm using VS2005 Pro and trying to minimise the redundant code between a number of similar forms in a C# project. I’ve produced a base form, which contains a few buttons, a graphic and some associated code. This works okay programmatically, but I find that the
|
| Removing vowels | 09 Mar 2006 14:36 GMT | 2 |
How come the folling code doesn't work? Straight from MSDN. Dim Vowels As String = "AEIOU" Return xText.Trim(Vowels.ToCharArray)
|
| Datagrid control question (newbie) | 09 Mar 2006 11:24 GMT | 4 |
Is there a selected items property or something like that on the datagrid control. I need to be able chck if there are multiple rows selected in our datagrid control in the popup event of a cont3ect menu, and modify items on the menu...
|