| Thread | Last Post | Replies |
|
| Unslect a row in DataGridView | 31 Jan 2008 20:00 GMT | 1 |
I have a Windows Forms application consisting of several main level TabControls and each of these controls has two or more TabControls within them. I have a method which calls all the LoadDataGridViews methods which I call
|
| VS 2008, Web service and Extremely Slow Build | 31 Jan 2008 19:04 GMT | 4 |
I have a Web Service with approx 90 functions. I had, or still have, a VS 2005 Windows app that has a reference to the Web Service and when building the Windows app it takes a few seconds to build the release or debug.
|
| Why is DataGridView.AutogenerateColumns not exposed in designer | 30 Jan 2008 20:30 GMT | 4 |
Does anyone know why this is not exposed in the designer? Is it just me or is this a really stupid oversight? I turn it on in code, but that doesn't prevent the designer from every once in a while autogenerating columns on my datagridview. I can't
|
| Problem setting color of ListView items | 30 Jan 2008 17:03 GMT | 2 |
Using C++ in VS2005 I am setting color of ListView items (there is only a single column) using the following code: ListViewItem ^pItem = gcnew ListViewItem(pName);
|
| Can control properties on base Form be changed on derived Form? | 30 Jan 2008 16:29 GMT | 4 |
When I have a base Form that I add controls to, then inherit that Form, when the derived class is viewed in the designer, the controls that were placed on the base are visible, but all the properties are locked. What I would like to do is to use controls in the base that act like ...
|
| What form event fires after user controls are loaded? | 30 Jan 2008 11:58 GMT | 1 |
Need to get access to user control properties when loading host form. Which form event fires after controls are loaded? Thanks, Charlie
|
| How to connect two systems in java | 30 Jan 2008 08:27 GMT | 4 |
How to connect two systems in java and one system can send information to another system viceversa please friends give any suggestions to me as early as possible thanking you
|
| How can I pass a parameter to a new thread? | 29 Jan 2008 21:59 GMT | 2 |
How can I pass a parameter to a new thread? Thread t = new Thread(new ThreadStart(ThreadProc)); t.Start(); Thread.Sleep(0);
|
| Displaying characters on a form from another code page | 29 Jan 2008 16:39 GMT | 3 |
I am trying to display some data that I received into a form. The form is in english. The data is in cyrillic (russian) which uses codepage 1251. I am trying to change the button text to russian. For example:
|
| Group box border color | 29 Jan 2008 13:04 GMT | 2 |
I am trying to find the border color for a group box so I can create some additional lines within the group box that match it. I can't find any reference that says which system color it maps to. I have tried a few different colors but some match on XP but not in Vista so if I can
|
| GZipStream give error Arithmetic operation resulted in an overflow.(more then 3 GB file) | 29 Jan 2008 12:45 GMT | 1 |
I use System.IO.Compression namespace for compressing file give me overflow for streamObj.Length when file size more then 3 GB. following my code: Dim streamObj As Stream = File.OpenRead(GZipFileName)
|
| How to select items in a ListView control through code? | 29 Jan 2008 11:27 GMT | 2 |
Hello, friends, I tried to select all the items using (c#.net): private void ButtonSelectAll_Click(object sender, EventArgs e) {
|
| Failed to enable constraints | 29 Jan 2008 04:20 GMT | 1 |
I've created a dataset that includes a tableadapter and table for countries. Here is the table schema CREATE TABLE [CAT].[Countries]( [CountryID] [smallint] IDENTITY(1,1) NOT NULL,
|
| How to requery w DataGridView and maintain context? | 28 Jan 2008 15:15 GMT | 1 |
I have a DataTable/DataSet from SMO that is being displayed in a DataGridView. I need to periodically requery the DataTable and refresh the DGV display with the updated results. This much I can do. However, I also need it to retain its user context. That is, what
|
| Windows form designer generated code being misplaced | 28 Jan 2008 02:42 GMT | 10 |
Let's say that I have a form, called Form1. It could have three files associated with it, which I have listed below together with my understanding of what "should" be in each: Form1.vb -- should contain any custom code I've written for the
|