Re: Unidentified subject!

2000-11-30 Thread Ashish Kulkarni

NEVER send emails with long attachments on a mailing list : if you have something 
intresting, put it up on 
some FTP space and request users to see it via linking a URL to it. otherwise it 
totally wastes bandwidth.

- Original Message - 
From: lisuke <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, November 30, 2000 5:29 AM
Subject: Unidentified subject!


| hi,everyone ,I found a very good life bible cite collection.
| Send it to you everyone here,and good luck to everybody!
| Enjoy it~~
| 
| 
| 


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Unidentified subject!

2000-11-30 Thread KIRKBRIDE Rob

Its also completely off subject and suspicous from a virii point of view.

 --
From: Ashish Kulkarni
To: lisuke; [EMAIL PROTECTED]; KIRKBRIDE Rob ([EMAIL PROTECTED])
Subject: Re: Unidentified subject!
Date: 30 November 2000 09:04


NEVER send emails with long attachments on a mailing list : if you have something 
intresting, put it up on
some FTP space and request users to see it via linking a URL to it. otherwise it 
totally wastes bandwidth.

 - Original Message -
From: lisuke <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, November 30, 2000 5:29 AM
Subject: Unidentified subject!


| hi,everyone ,I found a very good life bible cite collection.
| Send it to you everyone here,and good luck to everybody!
| Enjoy it~~
|
|
|


 --
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


<<<   Original Email Header   >>>

Received: from punt-2.mail.demon.net by mailstore for [EMAIL PROTECTED]
  id 975573950:20:01190:13; Thu, 30 Nov 2000 08:45:50 GMT
Received: from karlasha.2kweb.net ([192.41.21.66]) by punt-2.mail.demon.net
   id aa2104904; 30 Nov 2000 8:45 GMT
Received: (karlasha@localhost) by karlasha.2kweb.net (8.8.5) id AAA05150; Thu, 30 Nov 
2000 00:46:09 -0700 (MST)
Resent-Date: Thu, 30 Nov 2000 00:46:09 -0700 (MST)
X-WM-Posted-At: MailAndNews.com; Thu, 30 Nov 00 02:45:37 -0500
Message-ID: <005f01c05aa1$ea4db6d0$aee95ecb@kulkarni>
From: "Ashish Kulkarni" <[EMAIL PROTECTED]>
To: "lisuke" <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]>
References: <004001c05a60$6b5d22c0$cb1e69a2@lisuke>
Subject: Re: Unidentified subject!
Date: Thu, 30 Nov 2000 13:17:57 +0530
MIME-Version: 1.0
Content-Type: text/plain;
charset="gb2312"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 5.00.2314.1300
X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300
Resent-Message-ID: <[EMAIL PROTECTED]>
Resent-From: [EMAIL PROTECTED]
X-Mailing-List: <[EMAIL PROTECTED]> archive/latest/4879
X-Loop: [EMAIL PROTECTED]
Precedence: list
Resent-Sender: [EMAIL PROTECTED]




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




a problem with _self and a problem with browser

2000-11-30 Thread Poul Kristensen




Hi,
 
I'm a very very NOVICE to java.
 
I have mixed to examples from Steven 
Holzner's "Learning by examples".
 
And it works fine if I dont put the 
string "_self" in the URL method.
 
Reading www.javasoft.com this should work. Am I doing 
something completely foolish?
 
I want to keep the frame showing a new 
document. 
 
And one more thing. Does anybody know 
why "some text" in method newpopupmenu does appear using netscape but 
won't appear using MS Explorer 4.0.?
 
TIA 
 
Poul   
 
 
  import 
java.applet.Applet;    import 
java.awt.*;    import 
java.awt.event.*;    import 
java.net.*; 
    public 
class popupx extends Applet implements ActionListener, MouseListener 
{
    
TextField 
text1;    
PopupMenu 
popup;    
MenuItem menuitem1, menuitem2, 
menuitem3;    
    
public void init(){ 
    
popup = new PopupMenu("some 
text");    
menuitem1 = new 
MenuItem("2000");    
menuitem1.addActionListener(this);    
menuitem2 = new 
MenuItem("1999");    
menuitem2.addActionListener(this);    
menuitem3 = new 
MenuItem("1998");    
menuitem3.addActionListener(this);    
popup.add(menuitem1);    
popup.add(menuitem2);    
popup.addSeparator();    
popup.add(menuitem3);    
add(popup);    
text1 = new 
TextField(30);    
add(text1);    
addMouseListener(this);    
} 
    
public void mousePressed(MouseEvent 
e){    
if(e.getModifiers() != 
0){    
popup.show(this, e.getX(), 
e.getY());    
}    
} 
    
public void mouseClicked(MouseEvent 
e){    
} 
    
public void mouseReleased(MouseEvent 
e){    
} 
    
public void mouseEntered(MouseEvent 
e){    
} 
    
public void mouseExited(MouseEvent 
e){    
} 
    public 
void actionPerformed(ActionEvent 
event){    
if(event.getSource() == 
menuitem1){    
URL newURL = 
null;  
{ 
try { newURL = new URL("http://www.sfi.dk/pub/show2000.php3","_self");}   
catch (MalformedURLException e1 ) 
{}    
getAppletContext().showDocument(newURL);  
}  
}    
if(event.getSource() == 
menuitem2){    
URL newURL = 
null;  
{ 
try { newURL = new URL("http://www.sfi.dk/show1999.php3","_self");}   
catch (MalformedURLException e2 ) 
{}    
getAppletContext().showDocument(newURL);  
}  
}    
if(event.getSource() == 
menuitem3){    
URL newURL = 
null;  
{ 
try { newURL = new URL("http://www.sfi.dk/pub/show1998.php3","_self");}   
catch (MalformedURLException e2 ) 
{}    
getAppletContext().showDocument(newURL);  
}    
    
}    } 
    
} 


Re: Unidentified subject!

2000-11-30 Thread Joseph Shraibman

It is probably a worm.  Ignore it.

Ashish Kulkarni wrote:
> 
> NEVER send emails with long attachments on a mailing list : if you have something 
>intresting, put it up on
> some FTP space and request users to see it via linking a URL to it. otherwise it 
>totally wastes bandwidth.
> 
> - Original Message -
> From: lisuke <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Thursday, November 30, 2000 5:29 AM
> Subject: Unidentified subject!
> 
> | hi,everyone ,I found a very good life bible cite collection.
> | Send it to you everyone here,and good luck to everybody!
> | Enjoy it~~
> |
> |
> |
> 
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

-- 
Joseph Shraibman
[EMAIL PROTECTED]
Increase signal to noise ratio.  http://www.targabot.com


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Unidentified subject!

2000-11-30 Thread Mr.Y.SHIVAKANT


-Original Message-
From: Joseph Shraibman <[EMAIL PROTECTED]>
To: Ashish Kulkarni <[EMAIL PROTECTED]>
Cc: lisuke <[EMAIL PROTECTED]>; [EMAIL PROTECTED]
<[EMAIL PROTECTED]>
Date: Friday, December 01, 2000 8:59 AM
Subject: Re: Unidentified subject!


>It is probably a worm.  Ignore it.
>
>Ashish Kulkarni wrote:
>>
>> NEVER send emails with long attachments on a mailing list : if you have
something intresting, put it up on
>> some FTP space and request users to see it via linking a URL to it.
otherwise it totally wastes bandwidth.
>>
>> - Original Message -
>> From: lisuke <[EMAIL PROTECTED]>
>> To: <[EMAIL PROTECTED]>
>> Sent: Thursday, November 30, 2000 5:29 AM
>> Subject: Unidentified subject!
>>
>> | hi,everyone ,I found a very good life bible cite collection.
>> | Send it to you everyone here,and good luck to everybody!
>> | Enjoy it~~
>> |
>> |
>> |
>>
>> --
>> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
>> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
>
>--
>Joseph Shraibman
>[EMAIL PROTECTED]
>Increase signal to noise ratio.  http://www.targabot.com
>
>
>--
>To UNSUBSCRIBE, email to [EMAIL PROTECTED]
>with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


SO HOW DO I ADD FTP TO MY SITE (TCP/IP) or what

YOURS SINCERELY
SHIVAKANTH


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]