[DUG]: WebBrowser Component

1999-04-28 Thread Dave O'Brien
I know a few people have asked about this component before, how do I get the TAB key to move between fields in a form in the WebBrowser activex component. I've got everything else working fine, and I am trapping the TAB keypress in the main form, but what do I do with it? I have looked through

RE: [DUG]: Delphi/400

1999-04-28 Thread BJ Wilson
As I understand it, there are three ways to tackle AS400 apps with Delphi. 1. A Delphi app running on NT which connects to a DB2 database on an AS400 (without the ability to execute stored procedures). This is merely a BDE SQL*Links driver. 2. Same as above, but with the ability to execute

RE: [DUG]: WebBrowser Component

1999-04-28 Thread pjones
We just did this - about 10 minutes ago - and if you Import ActiveX Control from the component menu you will get a viaible control you can drop on your form. "Patrick Dunford" [EMAIL PROTECTED] on 29/04/99 16:18:28 Please respond to [EMAIL PROTECTED] To: Multiple recipients of list

RE: [DUG]: WebBrowser Component

1999-04-28 Thread Patrick Dunford
Yes but it does not work as he requested, tabbing in a HTML form. The normal IE browser does but the component working in an application does not. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of [EMAIL PROTECTED] Sent: Thursday, 29 April 1999 15:49

Re: [DUG]: Delphi/400

1999-04-28 Thread Nic Wise
3. Deplhi400, which compiles an application specifically to be executed on an AS/400. This is, as far as I know, a whole different flavour of Delphi. Not quite. Delphi/400 (and JBuilder/400 and CBuilder/400 I think) just allow you to call the SP's and other business logic on the AS400 - it

RE: [DUG]: Delphi/400

1999-04-28 Thread pjones
#1 - You don't need DB2. If you've got DB2 then you don't need D400 for data access to it - SQL Links will do that. You do get native access to files or you can use the IDCO400 driver and use the BDE - which is what I do cause the native stuff doesn't use TDataset's so you can't use dataaware

RE: [DUG]: Delphi/400

1999-04-28 Thread pjones
AS/400 Windows? What's a Window? Strictly text based. Very reliable but very old technology. You can install an NT or Novell server inside of the AS/400 and share resources such as disk printer etc, Even manage the servers from the 400. But the OS is a real mans OS, not some Microsoft

RE: [DUG]: Tray Icons

1999-04-28 Thread Nigel Tavendale
I have used the same component though we are not using 98 here. To make your window active you could try Throwing a WM_MOUSEDOWN Message at the form when the app restores. The icon tray compnent does have an on restore event associated withit (from memory - check this). Nigel. -Original