| Thread | Last Post | Replies |
|
| Problem to generate MS Word file from RichTextBox with format | 16 Feb 2006 17:46 GMT | 1 |
We store the RichTextBox text with format in SQL DB. It looks like "<p><b>123</b>ABC</p>". When I use this string to generate a Word doc file, the doc only includes exactly the raw text with tags, no format. What’s wrong with my Word automation code? Thanks ahead.
|
| Practical Benefits of MVC or MVP Patterns | 16 Feb 2006 15:34 GMT | 5 |
Okay, I just finally figured out the Model View Presenter pattern as presented by Martin Fowler (http://www.martinfowler.com/eaaDev/ModelViewPresenter.html). I even got a small model of it working in a Windows Forms app I created from scratch.
|
| Load Event Firing Out OF Sequence? | 16 Feb 2006 15:25 GMT | 1 |
I have read the following article http://www.knowdotnet.com/articles/eventfiringorder.html But cannot find any other documents to back it up, so I'm wondering before I go and move all my code in the mybase.load event to the constructor I want to
|
| event on a cell of a grid | 16 Feb 2006 13:52 GMT | 2 |
I'm new in programming and i have a problem on my grid. I need a doubleclick event or a key event on a cell. I like to click on a cell and (press a key or doubleclick with the mouse) to open a browserfolder and set the choosed folder to the currentcell. Is there a way
|
| Equivalent to Delphi TFrame? | 16 Feb 2006 13:16 GMT | 12 |
Is there an equivalent in Windows Forms to the Delphi TFrame, or similar? Basically I need a way of grouping together some controls in a re-usable fashion so that I can embed them in various different forms as required.
|
| How to provide shortcut keys | 16 Feb 2006 10:04 GMT | 4 |
I want to provide shortcut keys for different tab pages on my form (such as Ctrl+H).the problem I'm facing is I don know on which control focus currently is. I also want to handle up & down arrow keys. Is there any other way than handling key press and key down on any control( such ...
|
| Freeze window during update? | 16 Feb 2006 02:13 GMT | 3 |
Is there any way to freeze a window during a complicated update? I have an application which has to do a fairly complex update to its main window, It doesn't take long, but it looks kind of sloppy to see parts of the screen update sequentially. I'd like to freeze the display ...
|
| How to convert a selectedIndex to SelectedValue for ComboBox | 15 Feb 2006 21:10 GMT | 4 |
I have a selected index for a combo, which I percieve to be the best value to use when programitically maniplating combos. What I want to be able to do is retrieve the Selected Value for a given Selected Index
|
| Asynchronous function | 15 Feb 2006 20:41 GMT | 3 |
I have just finished writing a app and although all my code runs and works fine there is a progress bar and other labels to show progress that just show as white while the code is running. I believe to get around this I need to call the function asynchronously,and
|
| Determining the Type for a datagrid column | 15 Feb 2006 18:55 GMT | 1 |
I have a datagrid with several columns. When trying to validate the column by looping through each column in the collection using a subscript I need to first determine whether the column is defined as a string or an integer. Is there a function that will allow me to do this? ...
|
| Textbox Listbox | 15 Feb 2006 15:21 GMT | 2 |
I have textbox and listbox on my form . Listbox has data. When user key in the data in textbox closest item in listbox should get selected. (like keypress in listbox) .How to achieve this Thanks in advance
|
| 'System.ArithmeticException' occurred in system.drawing.dll | 15 Feb 2006 14:48 GMT | 1 |
Hi all... I am trying to create a Windows Application in VS.NET. If I create a new app in either VB or C# and add any control, I get the following message
|
| Painting: rectangles or regions? | 15 Feb 2006 14:32 GMT | 2 |
I would lilke to know what is the best (most efficient) way to paint a control. I was told that if you call Invalidate(Rectangle) Windows will calculate the bounding rectangle of the current invalid rectangle and the supplied rectangle (the one passed in the call). This seems ...
|
| Scaling fonts when their parent objects' sizes change | 15 Feb 2006 09:29 GMT | 3 |
I have written a little app that runs on Pocket PC using the Version 2.0 of the compact Framework and suits this smaller screen size of 320 x 240. I have recompiled it to run on the full version of the .Net framework 2.0 and a touchscreen and it runs nicely.
|
| Testing localized app? | 15 Feb 2006 07:29 GMT | 3 |
maybe I'm just too stupid, but anyway... I've more or less successfully localized my application. Is there any way to actually test the translated version, other than by setting CurrentThread.CurrentUICulture = ... ? I'm asking because I'm using LOTS of
|