| Thread | Last Post | Replies |
|
| Multiple Interface!!!!!!! | 30 Jun 2006 14:59 GMT | 4 |
Hai All, I am having some query in the following sample code... On creating object for class1 and calling display function, it shows a message box with "Hai". My question is
|
| lock statement questions | 30 Jun 2006 14:58 GMT | 17 |
I got great info on related question previously. This link <http://www.yoda.arachsys.com/csharp/threads/volatility.shtml> from Brian Gideon was especially informative. 1) the lock statement does *not* make the processor finish all code in the
|
| Error 1053: The service did not respond to the start or control request in a timely fashion | 30 Jun 2006 14:46 GMT | 1 |
I have got a Windows Service application from a customer that I try to start. The customer can start it with no problem, but when I try to start it I get: "Could not start the GateWay service on Local Computer. Error 1053: The service did not respond to the start or
|
| How to get SP params? | 30 Jun 2006 14:46 GMT | 2 |
How do I get the names of parameters for a specific stored procedure. I just need a listing of the names and nothing else. Thanks, Brett
|
| System.Net.WebClient with Proxy and Credentials | 30 Jun 2006 13:12 GMT | 2 |
I try getting response from web site through proxy in my domain: WebClient wc = new WebClient(); WebProxy wProxy = new WebProxy(); CredentialCache cc = new CredentialCache();
|
| PC login name | 30 Jun 2006 13:01 GMT | 3 |
How do I find out the user login name ? eg. I got a XP has user profile name 'Alan' and log in, is there any function or API to find out that?
|
| Inheriting forms | 30 Jun 2006 12:58 GMT | 2 |
I have a Delphi background and just started with c#. I'm trying to inherited a form that has a MenuStrip on it with some basic items in it. I want to extend the menu in the intherid form but I'm not able to access the properties as they are disabled. Can someone tell me what it ...
|
| Implementing an interface with qualified templates | 30 Jun 2006 12:55 GMT | 6 |
I want to do something like this: public class Animal; public interface IZoo {
|
| Stored Procedure return records | 30 Jun 2006 12:44 GMT | 2 |
I have a SP: CREATE PROCEDURE dbo.users_name as select name
|
| SqlDataReader | 30 Jun 2006 12:41 GMT | 3 |
How do I know how many records in SqlReader ? What I want to do is I would like to assign the field values in SQLReader to an array. eg.
|
| Custom code in parent form from component | 30 Jun 2006 11:15 GMT | 4 |
I want to add a function in parent form of a custom component from component. How this is possible.
|
| Try/Catch problem | 30 Jun 2006 10:04 GMT | 4 |
I have the following code: try { Salarii.Editors.AngajatiNewFrm _angNewFrm = new
|
| Equality and generics | 30 Jun 2006 08:44 GMT | 7 |
I'm implementing a sort of my own generic collection. It has a method that returns an int representing the index for a particular index. If I try to compile the code below: class MyCollection<T> : ICollection<T> {
|
| Default value of an enum | 30 Jun 2006 06:54 GMT | 4 |
Suppose having define an enum like this: public enum SomeEnum { [DefaultValue("1")]
|
| Layering in Windows Form | 30 Jun 2006 06:41 GMT | 3 |
I want to develop a windows based application using .Net 2.0 The application will have the heavy UI and it will have the lots of drawing to do on the form. So can any one give me the direction how can i handle the different
|