Groups | Blog | Home


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# > december 2005 > threads for sunday december 25

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

System.Diagnostics.Process - create new process group?
Posted by Bo Byriel Nielsen at 12/25/2005 11:41:17 PM
I need to create a process with a new process group. I think that this can be done by using a DllImport of the kernel32 CreateProcess and setting the CREATE_NEW_PROCESS_GROUP creation flag. I'd rather avoid using DllImports. Is it possible to create a new process group via the .net class li...more >>


Web service invoking for a server / client app
Posted by Jack at 12/25/2005 10:11:37 PM
I want to design a server which performs some business related user authentiation, and would like to let the clients invoke it through webservice, so my first thinking is using IIS as the web server to host webservice, but then how does it interact with my server. Another invoking from IIS t...more >>

The type or namespace name 'MyClass' could not be found (are you missing a using directive or an assembly reference?)
Posted by carqs123 at 12/25/2005 2:09:06 PM
What is the procedure for using a class defined in the same solution but in another project? The language I am using is c-sharp. I have a solution with two projects in it. A c-sharp program in project1 uses MyClass, which is defined in project2. In the solution properties I set project1 t...more >>

overloading abstract type
Posted by Pohihihi at 12/25/2005 1:53:12 PM
How can I overload abstract type method in child class? e.g. public abstract void BaseMethod() { // do something } // in child class public override void BaseMethod(int i) { // do something } --=20 ----------------------------------------------------------------------...more >>

OO DB question
Posted by Chris at 12/25/2005 9:12:08 AM
I had a OO model worked out which involved forms populating new instances of a class and being stored in an ArrayList. I'm now moving this over to a DB backend rather than a file - I've been wondering if I even need to create objects now? Could I just work directly with the DB e.g. form data w...more >>

Multiple Acceptbuttons ?
Posted by Fred at 12/25/2005 4:44:52 AM
Hi all, On my Windows Form, I'm having a SplitContainer control. Each panel (top & bottom) has a ToolStrip that contains a TextBox and a button. When a user enters text in the TextBox and presses return, the action that belongs to the corresponding button should be fired. Therefore, I could u...more >>

Typed List
Posted by MuZZy at 12/25/2005 3:11:05 AM
Hi, How do i implement a typed IList class? Visual Studio automatically generates template code for a IList, but for example indexer is of type 'object', but i need it of type 'MyType'. class MyList: IList { <...snap...> public object this[int index] { get {return null;} set ...more >>

ContextMenu for ToolBar
Posted by MuZZy at 12/25/2005 1:55:59 AM
Hi, The problem i have is to show a ContextMenu on a toolbar depending on which ToolBarButton is currently under cursor. Is there any way to find out which ToolBarButton mouse is pointing? ToolBar.GetChildAtPos() doesn't work as ToolBarButton is not a child control fo a toolbar... I am i...more >>



Static method vs instance method
Posted by MuZZy at 12/25/2005 1:13:51 AM
Hi, I'm retouching some utility classes used everywhere across our app, and there are certain methods used everywhere and pretty frequently. I'm changing them from instance methods to static ones, so to use them you don't need to create an instance of that utility class. So my question i...more >>

Generate Client from Web Service
Posted by Delmar at 12/25/2005 12:54:02 AM
I need to build Web Application that will generate a client to execute some operations. Each client has running silent application. Maybe somebody can advice me what can I do ? Thank you. ...more >>


DevelopmentNow Blog