[DUG]: Disable screensaver, determine O/S

2002-11-27 Thread Alistair George
Hi I can disable screensaver in Win98 but not in NT/WinXP. PSe advise call to determine O/S and as a result the call to disable SS in NT/WinXP. Thanks vm Alistair+ --- New Zealand Delphi Users group - Delphi List - [EMAIL

[DUG]: TFiler class

2002-11-27 Thread Todd Martin
Has anyone noticed that TFiler depends on its decendants TReader and TWriter through DefineProperty() Is this a bad design decision on Borland's part, or is there a good reason for this? Todd. --- New Zealand Delphi U

RE: [DUG]: Automating Internet Explorer from Delphi

2002-11-27 Thread Dave . Jollie
Thanks Dennis - lots to chew on now. Cheers Dave -Original Message- From: Dennis Chuah [mailto:[EMAIL PROTECTED]] Sent: Thursday, 28 November 2002 09:32 To: Multiple recipients of list delphi Subject: Re: [DUG]: Automating Internet Explorer from Delphi Dave, Hi. Firstly, I suggest th

Re: [DUG]: Automating Internet Explorer from Delphi

2002-11-27 Thread Dennis Chuah
Dave, Hi. Firstly, I suggest that you go the this web site: http://www.euromind.com/iedelphi/index.htm and read about the updates shdocvw and mshtml_tlb files. The ones shipped by Borland are incorrect and out of date. Secondly, use the CoInternetExplorer.Create method in shdocvw to create the

RE: [DUG]: Automating Internet Explorer from Delphi

2002-11-27 Thread Dave . Jollie
Hi Dennis I found the uses clause I was looking for - it seems to be MSHTML. So just using this uses clause, with no Internet components on my form, I wrote the following code. I'm a bit lost. Can you help, especially with the error message: procedure TMainForm.BitBtn1Click(Sender: TObject); var

RE: [DUG]: Automating Internet Explorer from Delphi

2002-11-27 Thread Dave . Jollie
Hi Dennis This looks good, however what components are IHTMLdocument2 and IHTMLElement referring to? Or else what uses clauses do I need? (I had a look under my Internet tab, but couldn't find components with these names). Thanks for your help. Dave -Original Message- From: Dennis Chuah