| Thread | Last Post | Replies |
|
| Base keyword - HELP | 16 Jul 2005 07:19 GMT | 17 |
Am having a base class that implements an interface (air code) : class BaseClass : SomeInterface { void SomeInterface.ImplMethod()
|
| Unassigned Local Variable Error | 16 Jul 2005 07:16 GMT | 3 |
In the following (pseudo)code, why is it that C# returns an "unassigned local variable" error for nVar? It seems I have to declare the variable outside foo() for the error to dissapear. void foo()
|
| how to capture the event that someone press a 'del' key when highlight a row in a datagrid? | 16 Jul 2005 07:04 GMT | 1 |
I would like to have a datagrid that can be edited but not delete... and I have no idea how to capture the del key press event. Please help, thank!
|
| How to do Screen Capture | 16 Jul 2005 03:36 GMT | 2 |
Hello NG, How can I take a snapshot of full screen (of a area of screen as needed) using any dotNet language? Thank you,
|
| Control doesn't repaint when using object with custom type converter | 15 Jul 2005 23:33 GMT | 4 |
I've made a custom groupbox control. Inside, as one of it's members is CSimpleGradient object. CSimpleGradient is a wrapper class for gradient usage. Basically it looks like that: [TypeConverter(typeof(CSimpleGradientConverter))]
|
| Getting value of last item in listview? | 15 Jul 2005 23:22 GMT | 2 |
Hey guys, I have a listview with 7 collumns and I need to retrieve value from the first line and its 7th collumn. Is there an easy way to retrieve it?
|
| Day name of date object not working | 15 Jul 2005 22:56 GMT | 4 |
In my csharp code behind file, I'm trying to perform a redirect if the date a user queries is a Wednesday: string rqs = Request.QueryString["txtboarddate"]; string rqsday;
|
| Using OLE | 15 Jul 2005 21:40 GMT | 2 |
I'm writing a simple editor using the RichTextBox. I'd like to add OLE like WordPad has. That is allow packages to be embedded or linked and thereby changed. I'm reading the doc but would like to have some sample code to study.
|
| two interfaces having methods with same names | 15 Jul 2005 21:10 GMT | 4 |
I have two existing interfaces having methods with same names. Now I have to implement both intrfaces in one class. Is there any way I could implement methods with same names in both interfaces without getting errors from the compiler?
|
| How to use EventArgs | 15 Jul 2005 21:03 GMT | 3 |
when i double-click on a button on a form as i am designing the form, the IDE creates a method corresponding to a event assignment as follows: this eventhandler: this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
| Listview, reselect old selection C# | 15 Jul 2005 20:45 GMT | 1 |
I've got a listview on a form in report style. It's populated with 40 item. I want to prevent the used clicking on some items, and if the user clicks on one of these items I want the selection to revert back to the old selection, hideselection property if false, listview is
|
| how do i create a generic method for opening forms? | 15 Jul 2005 20:10 GMT | 2 |
example: // form classes: // ItemEditor // CategoryEditor
|
| No border style 2 | 15 Jul 2005 19:43 GMT | 2 |
sorry about the first message; i accidentally clicked post. anyway, i want to make a modern looking app like quicktime that has not got that bar at the top with the title in it and the controlbox. i have put a no border style property on the form and have replace the control box ...
|
| Custom Attributes | 15 Jul 2005 18:27 GMT | 4 |
Could someone please give me a practical example of how you HAVE used custom attributes ... not just how you COULD use them. I understand the syntax, but am not able to visualize a good use for them. Thanks in advance.
|
| Get all members of a SecurityGroup in AD? | 15 Jul 2005 18:16 GMT | 1 |
I've been informed that it is very troublesome to retrive all members in a domain (let's say "ABC"), that is member of a specific SecurityGroup (global or local)? I've been told that one has to loop through every single user in the domain and then ask "Is he member of the ...
|