[DUG]: Emailing Invoices

2001-10-23 Thread Peter Harrison
I have developed a Delphi Component - which can transmit secure invoices (and other documents). It is a Delphi Component which can take a file, encrypt it, sign it, and send it via SMTP to the recipient. The component also handles Public Key distribution automatically without user intervention.

[DUG]: PDF Components

2001-10-23 Thread vss
Hi all. For those of you hwo have downloaded that PDF component and have looked at it, what did you think ? Cheers,Jeremy Coulter --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]

[DUG]: Form Maximizing

2001-10-23 Thread vss
Hi all. Just a weired problem I cant figure out. I havea form. I am saving its window state to teh registry when it closes, so that when it reopens the form will me maximized if that was its last state. This is fin, BUT when the form opens it IS maximized, BUT its like 2-3 millimeters from

[DUG]: Multiple Socket Servers

2001-10-23 Thread Stacey Verner
I have had a look at the code for the Socket Server in D6, and I can change the Registry path that it uses so it can have a different port list to the D4 socket server, but I have twomore question. Firstly. The code (as follows) contains a comment which says "Do not localize" (which I have

RE: [DUG]: Form Maximizing

2001-10-23 Thread Paul Grimstrup
Just a weired problem I cant figure out. I havea form. I am saving its window state to teh registry when it closes, so that when it reopens the form will me maximized if that was its last state. This is fin, BUT when the form opens it IS maximized, BUT its like 2-3 millimeters from the top

RE: [DUG]: PDF Components

2001-10-23 Thread Patrick Dunford
I think it looks quite good, though of course it is not as fully featured as Quickreport. All the example programs compiled and worked in D3 Std. I was surprised to have it installed without problems in D5 Std which gives it a reporting capability. -Original Message- From: [EMAIL

RE: [DUG]: Form Maximizing

2001-10-23 Thread Stacey Verner
I have seen this, and the way I handled it was by doing something like the following. if LMaximize then begin pMainPanel.Aligned := alNone; Self.WindowState := wsMaximized; Application.ProcessMessages; // Probably not necessary pMainPanel.Aligned := alClient; end;

RE: [DUG]: Form Maximizing

2001-10-23 Thread vss
Thanks, I will take a look. Jeremy Coulter -Original Message- From: Paul Grimstrup [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Date: Wed, 24 Oct 2001 11:16:54 +1300 Subject: RE: [DUG]: Form Maximizing Just a weired problem I cant figure out. I havea

[DUG]: equiv in Delphi

2001-10-23 Thread Neven MacEwan
Hi guys Can anyone xlate this particularly ugly VBS code (main the getobject call) dim domain as variant Set domain = GetObject(WinNT://AIRNZ-NZ) domain.Filter = Array(User) For Each user in domain wscript.echo user.LastLogin Next Regards Neven N.K. MacEwan B.E. EE Ph 649 574 0027 Fax

RE: [DUG]: equiv in Delphi

2001-10-23 Thread Stacey Verner
The delphi equivalent of GetObject is GetOleObject. Stacey -Original Message- From: Neven MacEwan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 24 October 2001 12:12 p.m. To: Multiple recipients of list delphi Subject: [DUG]: equiv in Delphi Hi guys Can anyone xlate this

RE: [DUG]: equiv in Delphi

2001-10-23 Thread Patrick Dunford
It's an OLE object reference Delphi equiv = GetOleObject MSDN Home MSDN Library Visual Basic Reference Visual Basic for Applications Reference GetObject Function See AlsoExampleSpecifics Returns a reference to an object provided by an ActiveX component. Syntax