Re: [ADVANCED-DOTNET] Communication with Windows Service

2004-03-02 Thread Henry Stapp
If you're considering using remoting, you may want to investigate genuine channels www.genuinechannels.com, which purportedly helps to work around some of the shortcomings of .NET remoting. HTH, Henry -Original Message- From: Ali Khawaja [mailto:[EMAIL PROTECTED] Sent: Monday, March 01,

Re: [ADVANCED-DOTNET] C# layers dhtml refresh

2003-02-04 Thread Henry Stapp
Hi Salil, I'd suggest using two DIVs in DHTML. You can cause them to layer on top of each other by setting the CSS 'positioning' attribute to 'absolute', then setting the top/left/height/width attributes to appropriate values. The z-index attribute will control which DIV is on top. The bottom DIV

Re: [ADVANCED-DOTNET] Math.Log odd rounding behavior

2002-08-28 Thread Henry Stapp
It's also called "Banker's Rounding". VB does this as well. -Original Message- From: Mark Hills [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 7:13 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Math.Log odd rounding behavior Just as an aside (and maybe not a very

Re: [ADVANCED-DOTNET] Appdomain and Process Question

2002-08-11 Thread Henry Stapp
Hi Jim, The windows process is created first. Within the process the CLR is started. Within the CLR the default App Domain is created. Then the CLR loads and executes the code for your application. So it's not really correct to say that the App Domain gets a process, it's kind of the other way a