Re: [DOTNET] VS.NET Extensibility, AppDomains & Assembly Unloading

2002-06-22 Thread Keith Hill
On Mon, 17 Jun 2002 13:34:36 -0700, Andres Aguiar <[EMAIL PROTECTED]> wrote: >The code runs perfect when we try it from a WinForm C# project, but it does >not work when we call it from inside the Visual Studio .NET AddIn (running >in the Visual Studio.NET default AppDomain). We get a casting exce

Re: [DOTNET] can't launch .net framework configuration

2002-06-22 Thread Randell, Brian
Hey Bob, Replies in-line. Cheers, Brian Randell DevelopMentor -Original Message- From: Bob Edwards [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 22, 2002 3:24 PM To: [EMAIL PROTECTED] Subject: Re: [DOTNET] can't launch .net framework configuration Unbelievable. That worked great,

Re: [DOTNET] can't launch .net framework configuration

2002-06-22 Thread Bob Edwards
Unbelievable. That worked great, thanks. A few quick questions 1) What did you mean in your reply by +1? 2) Is this a bug in XP? A configuration problem? Why didn't it work from the built in menu? 3) Where should I save to? Right now it is saved to my programs menu off administrative to

Re: [DOTNET] can't launch .net framework configuration

2002-06-22 Thread Randell, Brian
+1 under Windows XP. The original link won't work, but running MMC /a and then adding +the .NET config tools works fine. Cheers, Brian Randell DevelopMentor -Original Message- From: Stan LaRue [mailto:[EMAIL PROTECTED]] Sent: Sat 6/22/2002 2:42 PM

Re: [DOTNET] can't launch .net framework configuration

2002-06-22 Thread Stan LaRue
I had a very similar problem. I fixed it by running MMC directly and then adding mscorcfg.msc myself. Saving, of course, afterwards. -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMAIL PROTECTED]] On Behalf Of Dean Cleaver Sent: Saturday, June 22, 2002 4:06 PM

Re: [DOTNET] can't launch .net framework configuration

2002-06-22 Thread Dean Cleaver
Bob, It's working fine for me here on XP... Not that it helps, but you know it's not just a platform issue. Dino -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMAIL PROTECTED]] On Behalf Of Bob Edwards Sent: Sunday, 23 June 2002 00:54 To: [EMAIL PROTECTED] Sub

[DOTNET] Class Design Question

2002-06-22 Thread Jade Martin
I am wondering the best way to code a class. This class may be used in remoting. Should I use property procedures for the setup parameters or should I use function overloading? The first example would be faster and less code but the second example would be easier to read in the client. Are propert

Re: [DOTNET] XPath Query using set operators

2002-06-22 Thread Steven Livingstone
Hi Dinesh, Your XPath expression is invalid - try the following. books/book/name | books/book/author | books/book/publication Cheers, Steven -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMAIL PROTECTED]] On Behalf Of Dinesh Upare Sent: Saturday, June 22, 200

Re: [DOTNET] A bug in Abort()?

2002-06-22 Thread Luca Marchesi
This is not the problem. Before to raise the ThreadAbortException , the caller of Abort receivesa *ThreadStateException* from the runtime . This exception is not mentionaed by the SDK: > " If Abort is called on a thread that has been suspended, the thread is > resumed and then aborted. " So I

Re: [DOTNET] XPath Query using set operators

2002-06-22 Thread Sullivan, Dan
The XPath expression is not valid. If you want all the book elements in the file /books/book will do it. if you want all of the name, author, and publication elements that have book as a parent then /books/book/name | /books/book/author | /book/books/publication will do

[DOTNET] XPath Query using set operators

2002-06-22 Thread Dinesh Upare
i have a XML file. I have to read the nodes as if records in the database. e.g. consider the file books.xml below Java XYZ wrox C++ Basics ABC Microsoft . . . i have to read the book node as a record so that i can idenfify its contents correctly. I tried with XPath Query

[DOTNET] can't launch .net framework configuration

2002-06-22 Thread Bob Edwards
I'm running XP and VS.NET. When I click start/Microsoft.NET Framework Configuration I get an hour glass, and then nothing. Is this a known problme? Is there a fix? Thank you. Bob You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at

Re: [DOTNET] A bug in Abort()?

2002-06-22 Thread Pierre Greborio
Form the abort method documentation: Raises a ThreadAbortException in the thread on which it is invoked, to begin the process of terminating the thread. Calling this method usually terminates the thread. You have to manage the exception. Pierre --- Pi

[DOTNET] A bug in Abort()?

2002-06-22 Thread Luca Marchesi
Hy everybody. The SDK says " If Abort is called on a thread that has been suspended, the thread is resumed and then aborted. " But if I suspend and abort a thread I obtain a ThreadSTateExcpetion "An unhandled exception of type 'System.Threading.ThreadStateException' occurred in mscorlib.dll