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 >>
Don't see what you're looking for? Search DevelopmentNow.com.
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 >>
|