Re: [DOTNET] how do I copy a project?

2002-06-09 Thread Ed Stegman
You can mulit-select and drag-drop all those files in one fell swoop from explorer to your project. Keep Smilin' Ed Stegman -Original Message- From: The DOTNET list will be retired 7/1/02 [mailto:[EMAIL PROTECTED]]On Behalf Of Karen Healey Sent: Sunday, June 09, 2002 5:50 PM To: [

Re: [DOTNET] Fax over TCP/IP in .NET

2002-06-03 Thread Ed Stegman
Nope. The Win2K COM implementation doesn't support broadcast[1]. You'll have to PInvoke Win32 API for that. I haven't dug into the XP/.Net Server COM implementation to see if it does or not, although I have read that it now supports delivery notifications through email.

Re: [DOTNET] Class Member Initialization.

2002-06-03 Thread Ed Stegman
all the instance vars are grouped (although my property declarations are). This makes it even more desirable to use the ctor(s) for initializing everything. Keep Smilin' Ed Stegman -Original Message- From:Rolls, Robert Do people still use the constructor to define default values

Re: [DOTNET] Best Practice for Passing Arguments

2002-06-01 Thread Ed Stegman
k. For example, //return first + last name return (contactInfo.FirstName + " " + contactInfo.LastName ); } Keep Smilin' Ed Stegman -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of Stephen Patten Sent: Friday, May 31,

Re: [DOTNET] Fax over TCP/IP in .NET

2002-05-30 Thread Ed Stegman
arty fax server packages include add-ins that integrate with existing desktop apps (like Outlook or Lotus Notes). Then again, so do some of the service providers. or... (4) For masochists with way too much time on their hands, roll your own using TAPI. You'll still need hardware of cours

Re: [DOTNET] Aspects as diagnostic probes, WAS: RE: Re: [DOTNET] AOP to police thread affinity?

2002-05-29 Thread Ed Stegman
cs as the number of characters, not the number of bytes. (Or hasn't misunderstood, but is unaware .Net strings are Unicode by default.) Keep Smilin' Ed Stegman -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of John Lam Sent: Wednesday, May 29, 200

Re: [DOTNET] .NET Command Window Shell

2002-05-23 Thread Ed Stegman
\\Common7\\Tools\\vsvars32.bat\"" Keep Smilin' Ed Stegman You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] Multiple threads and external utility

2002-05-21 Thread Ed Stegman
simplest way to prevent that would be to use a named mutex. ms-help://MS.VSCC/MS.MSDNVS/cpguide/html/cpconmutex.htm Keep Smilin' Ed Stegman -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of Erick Thompson Sent: Monday, May 20, 2002 7:30 PM To: [

Re: [DOTNET] How to marshal WChar[256] in COM interop?

2002-05-21 Thread Ed Stegman
You may also want to type the dwMask, dwModeFlags, and crBkgnd members of your struct as uint, as the native Win32 struct has them as DWORD and COLORREF, which are unsigned types. Here's a handy little table: ms-help://MS.VSCC/MS.MSDNVS/win32/type_4ylv.htm Keep Smilin'

Re: [DOTNET] What is the correct way to test for Is Nothing in C#?

2002-05-04 Thread Ed Stegman
d with the IsNull() method, or the IsEmpty() method. Just another reason C# is so much easier to learn than VB. ;-) Keep Smilin' Ed Stegman -Original Message- From: dotnet discussion [mailto:[EMAIL PROTECTED]]On Behalf Of David Ferguson Sent: Saturday, May 04, 2002 12:06 PM To: [EMAIL PRO

Re: [DOTNET] Using BitVector32

2002-04-14 Thread Ed Stegman
. In a larger, more typical document the savings would be even greater because the example I used here included 4 camel cased variable names. Had I used the first paragraph from your post below as an example, the mappedWords[] array would only contain 1 element. :-)) Keep Smilin' Ed Stegman -