| Thread | Last Post | Replies |
|
| Windowsforms inheritance: driving me nuts | 20 Sep 2004 06:43 GMT | 2 |
Question: how to stop functions from executing twice when using inherited Windows Forms? Background: WindowsForm + forms inheriting from this (base)form.
|
| How to reverse the flow of event calling? | 20 Sep 2004 02:43 GMT | 4 |
When an application programmer subscribes to an event...I would like the execution to take place in a FILO mechanism...f.e.x. this.button1.Click += new System.EventHandler(this.MyOwnClick ); this.button1.Click += new System.EventHandler(this.button1_Click );
|
| unhandled exception - possibly COM | 20 Sep 2004 01:42 GMT | 1 |
from reading past threads, this seems to be a common problem, but i cannot seem to find a fix ... i've got a WinForms app that i need to be bulletproof. right now, it is calling a separate assembly to thumbnail videos.
|
| datagrid too week? | 18 Sep 2004 23:29 GMT | 2 |
It seems the datagrid in windows form is not powerful, even for format. Is it the only way to create a rich formatting datagrid that using dynamically created controls in a panel? sounds a lot of work. Btw, how to capture the insert/delete/update event when using datagrid?
|
| Developing an extensible app? | 18 Sep 2004 22:55 GMT | 2 |
Has anyone had experience of developing a win-forms app where you want to allow add-ins. Almost to the point of being like the management console in windows? I'm sure I saw a link on MSDN about a year ago doing something similar to this.
|
| GetDataPresent and interfaces (DragDrop) | 18 Sep 2004 20:06 GMT | 1 |
Is is possible to check to see during a drag drop operation if the object being dropped implements a particular interface? For example, if I have the following class which implements IMyInterface:
|
| How to save the form width and height in a variable? | 18 Sep 2004 18:43 GMT | 6 |
What is the best method for saving the width and height of a form? What event can I use best for this? In other words, where to put the code: frmWidth = Form1.Width; Thanks,
|
| UI direction, please | 18 Sep 2004 09:25 GMT | 1 |
I am learning .NET. I have been doing classic ASP and VB development for a while. I have some java and JSP experience . C# is wonderful and I love it. But I have been long out of the world of windows UI development, and I was never very good at it in the first place. I am doing a ...
|
| Naming object on a form | 17 Sep 2004 19:39 GMT | 2 |
Hi, I could in Delphi name labels with a number like lblName(1). This is useful when I'm making functions, it can be used like this: int i = 0; if ( a > b)
|
| XP SP2 Shifts Labels! | 17 Sep 2004 17:37 GMT | 2 |
I've written a very simple VB.NET app with a form that has a Label and a TextBox to the right of the Label. The Label has textalign=MiddleRight. When I run the app on XP SP1, the Label's text butts up to the TextBox. When I run it on XP SP2, the rightmost letter (approx.) of the ...
|
| Create an instance to a added usercontrol? | 17 Sep 2004 17:26 GMT | 2 |
I've added a UserControl to my main Form: this.Controls.Add(UserControl1); But how to I create an instance to this added control so that I can change its size, location etc.?
|
| DataGrid Column HorizontalAlignment Issue | 17 Sep 2004 16:59 GMT | 2 |
I'm using GridColumnStyles to define the columns of a DataView I want displayed. I want some of the columns to display the data as right justified. I use the HorizontalAlignment.Right enumeration to set the alignment for the column. All works fine except that the column ...
|
| Wrong shortcut displayed - Ctrl+D0 | 17 Sep 2004 15:52 GMT | 4 |
I have a C# form that displays a shortcut key for a MenuItem but it is displayed with a 'D' in front of the number: Instead of Ctrl+0 it shows Ctrl+D0. Any suggestions on this?
|
| Updating textbox from class that did not create the textbox? | 17 Sep 2004 10:59 GMT | 3 |
The following problem is driving me nuts :-( Hopefully someone here can help me solving it... I have created a form called Form1 (Form1.cs) and added a panel called Panel1 on it. I also added two buttons called Button1 and Button2.
|
| How to set visible=false for ScrollBar in MDI form? | 17 Sep 2004 10:50 GMT | 3 |
I want to invisible vertical or horizontal scroll bar in MDI form? How to do that? Thank you in advance.
|