Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008


all groups > c# > january 2006 > threads for sunday january 15

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

the backspace key code
Posted by vially at 1/15/2006 11:33:03 PM
I'm creating a keyboard in c# and I really need the code for backspace key... ...more >>

Tool to generate properties from private fiels
Posted by Truong Hong Thi at 1/15/2006 8:34:53 PM
Anyone know a free vs.net 2003 plugin that is capable of generating properties from private fields for C#? Thanks ahead. ...more >>

Most Simple Aggregation
Posted by Dave Johnson at 1/15/2006 8:33:26 PM
greetings, can any one show sample example of aggregation in any .net code vb.net or C# i guess it shouldnt be that hard but i searched a lot without finding anything that explains the issue in code. thanks for your reply Sharing makes All the Difference -- Sent via .NET New...more >>

csharp aspnet application
Posted by Matt at 1/15/2006 8:30:30 PM
About the start a new aspnet application with csharp. Site will be used prox 100 users to enter new info/update/delete etc. Once built, i would like less maintaince as possible, MVC reboust, tier oriented and all those buzz words. Once a change done a page layer all pages prez would be changed ...more >>

Referencing assemblies
Posted by caelis at 1/15/2006 7:39:13 PM
Hi, I've got a problem with referencing assemblies. I reference an assembly in my programm; this assembly defines a method "SayHello" in the class "Hello", namespace "MyNamespace". In my program I define a method called "SayHello" in a class called "Hello", namespace "MyNamespace", too. Whe...more >>

method collapse
Posted by Pohihihi at 1/15/2006 6:14:00 PM
Where is the setting for collapsing the methods also when I open a file? = Is there any macro anyone has I can use if no setting is available for = that (which I looked every place and could not find)....more >>

DataGrid inside a TreeView
Posted by osmarjunior at 1/15/2006 5:16:12 PM
Hello, I wanna create a control like a TreeView, but with some nodes with a grid. Is this possible? I think about create a user control, but maybe there's an easier way, like using the TreeView component itself. ...more >>

Event with multiple subscribers. Cancel invocation of other handlers.
Posted by Peter M. at 1/15/2006 4:51:31 PM
Hi all, If an event has multiple subscribers, is it possible to cancel the invocation of event handlers from an event handler? Or to be more specific: I'm subscribing to the ColumnChanging event of a datatable, from two seperate classes. I wish to do some data validating. Due to the n...more >>



extern alias and dotted names
Posted by Jon Shemitz at 1/15/2006 4:47:43 PM
I'm playing with 2.0's extern alias declarations and the :: operator. If I have an extern alias My; and the My namespace contains a TypeName, I can refer to My::TypeName .... or to My.TypeName. I don't quite get this latter usage: I can *not* refer to global::My.TypeName nor can I ref...more >>

Graphics drawn in improper order...
Posted by matko at 1/15/2006 4:21:58 PM
(Due to absolutely no response in ms.pub.dotnet.general, I'm reposting here...) When I call the following function, the rectangle will overlap the graphics that is drawn _afterwards_. Why is that? How can I make sure my graphics is drawn in correct order? (Note: If I comment the FillRectang...more >>

Application.run
Posted by VeNoM00 at 1/15/2006 2:28:04 PM
I need to use the application.run method with a control insted of a form. The application context object doesn't seem to help me. What can i do? Any help will be apprecieted ...more >>

operator overloading true and false
Posted by xllx.relient.xllx NO[at]SPAM gmail.com at 1/15/2006 12:57:46 PM
Hi, there. I need two simple things explained to me: 1.) I want to know why the "true" overloaded operator method gets called with a test to a null-initialized instance: public class AnimalClass { public static bool operator true( AnimalClass lhs ) { Co...more >>

Synchrionization
Posted by csharpula csharp at 1/15/2006 12:38:28 PM
I have a critical section and 3 procceses,2 of them can be at the same time in the section. I use mutex and doing it the followong way below,but it's not working. How to make it work or maybe to do it in other way ?? Thank you very much! Here is the code: //Function before the critical se...more >>

Distribute C# DLL
Posted by Ajay_Askoolum at 1/15/2006 11:28:03 AM
Using C# Express 2005, I have successfully created a DLL to work with non ..NET clients. On the machine that I have created this DLL, it works fine and exposes its properties, methods and events and the events fire when expected (except with Excel 2003 where I cannot create an instance). I wa...more >>

foreach type unsafe
Posted by pgconnolly NO[at]SPAM blueyonder.co.uk at 1/15/2006 10:56:01 AM
/* foreach does implicit type conversion on elements of a params argument or Generic.List. * This is not good. * Examples of evil follow... */ using System; // I love it when C# is strict with me... using System.Collections.Generic; // ...prettier than C++ templates, not slutty like ...more >>

Auto-increment AssemblyFileVersion?
Posted by David Veeneman at 1/15/2006 9:21:44 AM
I am using the "1.0.*" pattern to auto-increment the AssemblyVersion attribute of my project's assembly. I'd like to have the assembly's AssemblyFileVersion attribute match this value, so that I can see the assembly version in the Windows XP Explorer. In other words, I'd like to synchronize ...more >>

Simple problem passing nulls with ADO.net 2.0
Posted by Simon Harvey at 1/15/2006 9:20:49 AM
Hi everyone, I'm having a really simple problem - I can't seem to insert a null value into the database. When I do it tells me that the procedure expects the parameter and that I'm not providing it. Well, I am, its just a null value! The code is: con.Open(); trans = con.BeginTransac...more >>

Looking for matrix inside a matrix
Posted by juli jul at 1/15/2006 7:47:44 AM
Hello, Could someone plz tell me how to implement(!) finding the number occurrences small matrix inside a bigger one. (They are static - with fixed size : for example 3*3 inside 6*6) Thank you very much! *** Sent via Developersdex http://www.developersdex.com ***...more >>

customize the context menu
Posted by goRide at 1/15/2006 1:52:56 AM
Hi, I'm looking of a way (preferred - a ready class or dll) to customize the context menu. many application has more controls inside the context menu (like textbox, sliders, checkbox, panel etc'). is there a way making this without writing my own context menu (meaning, popup form or something)...more >>

Prevent some Toolstrips from dropping on some ToolStripContainer
Posted by Joe at 1/15/2006 1:33:03 AM
I have a few ToolStripContains and ToolStrips in my app and only want certain ToolStrips to be able to be dropped on certain ToolStripContainers. Is there anyway to do this? I tried the DragEnter event of the ToolStripContainer but it didn't help. Thanks, Joe ...more >>


DevelopmentNow Blog