[DUG]: Remove

2000-10-17 Thread Terry Johnson

 
---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED]
with body of "unsubscribe delphi"



[DUG]: Remove

2000-09-17 Thread Colin Dillicar


- Original Message -
From: <[EMAIL PROTECTED]>
To: Multiple recipients of list delphi <[EMAIL PROTECTED]>
Sent: Monday, September 18, 2000 4:47 AM
Subject: [DUG]: 1Free Flash - American Pie - Election Results - 9/17/00


> You are receiving this email because you have registered with one of
1FreeOne.com's partner sites.  To be removed from this list, simply hit
return and type Remove.  On with the special offers.
>
> * * *
> Free Music Offer
>
> American Pie Soundtrack - Audio CD - FREE
> Music from the major motion picture.  Songs from Blink 182, Third Eye
Blind, and Sugar Ray.
>
> Audio CD
> Quantities Limited
> Shipping & Handling is $4.95
>
> Also Available:
> Betty Crocker Cookbook CD-ROM
> Creative Writer II
> The Blair Witch Project - VHS
> Logical Journey of the Zoombinis
>
> * * *
>
> All NEW Daily Coupons From 1FreeOne
>
> 20% Off Your Purchase of $20 or more at Petfooddirect.com
>
> Sorry about all the Pet Coupons but Billy and Bailey (my wife's cats) get
their dinner from Petfooddirect.com.
>
> http://www.1FreeOne.com/coupons.html
>
> * * *
>
> 1FreeOne
> Presidential Election Results Are In.  Check out the results and cancel
the debates!
> http://www.1FreeOne.com/polls.html
>
> * * *
>
> 1Free Humor
>
> A man was about to tee off on the golf course when he felt a tap on his
shoulder & a man handed him a card that read "I am a deaf mute. May I play
through, please?" The 1st man angrily gave the card back, and communicated
that "no, he may NOT play through, and that his handicap did not give him
such a right." The first man whacked the ball onto the green & left to
finish the hole.
>
> Just as he was about to put the ball into the hole he was hit in the head
with a golf ball, laying him out cold.
>
> The punchline to this knee slapper is at: http://www.1FreeOne.com
>
> * * *
>
> Free Software Offer
>
> Logical Journey of the Zoombinis - Mac/Win - Ages 8 and up - FREE
> Adventurers ages 9 and up build advanced math and science thinking skills
as they guide bands of Zoombinis on their escape to a new homeland.
>
> Windows/Mac
> Quantities Limited
> Shipping & Handling is $4.95
>
> ___
> If you wish to be removed from 1FreeOne's future mailings, please reply
> with the subject "Remove" and this software will automatically block you
> from our mailings.
>
>
> --
-
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
> To UnSub, send email to: [EMAIL PROTECTED]
> with body of "unsubscribe delphi"
>

---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"



RE: [DUG]: Remove the cursor

2000-07-04 Thread Jeremy Coulter

Just a by-the-by, another way, altho I think it only works for things like
textboxes etc. is a function called HideCaret.

Cheers, Jeremy Coulter

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
Behalf Of Nahum Wild
Sent: Wednesday, 5 July 2000 14:06
To: Multiple recipients of list delphi
Subject: RE: [DUG]: Remove the cursor


Use 'crNone' instead of a magic number :)

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of [EMAIL PROTECTED]
> Sent: Wednesday, July 05, 2000 12:56
> To: Multiple recipients of list delphi
> Subject: Re: [DUG]: Remove the cursor
>
>
>
>
> ShowCursor(False)
>
> or
>
> Screen.Cursor := -1;
>
> JED
>
> >> How can I temporly remove the cursor?
>
> >> Proberly simple to do but I can't find a way to do it anywhere.
>
> >> James
>
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
>
>
>
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
>
>
---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz


---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



RE: [DUG]: Remove the cursor

2000-07-04 Thread Nahum Wild

Use 'crNone' instead of a magic number :)

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On
> Behalf Of [EMAIL PROTECTED]
> Sent: Wednesday, July 05, 2000 12:56
> To: Multiple recipients of list delphi
> Subject: Re: [DUG]: Remove the cursor
> 
> 
> 
> 
> ShowCursor(False)
> 
> or
> 
> Screen.Cursor := -1;
> 
> JED
> 
> >> How can I temporly remove the cursor?
> 
> >> Proberly simple to do but I can't find a way to do it anywhere.
> 
> >> James
> 
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
> 
> 
> 
> --
> -
> New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>   Website: http://www.delphi.org.nz
> 
> 
---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



Re: [DUG]: Remove the cursor

2000-07-04 Thread JNorth



ShowCursor(False)

or

Screen.Cursor := -1;

JED

>> How can I temporly remove the cursor?

>> Proberly simple to do but I can't find a way to do it anywhere.

>> James

---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



[DUG]: Remove the cursor

2000-07-04 Thread James Sullivan


How can I temporly remove the cursor?

Proberly simple to do but I can't find a way to do it anywhere.

James

---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



[DUG]: Remove

1999-03-25 Thread Colin R Dillicar

At 16:09 24/03/99 +0800, you wrote:
>___
>If you wish to be removed from this advertiser's future mailings, please reply 
>with the subject "Remove" and this software will automatically block you 
>from their future mailings.
>
>
>
>Content-Type: text/html; charset=iso-8859-1; name="2dollars.htm"
>Content -Transfer - Encoding: quoted -printable
>Content-Disposition: inline; filename="2dollars.htm"
>Content-Base: "file:///C|/My%20Documents/Project/2dollars.htm"
>
>
>  HOW TO GET2
MILLION PEOPLE TO SEND YOU$ 2.00
!!! LEARN
MY EASY METHOD, PLUS RECEIVE PROOF THIS WORKS.RUSH $
2.00 ( U.S ) FOR SHIPPING AND HANDLING TO : PANTAI
VILLA MARKETINGDEPT 102, P.O. BOX 1245850778 KUALA LUMPURMALAYSIA
 Colin R Dillicar
Managing Director
 AUTOMATION ENGINEERING LTD
  PO Box 12-087  Penrose
  AUCKLAND   NEW ZEALAND
Ph +64-9-571-0073  
Fx +64-9-571-0377


---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz



[DUG]: Remove

1999-03-24 Thread BJ Wilson



--
From:   [EMAIL PROTECTED][SMTP:[EMAIL PROTECTED]]
Reply To:   [EMAIL PROTECTED]
Sent:   Wednesday, 24 March 1999 20:09
To: Multiple recipients of list delphi
Subject:[DUG]:  HOW TO GET 2 MILLION PEOPLE SEND YOU $ 2.00

<>
___
If you wish to be removed from this advertiser's future mailings, please reply 
with the subject "Remove" and this software will automatically block you 
from their future mailings.





---
New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
  Website: http://www.delphi.org.nz