| Thread | Last Post | Replies |
|
| DataGridView: EnterCell - the cell before | 26 Jun 2006 14:48 GMT | 1 |
in the eventhandler of CellEnter the row/col of the parameter and of currentcell
|
| Very annoying datagrid problem | 26 Jun 2006 14:37 GMT | 1 |
The problem I have is this: I have a datagrid with custom column styles. I bind this grid to a DataSet then I use the CurrencyManager to handle the PositionChanged event.
|
| Smart Clients a Dead Concept ? | 26 Jun 2006 12:24 GMT | 7 |
the notion of smart clients seems a good one from a development perspective but there does not seem to be much literature around. not one current book. can anyone she light on the current state of play? is MS pushing this technology? or have we moved on?
|
| A problem with using DataGridView control in an MFC CDialog | 26 Jun 2006 10:12 GMT | 4 |
I have a very simple CDialog-based application (VC++ 8.0/2005), where a DataGridView control is included through the usage of CWinFormsControl class. I experience the following problem with this application. If I switch to a different application (Alt+Tab, for example) while a ...
|
| UI Responsiveness and DoEvents | 26 Jun 2006 09:26 GMT | 2 |
This is a 6.0 v. .NET question. In 6.0, you worked around the fact that everything ran on the UI thread by judiciously invoking DoEvents to keep the message queue clear. Using this approach I was able to write UIs that were very responsive. Ironically, .NET has made this a lot ...
|
| How to draw a window surface even it is invisible, covered, or out-of-desktop? | 25 Jun 2006 10:30 GMT | 1 |
I wanna draw any window surface without window-type limitation. So far, using PrintWindow API seems to be a good choice, but I never successfully invoke it. Always return false. I totally don't know why. Sigh...
|
| Form's memory size on minimize | 25 Jun 2006 09:05 GMT | 2 |
I noticed a strange behavior for winforms: I create an empty winform application (VS 2005), and changed the FormStyle property to minimized. According to the task manager, the release version of the application takes
|
| How to wait till webbrowser completes sending a form? | 24 Jun 2006 22:44 GMT | 2 |
I've got a program that has to submit forms automaticly and go to the next page. I know that the following code works for Navigate but it hasn't any affect on Documents.Forms[0].InvikeMember("Submit");.
|
| Binding list problem with listbox | 24 Jun 2006 21:09 GMT | 2 |
I have created a Component called a BOConnector that implements IBindingList so it can provide access to a list of business objects to be bound to controls. At design time there is no live list of objects so BOConnector creates an
|
| How To: Edit data in a DataGridView Control | 24 Jun 2006 14:36 GMT | 6 |
I am trying to create an editable grid of data. The source of the data is a custom collection I have created the collection using generics... List<myObjectType> myList = new List<MyObjectType>() Then filled "myList" with objects etc etc.
|
| ListView loading slowly | 24 Jun 2006 14:22 GMT | 5 |
I am loading a ListView like this... foreach (DataRow dr in dt.Rows) { ListViewItem lvi= new ListViewItem((string)dr["field1"]);
|
| a simple crystal reports app | 24 Jun 2006 13:11 GMT | 2 |
I want to make a simple Crystal Report with data extracted from sql server 2005. I use C# in VS2005. In the windowform I use a CrystalReportsViewer and I add a new CR to the project....design my report( add the fields from table to the
|
| Win32 vs .Net performance | 24 Jun 2006 02:22 GMT | 4 |
I am not trying to smack a hornets nest, but is there any way to achieve near-Win32 performance from .Net apps? I'm porting a VB6 app to .Net and the difference in performance is notable. I'm using 3rd party controls from the same vendor and have trimmed as much
|
| DataGridView questions. | 23 Jun 2006 23:16 GMT | 3 |
I have a few DataGridView questions that hopefully someone will be able to help me with some or all of them. 1) I have a DataGridView that is bound to a DataTable (DataSource set to a table). When I progromatically add a row to the DataTable the DataGridView is
|
| Making DataGridView do row-by-row edit instead of cell-by-cell | 23 Jun 2006 20:50 GMT | 4 |
I am trying to find a way (that is not a hack, hopefully) to get a DataGridView to behave in a row-by-row editing mode. Basically, what I see now is this: I type in a cell and the little row header arrow icon changes to a pencil to show me that I am in edit mode. As
|