Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / July 2005

Tip: Looking for answers? Try searching our database.

3 or 4 lines

Thread view: 
Adam gimli84.o2.pl - 04 Jul 2005 08:54 GMT
I suppose there are not more than 4 lines to add hovewer I have no
idea how they should look like, therefore I ask You for help.

There are Two applets in two files and i want to run each fron the
second one here is their code

first file

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

plik: MojAplet2.java

public class MojAplet2 extends JApplet
{
JButton przycisk;
MojAplet2b a ;

class ActListener implements ActionListener
{
  public void actionPerformed(ActionEvent e)
  {
 if(e.getSource()==przycisk)
 {
  /*
    I suppose the code which runs the second applet should be here
  */
 }
  }
}

private ActListener ActList = new ActListener() ;

public void init()
{
  przycisk=new JButton("zmien");
  przycisk.addActionListener(ActList) ;
         getContentPane().setLayout(null);
  getContentPane().add(przycisk);
  przycisk.setBounds(30, 158, 300, 34);
}
}
and the second file: MojAplet2.java

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class MojAplet2b extends JApplet
{
JButton przycisk;
MojAplet2b a ;

class ActListener implements ActionListener
{
  public void actionPerformed(ActionEvent e)
  {
 if(e.getSource()==przycisk)
 {
  //something which will cause that the applet will end and return to
the
  // parrent applet
 }
  }
}

private ActListener ActList = new ActListener() ;

public void init()
{
  przycisk=new JButton("zmien");
  przycisk.addActionListener(ActList) ;
         getContentPane().setLayout(null);
  getContentPane().add(przycisk);
  przycisk.setBounds(30, 158, 300, 34);
}
}

Im really beginer and I would be gratefull for any help

Regards,

Adam Skrodzki
Andrew Thompson - 04 Jul 2005 10:38 GMT
> Im really beginer and I would be gratefull for any help
..
> I suppose there are not more than 4 lines to add hovewer I have no
> idea how they should look like, therefore I ask You for help.

A far better group for questions of this nature is
comp.lang.java.help

>    //something which will cause that the applet will end and return to
> the
>    // parrent applet

A lot of the answer to this depends on exactly what you
mean by 'end' and 'return'.

Could you also explain (on your post on c.l.j.help)
exactly what the user is seeing before they click
any button, and what you woud like them to be seeing
after they have clicked it.

HTH

Signature

Andrew Thompson
http://www.PhySci.org/codes/  Web & IT Help
http://www.PhySci.org/  Open-source software suite
http://www.1point1C.org/  Science & Technology
http://www.LensEscapes.com/  Images that escape the mundane



Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.