| Thread | Last Post | Replies |
|
| Trimming Windows form caption bar text | 19 Oct 2007 12:58 GMT | 1 |
In the resize event handler of my Windows form, I want to replace a portion of the form's title with ellipsis when the form is too small to completely fit the title. What's the easiest way to generate a trimmed, best-fit caption title? I'm using .NET Framework 2.0.
|
| Options for 'granular' Help - refresh my memory | 18 Oct 2007 20:31 GMT | 1 |
I have a basic help system set up for my program (Winforms, VB/Dot Net 2.0). Hit F1 and get help for each current screen. Now my boss has suddenly decided the help needs to be more 'granular', for lack of a better term. While I can and have set help for individual controls, ...
|
| How to populate a treeview from a dataset | 18 Oct 2007 20:09 GMT | 3 |
I am very new to C#. I need to create a Windows form that will read a SQL table and populate a treeview. I can connect to the DB, create the dataadapter, populate a data set. The problem is how to use the dataset to populate a treeview.
|
| MdiChild Icon in Parent Form | 17 Oct 2007 20:34 GMT | 2 |
I have a windows form which can have one or many mdichild forms open inside it. The problem I am having is the icon of the child form, when maximized in the mdiparent often reverts to the .NET default icon, and I want to open them maximized.
|
| deploy 2 applicaiton in one setup project | 17 Oct 2007 20:20 GMT | 2 |
I have applicaiton which is built from 2 different processes GUI process (winform project) and Service Process (window service project) I would like to create one deployment project for both of the projects, can anyone guid me to how this can be donw with .NET
|
| Error 1327 | 17 Oct 2007 20:17 GMT | 2 |
I am receiving this error while installing and removing software - how do I fix it
|
| ReportViewer Print issues | 17 Oct 2007 20:03 GMT | 2 |
I can render and open my report via the ReportViewer, but I have to print it twice for it to actually print. Is there a bug fix for this? More specifically, my Winforms.ReportViewer opens an rdlc. When I click the printer icon in the header, I get a print dialog. I have to click ...
|
| cookie problem | 17 Oct 2007 15:09 GMT | 1 |
I have a webshop that runs on .net c# and uses cookies to get the cart id my customer now changed web hotel and this new hotel provides a ssl security solution that makes my customers domain subdomain to their
|
| Insert a line break into textbox | 17 Oct 2007 13:12 GMT | 5 |
Is it possible to insert a line break into a textbox that the 'Multiline' has been set to True? I used "\n" in C# but it doesn't work. Thanks for any help, Tedmond
|
| Same application in dual monitor | 17 Oct 2007 08:35 GMT | 5 |
Actually the thing is i am devoloping a windows application, which will be displayed in multiple monitors. i have one single exe, which will be displayed in 2 monitors for example. In cloning mode (windows display setting) both the screen will display the same
|
| Object Variable Error; Followed by Memory Error | 17 Oct 2007 04:38 GMT | 1 |
I've been working on a Windows application for several weeks now. Starting late yesterday, I started getting the dreaded "Object variable or with block variable not set" error when I close one of the forms. By process of elimination I determined I found that if I commented out ...
|
| VB.Net Timeout Error | 15 Oct 2007 21:54 GMT | 2 |
I am having a problem with a VB.Net 2.0 Windows application. When the user selects an item in the lookup box, It uses ADO to retrieve data into a SQLDataReader, It then bind's this to a data grid. This works fine normally and the stored procude will take less
|
| Bug? Graphics.DrawImage throws "Out of Memory" Exception | 15 Oct 2007 10:19 GMT | 1 |
The Graphics.DrawImage method throws "Out of Memory" Exception if the Matrix.RotateAt(X, Point(100,100), MatrixOrder.Append) was used with a value of X = 180 + n * 360 where n is an integer. Code snippet:
|
| Regions and Windows XP | 15 Oct 2007 08:03 GMT | 2 |
I am creating a simple Windows Application with an empty Form. The constructor of the Form has following lines: InitializeComponent(); Region region = new Region();
|
| passing variables from one form to another | 15 Oct 2007 00:43 GMT | 2 |
I am a web developer, but recently I have to work on a windows application. In web page, we can pass the variables from one form to another by querystring or session varaible and go to another web page by Response.redirect("page2.aspx").
|