| Thread | Last Post | Replies |
|
| How to completely prevent captured mouse from getting grabbed by others? | 30 May 2007 01:42 GMT | 2 |
If one control has already captured the mouse, how to completely prevent the mouse from getting captured by any other controls (objects), even if a dialog popups, for example. thx.
|
| How can I use C++ codes with .NET Framework codes? | 30 May 2007 00:13 GMT | 3 |
I would be pleased if someone gives me a general idea; how I am going to do this. I am using visual C++ .NET 2003. I made a simple program using conventional C++ code. This program accepts data from the user, does some calculations and outputs the result back to
|
| combobox with command items | 29 May 2007 20:19 GMT | 1 |
I want to have a combobox with some commands in it and a data source. Basically the list should look like command1 command2
|
| Shown method for User control | 29 May 2007 20:10 GMT | 2 |
Is there any event like Shown for User Control? I am instantiating User control once and adding and removing to and from parent form panel dynamically. I wanted a event which would fire every time the User control is shown (when added to parent from
|
| Anchoring issue. | 29 May 2007 19:21 GMT | 1 |
Lets say I have a control at the bottom of my form and I have it set to anchor Top, Bottom, Left, Right That does exactly what I want it to do.... Ok here's my issue. I have recently taken the contents from that form
|
| PNG as Form background | 29 May 2007 17:16 GMT | 1 |
Do you know how to enable the use of a PNG as a form background and hence enable per pixel alpha transparency ? I have found some code on the code project but it either does not work with Visual Studio 2005 (the form editor stops working because I need to
|
| How to tell if file is text based | 29 May 2007 14:39 GMT | 1 |
I want my application to load any file that is text based (php, txt, rtf, asp, etc) - - just not any binary file In the Open file dialog, that's easy, but I want users to be able to load the files by drag/drop - - so therefore, I will need to check for the types
|
| Dynamic Control Example for 2.0? | 29 May 2007 10:31 GMT | 3 |
Could someone provide a quick example for .NET 2.0 WinForms of how to dynamically add a control "btnDynamic" to a form when button "btnStandard" is clicked. I don't want to hardcode "btnDynamic" to the form and make it simply visible, I don't want it to exist at runtime
|
| How to get mouse button state at any time? | 29 May 2007 04:48 GMT | 1 |
I mean, to know if mouse button is pressed, especially, at any time. thx.
|
| Installing VS 2003 after VS 2005 | 29 May 2007 04:06 GMT | 3 |
Hey guys, Is it possible to install VS 2003 on a machine that already has VS 2005 installed? I am not sure what the ramifications would be. Would VS 2003 overwrite newer components that VS 2005 installed or mess up file
|
| TreeView control | 29 May 2007 01:46 GMT | 1 |
I need bind a Treeview control in my windows form with xml file and also,,, display icons for each tree node.... how can I acheive it?
|
| weird problem with ComboBox - DataSource contains data, but the Items collection stays empty | 28 May 2007 08:50 GMT | 1 |
I created a custom control which simply is a data-bound ComboBox. It has a custom property that causes an ArrayList of KeyValuePair elements to be passed to the DataSource property. It also sets the DisplayMember and ValueMember properties.
|
| How can I copy to the clipboard the contents of cells in a DataGri | 28 May 2007 03:15 GMT | 7 |
I have a DataGridView from Windows.Forms and need to be able to copy the contents of the current cell to the clipboard, yet have not found the way to do so. Any pointers will be very appreciated.
|
| Confusing Error - Please Help!!! | 27 May 2007 16:19 GMT | 1 |
I have a line like resources.ApplyResources(this.label1, "label1"); in Form1.Designer.cs. But because of this line my form load event is not firing. When I comment this line, everything works fine.
|
| Running ReportViewer report in another thread using BackgroundWorker | 27 May 2007 16:05 GMT | 1 |
I'm trying to give user something to look at while a ReportViewer based report runs. It takes a while because app connects to data over the internet. Problem is report locks-ups when launched in DoWork event. Backgoundworker seem to work with non-visual stuff. Is the problem ...
|