| Thread | Last Post | Replies |
|
| Test Driven Development is cool | 26 Apr 2005 10:36 GMT | 1 |
Test Driven Development is cool
|
| Has the EnableVisualStyles bug hit me? | 26 Apr 2005 08:12 GMT | 5 |
I have a .NET application running on Windows XP. I have quite a few forms, some modal and some modeless. Once in a while we get a wierd exception in the application and most of the time the code is transferred to the top level 'ThreadExceptionEventHandler'. It is difficult to get ...
|
| Ad Rotator Windows Form | 26 Apr 2005 08:10 GMT | 3 |
I have a windows form app that has a web browser control on it. The browser control will rotate ads in and out. These ads are to be loaded on the local machine? I know asp.net has a rotator control, but windows forms do not. Any suggestions on this?
|
| How to give initial focus? | 25 Apr 2005 23:25 GMT | 6 |
I've programmed a simple form having some panes and one button. There is a basic thing I can't find a solution for: 1) I gave the button a TabIndex of 0. The main pane has a TabIndex of 1.
|
| Add / Remove Program | 25 Apr 2005 17:38 GMT | 1 |
When we build a setup project. As long as we use the same setup.msi, it will give you the option of repair & remove. However, if I send them an update, it tells you have an instance of the
|
| How to access a Icons different sizes during runtime? | 25 Apr 2005 15:48 GMT | 1 |
I have a simple Form with a PictureBox that I'm assigning a ico-File during Design-Time. Depending on SizeMode and current size it displays the correct Icon of size 16x16, 24x24, etc.
|
| Calling Web Services from a Web Form throws CAS violation | 25 Apr 2005 14:29 GMT | 1 |
We created a C# Windows forms application and put the .EXE on our web server. We can download the executable from the web server to a desktop and it will display OK. When we click a button that causes the executable to call a web service on the same web server, we get the ...
|
| Active Window | 25 Apr 2005 10:12 GMT | 4 |
Anyone know how to read the text from the title bar of currently active window in Windows. I want to record what application I used at what time. I hope there is a quick c# answer. Thanks in advance
|
| Double buffer a form | 25 Apr 2005 10:10 GMT | 3 |
Is there some trick to double buffer a whole form without having to subclass every single control on it to make each control double buffered? I've noticed that when I resize my form the controls on it starts flicking so much it's not even funny.
|
| Need good design for startup project | 25 Apr 2005 08:47 GMT | 2 |
I'm building a winforms app using vb.net 1.1 and have 3 basic tiers on the client side. the UI, BLL and DAL. Currently everything is in one project and at some point I'll parse it out to a separate project for each Tier. Currently the startup object is Sub Main in the form ...
|
| CREATE A DATASET | 25 Apr 2005 08:36 GMT | 5 |
I would like to add three table to a DataSet: these three tables have tha same structure (columns name and type) but contains different records. When I try to add them, at the second table, I receive an error: "This table belongs already to another DataSet"
|
| Several bugs and workarounds | 25 Apr 2005 07:39 GMT | 3 |
In the course of writing my application, I have come across several issues that seem to be Microsoft bugs. Following is a summary and possible workarounds. Jeffrey Tan, if you are reading this, please verify. Also, I'd like to know how to request fixes for these issues.
|
| tooltips for combobox ? | 24 Apr 2005 18:05 GMT | 1 |
I have looked in every nook and cranny and I could not find any answer. How do I implement tooltips in a combobox (while the combobox is expanded) ? I want to have a tooltip for each item in the combobox. I know how to make it work for a listbox, but not for a combobox.
|
| DataSource Property and Thread Safety | 23 Apr 2005 17:21 GMT | 2 |
What happens if the object referenced by the DataSource property in a ListBox is updated by another thread? Is ListBox smart enough to check InvokeRequired before updating the GUI based on the change? IList doesn't publish any events, so it's not clear how the changes to the ...
|
| Binding on non-default property sets datarowstate modified | 23 Apr 2005 16:52 GMT | 1 |
I've got the following problem with databinding: If I bind a column of a dataset e.g. on the Text property of a Textbox, everything acts as expected, i.e. if you don't make any changes to the text in the textbox, the rowstate of the bound row stays unchanged.
|