| Thread | Last Post | Replies |
|
| How to get sorted rows from datagrid? | 31 Jul 2006 23:32 GMT | 1 |
I'm binding a DataTable to a datagrid. I'd like the DataTable to use any kind of sort the datagrid is using so the two stay in synch. When some one clicks a data column header and sorts the grid, I want the underlying DataTable to be sorted. I've tried referencing DefaultView
|
| Accessing base-form functions from other forms | 31 Jul 2006 21:54 GMT | 1 |
I need to bring up a form off of my base win form and then, depending on which button the user clicks, perform a function that is in my base form. I can create an instance and show the new form fine, but I am unsure as how to perform function calls from the new form once
|
| Making A Constructor Only Available To Another Class that Doesn't Inherit From It | 31 Jul 2006 21:40 GMT | 5 |
My scenario involves two classes and a database. I have the classes "Broom" and "Closet". I want to use a static method from the "Closet" class to search the database for a matching "Broom". If it finds a matching "Broom", i want it to return a "Broom" object to the calling
|
| Abandon "Remoting" completely | 31 Jul 2006 21:04 GMT | 6 |
There is not going to be such a thing as "remoting" 2 years from now. I still see people working with it, and I wonder why they are not keeping up. Windows Communication Foundatoin, aka .Net 3.0, completely replaces
|
| Calling a hidden form | 31 Jul 2006 20:40 GMT | 6 |
I want to call a hidden form. My code goes something like in which the main calls form1. form1 has a button which creates & calls form2 and hides itself. Now I have a button in form2 which if pressed should dispose form2 and then unhide and focus form1.
|
| Field Name | 31 Jul 2006 20:31 GMT | 1 |
I want to retrieve a property value. I have a method which is being passed (among other things) the "property name" in text format of the property that I want to retrieve the value from. Is there some way to retrieve the property value using the field which has the text name of ...
|
| warn me on unused methods | 31 Jul 2006 19:59 GMT | 9 |
A nice feature of the csc.exe compiler is that it warns you if a variable is declared but never used. But unused methods are not flagged, even when the warning level is set to 4.
|
| Icon context menu | 31 Jul 2006 19:26 GMT | 2 |
I would like to know how to implement the following situation in c# or VB.net: I want to know how to display the application icon in the windows context menu (just like winrar does)
|
| Windows key - LWin | 31 Jul 2006 19:16 GMT | 1 |
I have the following windows form code to trap the 'key press' of the windows key (LWin). How do I stop the key event from being processed? I'm trying to block the use of the LWin key... using System;
|
| Deploying Crystal Reports | 31 Jul 2006 19:10 GMT | 4 |
VS.Net 2005 Hi all I have a page that uses the Crystal Reports Viewer control, the reports themselves are held in another (referenced) project.
|
| Displaying a row as active in datagridview | 31 Jul 2006 18:22 GMT | 2 |
I have a feature in my program to seach, the search is working good. When selected search item is found, I make the row as selected that is working fine. But When I have more than 25 rows, if the selected rows below 25, even the row is selected that doesn't become visible until
|
| excel report generation | 31 Jul 2006 17:30 GMT | 2 |
dis is kalai and i am new to dis group. i am generating excel report in c# .net using microsoft excel 10.0 object library. the micrsoft office version which i am using is 2002. I can very well generate the excel report.
|
| Add "spaces" to string | 31 Jul 2006 17:16 GMT | 6 |
New to C##.. All I want to do is add spaces to a string I'm displaying in label? Anybody know the easiest way to do this. char(32) doesn't seem to be working...
|
| How to uses C# monitor print | 31 Jul 2006 17:10 GMT | 1 |
How to uses C# monitor print
|
| .NET Poor threading architecture? | 31 Jul 2006 16:50 GMT | 15 |
When I see things in .NET 2.0 like obsoletion of suspend/resume because of the public reason MS gives of they think people are using them inappropriately.. use mutex, monitor and other synchronization objects instead and oh by the way you shouldn't be using them as they can cause ...
|