| Thread | Last Post | Replies |
|
| Recompiling samples via command-line | 24 Jan 2004 20:40 GMT | 2 |
We wrote a class library and then we created aprox. 30 demo projects for both C# and VB. They all have the copy local set to true and it will be like that until the end of the development. So, everytime we change the library someone has to open each sample and recompile it or ...
|
| Legacy Application Reengineering (Basic to C#) | 24 Jan 2004 20:38 GMT | 5 |
We currently have a financial application running on an HP 3000, written in Basic ( the old kind, with line numbers and single-character variable names, etc) with about 500K lines of code. It uses a no-longer-sold, non-relational, HP-proprietary database called Image. This ...
|
| Binding a PictureBox Control to A ImageList - what field to bind to? | 24 Jan 2004 18:36 GMT | 2 |
I am trying to bind a simple ImageList Control to a PictureBox. I can't seem to find in documentation, or through trial and error, the right ImageList data member to bind to. Nothing seems to work. The code below attempts to bind the PictureBox "pbMain" to the ImageList
|
| DataGrid ScrollBar | 24 Jan 2004 17:32 GMT | 1 |
Is it possible to make a scrollbar appear at all times on the datagrid? G
|
| Preventing user interaction while showing a "wait" cursor | 24 Jan 2004 16:56 GMT | 11 |
I have a form which performs some asynchronous code. I want to display a wait cursor when it starts, and hide the wait cursor when it has completed. This part works fairly well, using: this.TopLevelControl.Cursor = System.Windows.Forms.Cursors.WaitCursor;
|
| VS build result as dll | 24 Jan 2004 16:19 GMT | 1 |
In Visual Studio, how to configure the build result as dll. Please advise. Peter
|
| Display menu items programatically in C# | 24 Jan 2004 11:53 GMT | 2 |
Hi, I was wondering if it is possible to display menu items inside code, i.e. to simulate the click event to menu items. E.g. menu File has a number of menu items( new, open, ... ). I want to display those submenu items programmatically. Thanks for your kind help in advance.
|
| How to display My Network Places with FolderBrowserDialog | 24 Jan 2004 00:35 GMT | 5 |
I am using the FolderBrowserDialog in my application and it works well. However, when it is displayed, it does not include "+ My Network Places" in the list of available locations. I notice that other Microsoft applications (like opening a .zip file and clicking browse) do ...
|
| How to use windows forms controls in a visual c++ app | 24 Jan 2004 00:33 GMT | 4 |
In Visual Studio 7 I have a C++ dialogbased MFC application project. When I open the main form of my application the only available tools from the toolbox are those in the "Dialog Editor" section. The components in the "Windows Forms" are all disabled so I can't e.g. add a ...
|
| Changing compile order within a project | 23 Jan 2004 21:49 GMT | 2 |
I started with two projects in a solution, one containing a BaseForm and the other an enherited ChildForm. I decided to move the BaseFrom to the second project and changed the inherited form to look in the local project for its parent. However, until the baseform compiles, the child ...
|
| No Touch Deploy creating EMF's problem | 23 Jan 2004 21:43 GMT | 5 |
I have a No Touch Deploy application that I want to create and EMF File and serialize it back to the Server via Web Services. When I test the client application running from a local directory (MyComputer zone) it works fine. But when I launch with NTD from my web
|
| ComboBox Items problem | 23 Jan 2004 21:24 GMT | 3 |
Hi....I have a problem with the combobox it's that it show the System.Data.DataRowView in the ListItems...What is the problem if a set my combobox with a datatable and that datatable have the data to show
|
| Control's Validating Event and closing a Form | 23 Jan 2004 20:55 GMT | 7 |
We handle the Validating event for textboxes that are contained in a GroupBox, which is contained in a TabControl which is contained in a Form. If Validation on the textbox fails, we do this: e.Cancel = True
|
| MenuItem tooltips | 23 Jan 2004 17:50 GMT | 3 |
Is there some way of having Tooltips in a menu item? So far I have found no such method. If this is impossible, is there some other way of displaying hint information, such as changing the status bar text depending on what menuitem
|
| Hashtable enumeration | 23 Jan 2004 17:45 GMT | 19 |
How can I loop thru a hashtable changing the Value of each entry ? Whatever I try I always seem to get the error about modifying the collection within the loop.
|