| Thread | Last Post | Replies |
|
| Panel Control Question | 23 Jan 2004 03:26 GMT | 2 |
I am stuck on something that must be simple. However, I have been searching the obvious places for several days but haven't come up with an answer: I have a Panel control with a custom designer. The designer creates several designer verbs. When a verb is selected, I want to ...
|
| Debugging with Break option in windows forms | 23 Jan 2004 02:06 GMT | 1 |
I am trying to break into the VS debugger on unhandled exceptions in a form. I have tried setting and removing the jit settings in the application config file and in the options dialog. All I get on unhandled errors is the dialog with continue and quit - not with break. Isn't ...
|
| DataGrid/DataView Display problem | 23 Jan 2004 00:42 GMT | 1 |
I have a dataset table. I have filtered it and created a datview which I use as the datasource to a datagrid. That all works just fine. When I edit cells in the datagrid, then update the dataset table, the datagrid displays both the original row and the modified row. I only want ...
|
| Error- No source code available for the current location | 22 Jan 2004 22:27 GMT | 3 |
I'm getting a "No source code available for the current location" error randomly as I debug my app. Any idea of what may be causing this and suggestions to solve it will be really appreciated. TIA
|
| Expamding empty ComboBox problem | 22 Jan 2004 20:24 GMT | 3 |
I have noticed the following problem. If you try to expand the drop-down list of a ComboBox (DropDownStyle=DropDown) with no items and immediately attempt to click another control (displayed underneath the combo box, not sure about other locations), nothing will happen. It takes ...
|
| Has an Event been Fired? | 22 Jan 2004 17:57 GMT | 1 |
When a control is clicked multiple events are fired in order. For example, clicking on a combobox dropdown button fires the Enter -> Got Focus -> Click event. In the "Enter" event handler is it possible to find out if the "Click" event is going to happen?
|
| Problems with child forms | 22 Jan 2004 17:24 GMT | 2 |
I've got a problem. When I maximize my mdi and try to open some mdichild forms maximized too, sometimes appears more then one control box. And when i try to close them, it just leave one of them opened, and no way to close it.
|
| changing appearance/color of the particular list item | 22 Jan 2004 16:46 GMT | 2 |
I wonder if we can do this in .net. I want to change the appearance of the particular list items in a checkedlistbox control. Can we change those particular items color for example change forcolor of
|
| WinApp Deployment | 22 Jan 2004 15:55 GMT | 1 |
I am frustrated with the concept of No-Touch Deployment. This was a big marketing aspect of the .NET development model, but there are many ways to do it, and none of them are working for me. The Updater Application Block requires BITS, its own service, a script file, etc. This is ...
|
| Populate ComboBox with a DataReader | 22 Jan 2004 10:26 GMT | 1 |
Is it possible to populate a ComboBox's DisplayMember and the ValueMember via a SqlDataReader in C#? I know how to do it off of a dataset, but I would rather not incur the overhead since it is just a display field that is used to populate other information from the key value ...
|
| PropertyGrid not updating correctly | 22 Jan 2004 02:41 GMT | 1 |
I've made a class containing a public int and a public Point. I also created a TypeConverter (in fact an ExpandableObjectConverter) supporting InstanceDescriptorInfo. This results in a nice expandable property containing the integer
|
| Passing values between 2 Windows Forms (C#) | 21 Jan 2004 23:26 GMT | 1 |
I am wanting to create a Lookup window that receives inputted text, searches a database, shows results, and then returns a key value when the user selects the correct record What is the best way to communicate between 2 windows? For example, in Access, the OpenArgs parameter was ...
|
| controls are interacting even though they have different binding contexts | 21 Jan 2004 23:06 GMT | 3 |
I have a windows form containing a listbox and a datagrid. Eac control's DataSource is a different DataView from the same DataTable Each control has its own binding context. The pseudo-code I use to se up the controls is as follows
|
| events in multithreaded application | 21 Jan 2004 22:57 GMT | 6 |
I want to create a class that creates a thread internally to do some work. It will interact with winforms using events. What happens when the code that is running in a seperate thread raises an event?
|
| TreeView with tri-state buttons | 21 Jan 2004 20:17 GMT | 1 |
Is there any way to have tri-state checkboxes in the TreeView, preferably without having to use the state icons for that purpose. Does anyone have or know of an implementation of tri-state checkboxes for the TreeView?
|