[ADVANCED-DOTNET] Problems launching the IE WebBrowser control on Win2k3

2006-10-09 Thread Paul Gale
Hi, I have been trying to launch IE through the WebBrowser control by adding a reference to shdocvw.dll and then creating an instance of the resulting InternetExplorer class (below). All works fine on WinXP Pro. It fails on Win2k3. Although the code below has a catch block to print the stacktrac

Re: [ADVANCED-DOTNET] asp.net 2.0 book

2005-11-23 Thread Paul Gale
doh...missed the shipping charges part...doh On 23/11/05, Paul Gale <[EMAIL PROTECTED]> wrote: > > Unfortunately the prices that AddAll show are not always accurate. For > example AddAll shows that Bookpool.com (who are nearly always the cheapest > for technical books anyway) i

Re: [ADVANCED-DOTNET] asp.net 2.0 book

2005-11-23 Thread Paul Gale
Unfortunately the prices that AddAll show are not always accurate. For example AddAll shows that Bookpool.com (who are nearly always the cheapest for technical books anyway) is selling the book for $36.50, whereas bookpool's site shows it for $31.50. Kinda useless unless it is accurate. Paul On 2

Re: [ADVANCED-DOTNET] Automated Testing

2005-10-18 Thread Paul Gale
specific web pages. > > If you have a good way to do that without making ParsePage a public method > I would be very interesting in hearing about it. I've used mock objects > to seperate communications out, but have found that sometimes they are a > lot of unnecessary work. > >

Re: [ADVANCED-DOTNET] Automated Testing

2005-10-17 Thread Paul Gale
I think that something is being missed on this thread. An earlier poster pointed out that private methods should not be tested. I agree with that. After all, any private method should be present in support of a public method of some kind. Therefore test the public interface of your class only an

Re: [ADVANCED-DOTNET] Circular Reference

2005-09-08 Thread Paul Gale
You cannot reference an .exe from VS.NET...but you can if compiling from the command line using csc.exe Paul --- Franklin Gray <[EMAIL PROTECTED]> wrote: > Nevermindseems you can't reference an exe projectfor some reason I > was thinking you could. Nevermind. I'll put it in a dll if w

Re: [ADVANCED-DOTNET] Best practices: Passing data between Web service providers and consumers

2004-08-10 Thread Paul Gale
Hi Bill, I recommend you read Aaron's Skonnard's article 'The XML Files' from April 2003 in which he talks about web service interop with Java based clients. In essence he says that Datasets should be strongly typed to allow for interop. As a generic Dataset's layout is not known until runtime

[ADVANCED-DOTNET] Authenticating a user by their certificate

2004-02-24 Thread Paul Gale
Hi, [I posted this to the DOTNET-CLR list a few days ago and received no replies] Does anyone know how to authenticate a user using just a certificate in a Winform based application? I know that ASP.NET suports certificate based authentication but I believe that IIS is performing the mapping bet

Re: [ADVANCED-DOTNET] Unanswered - Mail Merging within an applica tion - best approach?

2003-10-08 Thread Paul Gale
Hi Julian, You might also want to evaluate NVelocity (a .NET port of the original Java tool). It's free. It comes with it's own template language called VTL. I've used it before and it is very good. Personally I'd prefer to do the sort of templating substitution you're talking about using NVelo

Re: [ADVANCED-DOTNET] Configuration File per Assembly

2003-03-24 Thread Paul Gale
You'll have to roll you're own code to perform per-assembly configuration. Alternatively, take a look at Mike Woodring's collection of .NET samples one of which has code for just what you're looking for. http://www.bearcanyon.com/dotnet/ Paul --- Chris Stefano <[EMAIL PROTECTED]> wrote: > Hi >