Re: [DUG]: help with search string

2001-10-01 Thread Jeremy North
Is the actual line wrapped in the editor? You can't do that, if that is the case. Start and end all strings on the same line. JED >> //error on this line// SearchText := inputbox( 'Name Search', 'Enter >>the name your looking >>for'); *

Re: [DUG]: help with search string

2001-10-01 Thread Mark Howard
<[EMAIL PROTECTED]> Sent: Tuesday, October 02, 2001 1:53 PM Subject: Re: [DUG]: help with search string On Tue, 2 Oct 2001 13:41:24 +1200, you wrote:>Can you post the original problem again?>>Thanks>>Stacey>ok Stacey below os the code i am getting the error unterminat

Re: [DUG]: help with search string

2001-10-01 Thread Craig Goodall
Hi, I've lost track of the original posts and the original error, so I apologise if I'm off track. InputString needs 3 params doesn't it? eg. (from help) InputBox := InputBox('Input Box', 'Prompt', 'Default string'); Craig. > ok Stacey below os the code i am getting the error unterminated st

Re: [DUG]: help with search string

2001-10-01 Thread Nello Sestini
that's new information -ns - Original Message - From: <[EMAIL PROTECTED]> To: "Multiple recipients of list delphi" <[EMAIL PROTECTED]> Sent: Tuesday, October 02, 2001 8:53 AM Subject: Re: [DUG]: help with search string On Tue, 2 Oct 2001 13:41:24 +1200, you wr

Re: [DUG]: help with search string

2001-10-01 Thread abaddon
On Tue, 2 Oct 2001 13:41:24 +1200, you wrote: >Can you post the original problem again? > >Thanks > >Stacey > ok Stacey below os the code i am getting the error unterminated string in the line which i will mark for you the error is at compile time and is starting to really piss me off. procedure

Re: [DUG]: help with search string

2001-10-01 Thread Nello Sestini
e - From: <[EMAIL PROTECTED]> To: "Multiple recipients of list delphi" <[EMAIL PROTECTED]> Sent: Tuesday, October 02, 2001 8:35 AM Subject: Re: [DUG]: help with search string On Mon, 1 Oct 2001 20:19:31 +1200, you wrote: >I think I've spotted it! > >The syntax

Re: [DUG]: help with search string

2001-10-01 Thread David Brennan
Brendon, More information is needed if we're going to solve this one. For example, is this error you are getting a run time error or does it occur at compile time? What is the exact text of the error? In the meantime I have one suggestion. Try deleting the whole statement which is causing the pr

RE: [DUG]: help with search string

2001-10-01 Thread Stacey Verner
Can you post the original problem again? Thanks Stacey > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 2 October 2001 1:36 p.m. > To: Multiple recipients of list delphi > Subject: Re: [DUG]: help with search string > >

Re: [DUG]: help with search string

2001-10-01 Thread abaddon
On Mon, 1 Oct 2001 20:19:31 +1200, you wrote: >I think I've spotted it! > >The syntax highlighting should have shown you what was going on >The problem is that you are not terminating the strings correctly (as if you >didn't already know that). > >inputbox( 'Name Search', // string is termin

Re: [DUG]: help with search string

2001-10-01 Thread Trevor Jones
I think I've spotted it! The syntax highlighting should have shown you what was going on The problem is that you are not terminating the strings correctly (as if you didn't already know that). inputbox( 'Name Search', // string is terminated correctly 'Enter the name you''re looking for', /

Re: [DUG]: help with search string

2001-09-30 Thread Steve Peacocke
-- Original Message -- From: [EMAIL PROTECTED] >nope i am not breaking the source lines but i still have the error >undetermined string. > >... > Brendon Toogood Brendon - your code looks OK from here. I cannot find a compiler message that states "unde

Re: [DUG]: help with search string

2001-09-30 Thread abaddon
On Sun, 30 Sep 2001 15:50:58 +0700, you wrote: >Are you breaking a string across source lines? > >You are in my copy of your post - but that might just >be my email client (or the least) breaking it. > >This is a syntax error. > >Try it like this and see if you still have the problem: > >SearchT

Re: [DUG]: help with search string

2001-09-30 Thread Nello Sestini
Are you breaking a string across source lines? You are in my copy of your post - but that might just be my email client (or the least) breaking it. This is a syntax error. Try it like this and see if you still have the problem: SearchText := inputbox( 'Name Search', 'Enter the nam