[DUG]: Serial Comms on Thin Client

1999-03-09 Thread Tony Blomfield
Hi. Does anybody have any experiance with doin Serial comms on a NCD Thinstar 200 with a NT Terminal Server running Thinstar Plus Version 1.0??? I mean writing a Delphi Comms program for it. If so, I would appreciate hearing about it. Cheers Tony Blomfield 50 Waitoki Rd RD1 Kaukapakapa

RE: Re: [DUG]: Dumb question of the day

1999-03-09 Thread Patrick Dunford
-BEGIN PGP SIGNED MESSAGE- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, 9 March 1999 14:49 To: Multiple recipients of list delphi Subject: RE: Re: [DUG]: Dumb question of the day I think the answer to

Re: [DUG]: Archive search for this list.

1999-03-09 Thread Mark Derricutt
Heya Phil - http://www.mail-archive.com/delphi%40delphi.org.nz/ and http://www.mail-archive.com/offtopic%40delphi.org.nz/ Phil Scadden wrote: I have lost my reference to how to search the archive of this list that some kind person has done. Can someone send it on please??

Re: [DUG]: Archive search for this list.

1999-03-09 Thread Phil Scadden
Thanks Mark. Bookmarks made AND mail archived! -- Phil Scadden, Institute of Geological and Nuclear Sciences PO Box 30368, Lower Hutt, New Zealand Ph +64 4 5704821, fax +64 4 5704603

[DUG]: Printing from NT via ASP

1999-03-09 Thread Dave O'Brien
Hi there... I have written a dll to print simple reports (using tprinter) which resides on an NT server and is supposed to be called from ASP. The dll works fine when called from outside the web server, but when called from ASP returns 8000 "There is no default printer currently selected".

Re: [DUG]: Printing from NT via ASP

1999-03-09 Thread pjones
Oh, the joys of NT desktop sessions and security. You will need to have the dll 'run' as a specific user to install a printer driver for the user account that is running the dll. If it's IIS 4 then your NTS setup should let you specifiy the identity. Dave O'Brien [EMAIL PROTECTED] on

RE: [DUG]: Printing from NT via ASP

1999-03-09 Thread Dave O'Brien
Great... Thanks. Why didn't I think of that... Install the dll as a component in a new MTS package, making the package log on as a specific user. It never used to be this complicated! Thanks again. Dave. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent:

RE: [DUG]: Printing from NT via ASP

1999-03-09 Thread Carl Reynolds
I have written a dll to print simple reports (using tprinter) which resides on an NT server and is supposed to be called from ASP. The dll works fine when called from outside the web server, but when called from ASP returns 8000 "There is no default printer currently selected". Has anyone

RE: Re: [DUG]: Dumb question of the day

1999-03-09 Thread Max Renshaw-Fox
I guess I should take up the challenge... (OK I'm feeling combative today) Does that imply that those of us who can produce complex applications, that involve significant data validation and implement complex business rules, using "original Borland components" are "childishly deficient" as well?

[DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Mark Derricutt
Hiya - has anyone here written any applications that use "plugins" and "extensions" to extend the use of their application? Currently I'm using dynamically loaded .dll's to provide a plugin system for my application, only, delphi bloats .dll's quite a bit making each one around 100-150k, which

RE: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Jeremy Coulter
Ok, I hate to say this, BUT VB 6 does do this quite nice..it has wizards atc. for doing it..PLEASE DONT FLAME ME FOR SAYING SO.AGH ! Jeremy Coulter -Original Message- From: Mark Derricutt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 10, 1999 3:10 PM To: Multiple

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Nic Wise
Not too good - the demo shows that it works, and it works WELL. Rather impressive, really. I think its www.dreamcompany.com or something similar. Nic. [EMAIL PROTECTED] wrote: There are a coupe of components around for ActiveX scripting - checkout DSP. You can get the MS stuff from

RE: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Dennis Chuah
Mark, Currently I'm using dynamically loaded .dll's to provide a plugin system for my application, only, delphi bloats .dll's quite a bit making each one around 100-150k, which is compleatly overkill when the function being called is only 5-10 lines long (the functions often create a

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread aaron
Currently I'm using dynamically loaded .dll's to provide a plugin system for my application, only, delphi bloats .dll's quite a bit making each one around 100-150k, which is compleatly overkill when the function being called is only 5-10 lines long (the functions often create a TQuery and connect

RE: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Grant Black
It seems a pretty common requirement to have framework/shell applications that can work with various modules - ie an accounting packages that support various optional bits as well as support user customization of reports etc. Its quite suprising then that there seems to be a lack of good tools

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Peter Hyde
Peter Jones wrote: There is also the Dream Controls - available from dream.com (?) or DSP. This seems to good to be true as it gives you a full Delphi interpreter and Delphi like environment. Robert Loof and I just had a review of the above published in Developers Review (March issue, I

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Mark Derricutt
Nic Wise wrote: [DLLs] Definatly overkill :) Yup, and a memory hog/bloat, and make it not very customizable for quick fixes/additions :( http://www.microsoft.com/scripting I think - seach on msdn.microsoft.com or install IE4 I've just been looking through the sites on this and also came

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Mark Derricutt
[EMAIL PROTECTED] wrote: There is also the Dream Controls - available from dream.com (?) or DSP. This seems to good to be true as it gives you a full Delphi interpreter and Delphi like environment. Mmmm, now I like the sound of this. We're also using Report Builder for our reports, and

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Nic Wise
I've just been looking through the sites on this and also came accross wsh.glazier.co.nz (I remember seeing glazier.co.nz mentioned on here, Ian I think???). Unfortunately I didn't really find anything that gave me pointers in how to link them to my app, I think I delphi orientated

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Mark Derricutt
Dennis Chuah wrote: Have you considered using packages? If you build your app and dlls with packages, you will find a big reduction in size. You can also use packages instead of dll. (Well, a package is really just a dll with info about If possible, I want to get away from compiled

Re: [DUG]: Plugins/MS Scripting Host

1999-03-09 Thread Mark Derricutt
Grant Black wrote: imagine in a few years when you get a few thousand lines of perl tying One would hope your 'scripts' are not reaching the thousand lines of code area, if so then its a very complex piece of script, or theres something wrong with the main application :) If your DLL's work

[DUG]: Delphi and Crystal on NT4

1999-03-09 Thread Belding
Hello team Anyone using Delphi with Crystal Reports on NT4? I'm using Crystal reports with a D1 app on Win95, 98, NTWS5(beta 2), Novell (ver ?) without problems. The data tables are Paradox BDE 2.52. With NT 4 (sp?) the reports won't run and I get an error "cannot open database" from the