Re: [ADVANCED-DOTNET] Planning to keep the list alive

2008-09-16 Thread Booth, Bill
What do you mean by that, use the hardware, software, both? I may be wrong but I think that list is hosted by L-Soft as a service to the community. -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Joel Paula Sent: Tuesday, September 16,

Re: [ADVANCED-DOTNET] Struggling with the entity framework.....

2008-08-29 Thread Booth, Bill
Have you looked at this? Entity Framework Supported Mapping Scenarios White Paper http://tinyurl.com/6ctzrz -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Mark Nicholls Sent: Friday, August 29, 2008 04:58 To:

Re: [ADVANCED-DOTNET] Accent Insensitive CultureInfo (or at least DataTable.Select)

2008-06-04 Thread Booth, Bill
Have you looked into creating a custom culture using the CultureAndRegionInfoBuilder class? -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Joel Paula Sent: Tuesday, June 03, 2008 16:33 To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM

Re: [ADVANCED-DOTNET] Robust file copy

2007-12-18 Thread Booth, Bill
Great choice. There is even a GUI for it. http://www.microsoft.com/technet/technetmag/issues/2006/11/UtilitySpotli ght/ -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Geoff Taylor Sent: Tuesday, December 18, 2007 12:46 To:

[ADVANCED-DOTNET] Switch the app.config file used by app.

2007-08-02 Thread Booth, Bill
I think the only way is via another AppDomain. http://msdn2.microsoft.com/en-us/library/system.appdomain.setupinformati on.aspx -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Russell Sent: Thursday, August 02, 2007 3:08 PM To:

Re: [ADVANCED-DOTNET] WWF

2007-07-25 Thread Booth, Bill
Just played with it but here is a good sample. ASP.NET and Windows Workflows Foundation By Scott Allen. http://www.odetocode.com/Articles/465.aspx -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Paul Cowan Sent: Wednesday, July 25, 2007

Re: [ADVANCED-DOTNET] User scripting for a .NET app

2007-06-09 Thread Booth, Bill
How about PowerShell? -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Terry Griffin Sent: Friday, June 08, 2007 8:10 AM To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: [ADVANCED-DOTNET] User scripting for a .NET app We need to add the

Re: [ADVANCED-DOTNET] Word of caution about the installation of VS2005 SP1

2006-12-16 Thread Booth, Bill
Thanks for the info. I just finished a nightmare install of SQL Server 2005 SP1 and subsequent hot fix. This seems like even more fun. -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Sébastien Lorion Sent: Saturday, December 16, 2006

Re: [ADVANCED-DOTNET] Sockets,Remoting or webservices, which is better for this scenario?

2006-09-18 Thread Booth, Bill
+1 And HTTP/HTTPS transport if needed. -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Eddie Lascu Sent: Monday, September 18, 2006 12:34 To: ADVANCED-DOTNET@DISCUSS.DEVELOP.COM Subject: Re: [ADVANCED-DOTNET] Sockets,Remoting or

[ADVANCED-DOTNET] System.Management Namespace

2006-09-09 Thread Booth, Bill
You might find these tools helpful. WMI Code Creator v1.0 Brief Description The WMI Code Creator tool allows you to generate VBScript, C#, and VB .NET code that uses WMI to complete a management task such as querying for management data, executing a method from a WMI class, or receiving event

Re: [ADVANCED-DOTNET] ReceiveByCorrelationId + MSMQ

2006-08-05 Thread Booth, Bill
These two articles might help. 1. Look for this one on C# Corner MSMQ, your reliable asynchronous message processing By klaus_salchner July 20, 2004 http://www.c-sharpcorner.com/ 2. This one is VB .NET but I think it does exactly what you want. MSMQ for .NET Developers

Re: [ADVANCED-DOTNET] MSMQ Routing - setting up sites and routing links

2006-07-27 Thread Booth, Bill
This guy might be able to direct you to some. 10 years in Microsoft's MSMQ development team. Yoel Arnon http://msmq.spaces.msn.com/ -Original Message- From: Discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Eddie Lascu Sent: Thursday, July 27, 2006 11:23 To:

Re: [ADVANCED-DOTNET] Detect .Net Installation

2004-12-28 Thread Booth, Bill
I think you can get the info. from this article. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetdep/ht ml/redistdeploy1_1.asp -Original Message- From: Jonathan Fong [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 28, 2004 5:22 PM To:

Re: [ADVANCED-DOTNET] Database Notification

2004-09-30 Thread Booth, Bill
You could use triggers and MSMQ. Queue MSMQ Messages from SQL Server http://www.15seconds.com/issue/040902.htm Update MSMQ from SQL http://www.developerfusion.com/show/2151/ -Original Message- From: Peter Vertes [mailto:[EMAIL PROTECTED] Sent: Thursday, September 30, 2004 13:39 To:

Re: [ADVANCED-DOTNET] Trying to find the full name of a person

2004-08-25 Thread Booth, Bill
Using system management namespace Dim query As New SelectQuery(SELECT * FROM Win32_UserAccount WHERE Name=' usrNetID ' And Domain=' usrDomain ') Dim search As New ManagementObjectSearcher(query) Dim userInfo As ManagementObject For Each userInfo In search.Get() tempOutput =

Re: [ADVANCED-DOTNET] ASPX Pages and Server Compatibility

2004-08-15 Thread Booth, Bill
Why should you have inline code, just curious? Asp .NET web sites use IIS 5 and above so you need Windows 2000, Windows XP Professional, or Windows 2003. The .NET framework will work on Windows .NT (most of it) but not ASP .NET. As for what the clients need to view your application, it depends

Re: [ADVANCED-DOTNET] Server-Independent Connection String

2004-08-05 Thread Booth, Bill
This works oSQLConn.ConnectionString = Data Source=(local); _ Initial Catalog=Pubs; _ Integrated Security=SSPI oSQLConn.Open() -Original Message- From: Jason Bunting [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 14:34

Re: [ADVANCED-DOTNET] Help needed on window scheduler

2004-07-26 Thread Booth, Bill
Here is a Windows Scheduler wrapper class in VB .NET. I am sure you can convert it. http://www.mvps.org/emorcillo/dotnet/shell/index.shtml -Original Message- From: Srihari Angaluri [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 8:57 To: [EMAIL PROTECTED] Subject: Re:

Re: [ADVANCED-DOTNET] Vs.Net Windows Installer: Set install creat ed directory permissions

2004-03-04 Thread Booth, Bill
Here is a link to a Blog article (1), Setting NTFS Permissions with C#, which in turn points to some GotDotNet code (2) to set permissions. 1. http://weblogs.asp.net/cumpsd/archive/2004/02/08/69403.aspx 2. http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=e6098

Re: [ADVANCED-DOTNET] Stor proc return values and DataReader

2004-02-17 Thread Booth, Bill
You might want to look at the InfoMessage Event of the connection object. That can be handy for passing messages from procs. -Original Message- From: Alex Ivanoff [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 17, 2004 11:16 To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Stor proc

Re: [ADVANCED-DOTNET] problem using SmtpMail Object

2004-02-09 Thread Booth, Bill
How about MailMessage.Fields for authentication as illustrated in this article? http://www.codeproject.com/dotnet/SystemWeb_Mail_SMTP_AUTH.asp?target=SMTP and here http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cdosys/html /_cdosys_schema_configuration.asp -Original

Re: [ADVANCED-DOTNET] Paged result sets using ADO.NET and SQL Ser ver

2004-01-22 Thread Booth, Bill
I think most use server side paging with stored procedures. If you have a subscription to SQL Server Magazine this article will help. Server-Side Paging with SQL Server http://www.sqlmag.com/Articles/Index.cfm?ArticleID=40505; Here is a stored procedure from Paul Wilson. Sorting and Paging

Re: [ADVANCED-DOTNET] pgp problem from ASP

2004-01-15 Thread Booth, Bill
You can try this one. SharpPrivacy is an OpenPGP implementation in C#. It can be used to encrypt and sign data, created OpenPGP compatible keys, and a lot more. This article explains how to use the library in your own .NET application or webpage to encrypt, sign, decrypt or verify OpenPGP

Re: [ADVANCED-DOTNET] Rules Engine in .Net

2004-01-14 Thread Booth, Bill
This isn't much but it might get you started. A Design Pattern for a Rule Engine Use XML data, events, and XSLT for a simple rule engine that helps you separate business rules from application code http://www.fawcette.com/javapro/2003_08/online/xml_yboglaev_08_01_03/ -Original Message-

Re: [ADVANCED-DOTNET] Looking for free PGP Encryption Tool

2003-12-18 Thread Booth, Bill
These might help. A popular open source utility is GnuPG. It's command line driven and is compatible with PGP. http://www.gnupg.org/ Gnu Privacy Guard (GPG/PGP) for .NET, a C# wrapper class. http://www.codeproject.com/csharp/gnupgdotnet.asp?target=gnupg And this MIGHT help, SharpPrivacy -

Re: [ADVANCED-DOTNET] Extracting SqlServer error codes using SqlC ommands

2003-01-30 Thread Booth, Bill
Have you tried the InfoMessage event? -Original Message- From: Gary Leighton [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 9:25 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Extracting SqlServer error codes using SqlC ommands The error I'm currently looking at

Re: [ADVANCED-DOTNET] Extracting SqlServer error codes using SqlC ommands

2003-01-30 Thread Booth, Bill
error codes using SqlC ommands It doesn't look good. The InfoMessage event only fires for warnings and information messages. The error I'm testing throws an exception but no InfoMessage. -Original Message- From: Booth, Bill [mailto:[EMAIL PROTECTED]] Sent: 30 January 2003 16:19

Re: [ADVANCED-DOTNET] Forms authentication redirects to non-exist ant URL

2003-01-30 Thread Booth, Bill
What does FormsAuthentication.GetRedirectUrl(sUser, True).ToString return? We had a situation similar to this and had to re-direct on our own. Something like this; If FormsAuthentication.GetRedirectUrl(sUser, True).ToString.EndsWith(/unsecure/default.aspx) Then

Re: [ADVANCED-DOTNET] VS.NET / XP Hoe

2003-01-29 Thread Booth, Bill
.NET Framework Support on Windows Operating Systems Summary: Provides information about which versions of Microsoft Windows that the Microsoft .NET Framework can be installed on. Software requirements of the .NET Framework and exceptions to the general platform support are listed. Explains how to

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

2002-08-28 Thread Booth, Bill
You might be interested in this MSKB article for a little background. http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q196652; -Original Message- From: Christoph Nahr [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 12:09 PM To: [EMAIL PROTECTED] Subject: Re:

Re: [ADVANCED-DOTNET] Smart clients and offline usage

2002-07-02 Thread Booth, Bill
One of the early versions of the FMExpense demo used Isolated Storage in conjunction with a (slightly modified) local copy of the FMExpense web site installed to the MyWeb virtual client site. This enabled the app to run locally when disconnected, and sync up with the real site once the user