| Thread | Last Post | Replies |
|
| label1.Location coordinates not being reported correcly in dynamic form. | 22 Feb 2005 09:28 GMT | 2 |
I have a MainForm with a Panel1. My project also has a UserControl1. When a nav button is clicked in the MainForm the Usercontrol1 is loaded into the MainForm.Panel1. All that is working beautifully. I went into the user controls and added a label1 and a button1. When
|
| Overriding a Combobox | 22 Feb 2005 06:12 GMT | 1 |
I have overriden the combobox class in my application. Is there a way I can write code that triggers when the Combobox.Items collection is changed (I.E. myCombo.Items.Add or myCombo.Items.Remove) ?? I have tried using breakpoints with AddItemsCore and AddItemCore override ...
|
| Databinding Failure Part II | 22 Feb 2005 00:03 GMT | 1 |
I created a form that displays one record depending on the choice made via a combo box. In otherwords muliple records are Not filled into the form's dataset, only one. Hence there is no navigation. When I change a field on the form and press update, that routine first
|
| Posting the current row | 21 Feb 2005 23:23 GMT | 2 |
I have been trying to follow the Building an N-Tier Application in .NET Technical Article that Paul Sheriff wrote. I am having trouble, however, with one particular aspect and I was wondering if you could help me. The problem centers around bound controls on the Client ...
|
| Opacity and WM_NCCALCSIZE | 21 Feb 2005 22:41 GMT | 2 |
I have a form which has a custom Non-client area. When the note is activated the NC area is inflated, keeping the client area at the same location on the screen. I manage the size of the NC area using the WM_NCCALCSIZE message and paint it during the WM_NCPAINT. All works well ...
|
| Converting Windows Form into Web Form | 21 Feb 2005 19:15 GMT | 1 |
Can we convert Windows Forms into Web Forms and/or vise versa? I have heard that this is possible through some third party tool, i m not sure. if yes then how much it will cost,
|
| Trap and modify input using a keyboard hook | 21 Feb 2005 18:46 GMT | 1 |
Is there a way to modify the keyboard output? For example, I would like change the "a" character to "b" when the user presses the key and my application is running. I'm using a keyboard hook class, it can be found at http://www.codeproject.com/csharp/globalhook.asp?msg=1033410. ...
|
| Keep the ration while resizing a form | 21 Feb 2005 18:07 GMT | 7 |
Does anybody found a good way to keep the ration of all controls on a form while resizing it ? I tried many things with the anchor and dock option but it still come up pretty ugly as controls end up on top of each others.
|
| Tables and Response.Redirect WIN forms equivalents | 21 Feb 2005 17:15 GMT | 1 |
I am taking an ASP.NET application offline (into a windows forms app) and I was wondering if anyone can help me in two particular areas. 1 - On the web, Response.Redirect directs you to a different web form. However, in windows, all I can find is Form.Show, which opens a form in ...
|
| paint type program's canvas | 21 Feb 2005 17:00 GMT | 1 |
I'm working on a sort of paint program that has the usual canvas pane in the middle of the main form. I'm working on that class and have a couple quick questions.. actually more like I'm looking for opinions. 1) I want a ruler running along from top left to top right and from top ...
|
| Play video formats inside a vb.net application | 21 Feb 2005 16:35 GMT | 5 |
I am curious about ways to play a vido inside a vb.net application. Are there controls for this purpose or some classes in Net which allow this. I am not talking about creating a video, just something that can take the file and play it inside my application.
|
| app.config | 21 Feb 2005 15:12 GMT | 3 |
I have a solution with 2 projects: a class library(my.dll) + a windows application (mine.exe). In exe project I have a reference to the dll. In both I have app.config files, BUT only mine.exe.config file is generated in \bin\Debug\ folder of exe app. What can I do to generate my.dll ...
|
| WindowsForm freezes on second launch | 21 Feb 2005 13:53 GMT | 4 |
I have a WindowsForm application that I developed on my XP workstation. It is a nulti-threaded socket application that sends and receives messages. On my workstation I can close and restart the application normally with no ill effects.
|
| Forms inheritance with UIP 2.0 | 21 Feb 2005 05:32 GMT | 6 |
We are using UIP 2.0 and we encountered a problem when trying to inherit from a form that inherits from UIProcess.WindowsFormView. Our base form have an onLoad event handler that call its controller: private MyController myController
|
| Show Help and Minimise and Exit | 21 Feb 2005 05:27 GMT | 3 |
It seems that in order to get the help (?) button to show in the top right of a form, the minimum and maximum properties need to set to false. I would like to have a help, minimise and exit button on my form. Is there any way to do this?
|