Re: [ADVANCED-DOTNET] C# Application hangs in Task Manager after shutdown

2005-03-11 Thread Pete Moss
Your suspicion is probably right. Typically, if your process does not exit, it is because some worker thread has not exited. Can you confirm this in a debugger? When you close the main Form, I presume that your debug session does not exit. If this is the case, see what happens when you select Debu

Re: [ADVANCED-DOTNET] Datagrid left bar

2005-03-11 Thread Ashes Mukherjee
datagrid.RowHeadersVisible = false; From: [EMAIL PROTECTED] on behalf of Bruno N Sent: Fri 3/11/2005 8:39 AM To: Unmoderated discussion of advanced .NET topics. Subject: Re: [ADVANCED-DOTNET] Datagrid left bar Hello, I meant the bar that indicates wich line is

Re: [ADVANCED-DOTNET] Remoting References

2005-03-11 Thread Mike Woodring
> For example, if I have a user object that contans an address > object, can I pass the user object in the remoting call but not > physically serialize and send the address object until the > reference to > it is used? Any field of your container/serializable class annotated with the [NonSerialize

[ADVANCED-DOTNET] Remoting References

2005-03-11 Thread Mitch Gordon
All, I have a class that composes several other classes. I want to send this class as a parameter in a remoting call. What I'd like to be able to do, though, is to have this outer class passed by value, but instead of passing the contained classes by value, I want to pass only the references to t

Re: [ADVANCED-DOTNET] Datagrid left bar

2005-03-11 Thread Lt Col Gecko Pointdexter
RowHeaderVisible = false (or something like that) On Fri, 11 Mar 2005 10:39:21 -0300, Bruno N <[EMAIL PROTECTED]> wrote: > Hello, > > I meant the bar that indicates wich line is selected (using an arrow) > > Thanksm, > Bruno N > - Original Message - > From: "Douglas Wilson" <[EMAIL PROT

Re: [ADVANCED-DOTNET] Iterate list of methods at a WebService EndPoint

2005-03-11 Thread Allan N.
hi have a look at the ServiceDescriptionReflector class, use the reflect method from there you have the ServiceDescription which brings you all the things you want best regards @llan === This list is hosted by DevelopMentorĀ® http://www.develop.com View archives a

Re: [ADVANCED-DOTNET] Add-in Dont Appear in Outlook

2005-03-11 Thread Eric Wild
The OnConnection is called when Outlook is opened, and passes a reference to the start up mode. This connectmode enum has 4 values - Start, None, On Demand, Load next Start only. You are getting the first MessageBox("Hi") when OL opens then NOT getting into the if statement because the connectMod

[ADVANCED-DOTNET] Iterate list of methods at a WebService EndPoint

2005-03-11 Thread Mario Fulan
Gang, This seems like something I should know how to do, but I am a bit rusty. My client wants me to help them with a small utility that will take a URI of a remote or local webservice and iterate the endpoint definitions in the WSDL so we can iterate the list of methods and then get their para

Re: [ADVANCED-DOTNET] Datagrid left bar

2005-03-11 Thread Bruno N
Hello, I meant the bar that indicates wich line is selected (using an arrow) Thanksm, Bruno N - Original Message - From: "Douglas Wilson" <[EMAIL PROTECTED]> To: Sent: Friday, March 11, 2005 10:30 AM Subject: Re: [ADVANCED-DOTNET] Datagrid left bar Hi Bruno If by "left bar" you mean the fi

Re: [ADVANCED-DOTNET] Datagrid left bar

2005-03-11 Thread Douglas Wilson
Hi Bruno If by "left bar" you mean the first column in the grid - then you can hide it by saying: datagridName.Columns[0].Visible = false; Regards Doug Wilson Applications Integration - IT Dept -Original Message- From: Unmoderated discussion of advanced .NET topics. [mailto:[EMAIL PR

[ADVANCED-DOTNET] Datagrid left bar

2005-03-11 Thread Bruno N
Hi, Is there a way to hide/remove the left bar of a datagrid? Thanks, Bruno N === This list is hosted by DevelopMentorĀ® http://www.develop.com View archives and manage your subscription(s) at http://discuss.develop.com

[ADVANCED-DOTNET] Add-in Dont Appear in Outlook

2005-03-11 Thread Adnan Siddiqi
Hello! I just tried a hello world add-in given example (http://support.microsoft.com/kbid=302901) i have onConnection() like tht public void OnConnection(object application, Extensibility.ext_ConnectMode connectMode, object addInInst, ref System.Array custom) { MessageBox.Sh