| Thread | Last Post | Replies |
|
| Modifying another forms properties? | 13 Oct 2004 05:33 GMT | 1 |
I have a main form with a panel in which loads other forms. How can I let the forms loaded into panels modify properties of the main form? If I use: FrmMain.Text = "Whatever"
|
| Treeview - Get selected node? | 13 Oct 2004 05:16 GMT | 2 |
I'm trying to use a treeview for navigation in my windows forms app. How do I find the currently selected node? If I use Treeview.SelectedNode.Index it doesn't tell me where in the hierarchy the node is so I get the same number more than once.
|
| form not refreshing when clicked | 13 Oct 2004 05:15 GMT | 1 |
I have a windows application where I am running a bit of code in a module and updating a multi-lined textbox control on a form for each line of code executed. example:
|
| Needed help on printing from C# and printer | 13 Oct 2004 05:10 GMT | 1 |
I'm having a problem here with C# and Epson TM-L90 Thermal Printer. The problem is, in C# I use 'PrintDocument' to send 10 lines with font 'Arial' to the printer to print, but it prints quite slow. When I try to using VB6 to print, it prints quite fast, but the method I
|
| Accessing files from a web server in windows form | 13 Oct 2004 05:04 GMT | 3 |
I have a virtual directory setup in my web service that contains MS Word files, Excel, and large graphic images. I would like to see if possible a vb.net example of how to use http commands within a windows form client application for downloading files. My server files are ...
|
| error - microsoft.visualbasic.compatibility | 13 Oct 2004 05:00 GMT | 3 |
Can any of you guru's help me with the following: When I run a WinForms exe on another machine I get the following error: System.IO.FileNotFoundException: File or assembly name Microsoft.VisualBasic.Compatibility, or one of its dependencies, was not
|
| vb.net startup | 13 Oct 2004 03:13 GMT | 1 |
This is my first shot at a Winforms application in dot net. This application is mainly going to run unattended but is using a form to display current activity of the background processing. In VB6, I could set the startup to be Sub Main and then call frmMain.Show and the program ...
|
| Exposing UserControl Constituents | 12 Oct 2004 19:27 GMT | 4 |
MAIN FORM: In my main form I have a treeview control docked on the left and a panel control filling the rest of the form. USER CONTROLS: I am constructing separate user controls to be displayed within the content area of the form when a tree node is clicked. Each user
|
| form inheritence.. | 12 Oct 2004 18:33 GMT | 1 |
in our project there are a lot of forms..and in each form we used keydown event for shortcuts..for example we uses F2 to call save function ,and f3 to call close form function..but each forms' save function perform different tasks...
|
| Application Parameter Storing - Best Practices | 12 Oct 2004 18:24 GMT | 4 |
I am new to Windows Forms, but battle-scarred in WIN32 API Windows. I am developing a forms application that needs to save the users settings (DB settings, profile selections, etc). I am looking for the best place/way to store these settings by user.
|
| Setting coomon dialog initial position | 12 Oct 2004 17:29 GMT | 3 |
Can anyone please post working sample codes in C# to show how to set the initial position for common dialog box? I tried to search all over the web without much luck. I did find some reference to use windows hooks but could not get it to work to change dialog
|
| Inherited Form | 12 Oct 2004 17:04 GMT | 7 |
I've created a base form that I want other forms to visually inherit from. I've created the base project, added a form, thrown some buttons on it and recompiled it as a class library. I then added another project to the solution. I added and inherited form.
|
| Thread Exception disposes Form Object | 12 Oct 2004 13:16 GMT | 1 |
I am creating my startup Form in a new thread the following way... Thread oFormThread = new Thread(new ThreadStart(AddFormInThread)); AddFormInThread {
|
| Hide Scrollbars on ScrollableControl | 12 Oct 2004 12:13 GMT | 1 |
I am trying to create a grid-like control containg a header for column headings and a body for row data. To do this I inherit the header and body from ScrollableControl and have synchronised the scrolling between them such that scrolling the body
|
| windows forms repeater | 12 Oct 2004 10:21 GMT | 4 |
Im playing around with a little grid/repeater for windows forms http://www.compona.com/repeateralpha1.zip here is a short list of current features: PanelRows , rows that behave like panels , where you can place controls
|