[DUG]: comparison white paper VB6 vrs Delphi 6.

2001-07-02 Thread Nic Wise
Hi We are looking for someone who has an excellent knowledge of both VB6 and Delphi 6 to provide us with a technical whitepaper comparing the products in all areas. If you are interested, please send contact details and a brief bio about your experience with both products to Richard Vowles at [E

[DUG]: Acrobat Reader

2001-07-02 Thread Eion McIntosh (CHCH)
Hi I've been looking and been unable to find exactly how to call the acrobat reader plugin for internet explorer, or netscape, to show a already created PDF document from within the web browser. Can anyone help please? Thanks Eion McIntosh PPCS Ltd --

[DUG]: Printing

2001-07-02 Thread Robert Martin
I have a program where I want to draw a number of Rectangles on a TCanvas, I then want to use CopyRect to copy page sized blocks of the source canvas to the Printers canvas.  This will, I hope, give me a simple way of outputting multiple pages from my layout application.   The problem is I ge

RE: [DUG]: Internal Error

2001-07-02 Thread Moises Lopez
As the Delphi Help states.. 88. Internal error: Complete list of compiler error messages You should never get this error message - it means there is a programming error in the compiler. If you do, please call Inprise Developer Support and let us know the ErrorCode (e.g. "C1196") that appears in th

RE: [DUG]: Internal Error

2001-07-02 Thread James Sugrue
To answer my own question, it is break or continue outside loop. Which for some reason was being reported. -Original Message- From: James Sugrue [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 3 July 2001 13:47 To: Multiple recipients of list delphi Subject: [DUG]: Internal Error Anyone know

[DUG]: Internal Error

2001-07-02 Thread James Sugrue
Anyone know what "interal error T2261" is ? --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz To UnSub, send email to: [EMAIL PROTECTED] with body of

RE: [DUG]: taking control over windows

2001-07-02 Thread Dennis Chuah
You can always make you application the shell - have a look at the ZAK (now part of NT's resource kit, I think). There is an application that you can use to configure the session so that only your application runs - and if the user shuts it down, it gets restarted. Explorer / task manager does

RE: [DUG]: taking control over windows

2001-07-02 Thread Graham Mayes
oops fogot to sign Regards Graham -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Moises Lopez Sent: Tuesday, 3 July 2001 06:00 a.m. To: Multiple recipients of list delphi Subject: [DUG]: taking control over windows Hi there, i have quite a few question

RE: [DUG]: taking control over windows

2001-07-02 Thread Graham Mayes
Yes, it's quite easy to make a window which covers the desktop. Then, these little snippets may be of some use. Unfortunately (damn nuiscance), MS has made some of these ineffective for NT (Win 2000) as it has more inbuilt security features than you could shake a stick at. Dummy:=0; SystemPa

[DUG]: taking control over windows

2001-07-02 Thread Moises Lopez
Hi there, i have quite a few questions. i have a program that has to run everytime that windows starts, since it has to take control every time someone logs in. Since someone maliciously could delete the RunOnce registry key i create it every once in a while in code, is that the way to go? anyh