RE: [DUG]: MSHTML

2000-07-09 Thread Dennis Chuah
Its not too bad. It does a pretty good rendition of HTML (very close to IE). Don't expect it to be a fancy editor like Dreamweaver. It has the annoying bug where it converts you tags to HTML escape sequences, eg. becomes >font<. However, for basic HTML files, it is mostly OK. There was an a

RE: [DUG]: Editor Functionality

2000-07-09 Thread Carl Reynolds
Ok, my tab-related settings are Auto indent mode ON Use tab character ON Smart tab OFF Optimal fill ON Backspace unindents ON Cursor through tabs OFF and Ctrl/Shift/i inserts a tab for me (D5). Cheers, Carl -Original Message- From: Mark Derricutt [mailto:[EMAIL PROTECTED]] Sent: Monday

[DUG]: MSHTML

2000-07-09 Thread Matt Powell
Has anybody had any experience with using the MSHTML editor in Delphi? - Matt --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED] Website: http://www.delphi.org.nz

RE: [DUG]: Editor Functionality

2000-07-09 Thread Mark Derricutt
On Mon, 10 Jul 2000, Carl Reynolds wrote: > They indent with tabs if you have optimal fill on. The auto indent seems to (if the line was tabbed), but the ctrl-shift-u/i still seems to use spaces. -- Inspired by the taste of horror, proud to be insane forever Let out the killer in me! (c) Disma

RE: [DUG]: Editor Functionality

2000-07-09 Thread Carl Reynolds
>Ctrl-Shift-U and Ctrl-Shift-I > >However I've noticed they only indent with spaces even if the editor is >set to use real tabs (so does the auto-indent which is annoying). They indent with tabs if you have optimal fill on. Cheers, Carl ---

Re: [DUG]: Editor Functionality

2000-07-09 Thread Mark Derricutt
On Mon, 10 Jul 2000, Tony Sinclair wrote: > In Visual Studio you can group select and tab and shift tab to change > the indent, is that replicated in Delphi? Ctrl-Shift-U and Ctrl-Shift-I However I've noticed they only indent with spaces even if the editor is set to use real tabs (so does the a

Re: [DUG]: Editor Functionality

2000-07-09 Thread Eamon Reyn
If you select text and hold down then hit and or hold down and hit and I think this will achieve what you want. - Original Message - From: Tony Sinclair <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Sunday, July 09, 2000 03:33 PM Subject: [DUG]

RE: [DUG]: Editor Functionality

2000-07-09 Thread Stacey Verner
Use Ctrl+Shift+I and Ctrl+Shift+U for Indent and Unindent. Stacey > -Original Message- > From: Tony Sinclair [mailto:[EMAIL PROTECTED]] > Sent: Monday, 10 July 2000 3:45 p.m. > To: Multiple recipients of list delphi > Subject: [DUG]: Editor Functionality > > > Hi all, > > In Visual St

RE: [DUG]: Editor Functionality

2000-07-09 Thread Neil Anderson
yes but use ctrl + shift U and I -Original Message- From: Tony Sinclair [mailto:[EMAIL PROTECTED]] Sent: Monday, 10 July 2000 15:45 To: Multiple recipients of list delphi Subject: [DUG]: Editor Functionality Hi all, In Visual Studio you can group select and tab and shift tab to change

[DUG]: Editor Functionality

2000-07-09 Thread Tony Sinclair
Hi all, In Visual Studio you can group select and tab and shift tab to change the indent, is that replicated in Delphi? Tony Sinclair Holliday Group Limited Christchurch New Zealand --- New Zealand Delphi Users group -

Re[2]: [DUG]: Pos

2000-07-09 Thread Paul_McKenzie
What about the TMask Object ??? Regards Paul Reply Separator Subject: Re: [DUG]: Pos Author: [EMAIL PROTECTED] Date: 10/07/2000 13:31 > can you use wildcards in the pos function? Eg Pos('<*>', strHTML) No... And on the same note

Re: [DUG]: Pos - RegEx

2000-07-09 Thread Neven MacEwan
Aaron I used the TRegExpr component off DSP - seems to work OK Regards Neven N.K. MacEwan B.E. E&E [EMAIL PROTECTED] - Original Message - From: Aaron Scott-Boddendijk <[EMAIL PROTECTED]> To: Multiple recipients of list delphi <[EMAIL PROTECTED]> Sent: Monday, 10 July 2000 13:31 Subject

Re: [DUG]: Pos

2000-07-09 Thread Mark Derricutt
On Mon, 10 Jul 2000, Aaron Scott-Boddendijk wrote: > No... And on the same note... Does anyone have any regexp > matching/searching functionality around... There's a regexp module now in GExperts written by someone down in ChCh, can't remeber who it was now and I'm not sure if its available for

Re: [DUG]: Pos

2000-07-09 Thread Aaron Scott-Boddendijk
> can you use wildcards in the pos function? Eg Pos('<*>', strHTML) No... And on the same note... Does anyone have any regexp matching/searching functionality around... -- Aaron Scott-Boddendijk Jump Productions (07) 838-3371 Voice (07) 838-3372 Fax ---

[DUG]: Pos

2000-07-09 Thread Tony Sinclair
Hi all, can you use wildcards in the pos function? Eg Pos('<*>', strHTML) Tony Sinclair Holliday Group Limited Christchurch New Zealand --- New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]

RE: [DUG]: Enter as Tab

2000-07-09 Thread Phil Dewar
An alternative to dropping a proper component or subclassing: Using the Enter key to Tab In Delphi the enter key does not normally move to the next field on a form like Tab does. To make this happen, change the Forms KeyPreview property to True, then place code like below into the Forms OnKeyPre