473,698 Members | 2,576 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Event handling

45 New Member
Hi there,

I did this program, but, im having problems with attaching the events. i want the total bill amount to be calculated when i click the ‘OK’ button, and i need it to be displayed in the window. The problem is that I dont know why I dont get why its not adding the total bill of what i selected. It only displays "Total: 0"


im assuming that:

Sandwich = $2 per unit
Tea – $1 per unit
Coke – $1 per unit

Expand|Select|Wrap|Line Numbers
  1. import java.awt.BorderLayout;
  2. import java.awt.FlowLayout;
  3. import java.awt.GridLayout;
  4. import java.awt.event.ActionEvent;
  5. import java.awt.event.ActionListener;
  6.  
  7. import javax.swing.JApplet;
  8. import javax.swing.JButton;
  9. import javax.swing.JCheckBox;
  10. import javax.swing.JComboBox;
  11. import javax.swing.JLabel;
  12. import javax.swing.JPanel;
  13. import javax.swing.JRadioButton;
  14. import javax.swing.JTextField;
  15.  
  16.  
  17.  
  18. public class Cafeamr extends JApplet  implements ActionListener{
  19. private JButton b1, b2; 
  20. private JCheckBox c1, c2, c3;
  21. //private JRadioButton c5, c6, c7;
  22. private JComboBox q;
  23. private JLabel label1, label2,label3,label4,label5;
  24. private JPanel p1, p2, p3, p4, p5, p6, p7, p8;
  25. private JTextField textbox1,textbox2,textbox3;
  26.  
  27.     public Cafe()
  28.     {
  29.        // build left north panel
  30.        label1 = new JLabel( "Cafe:  My Cafe" );
  31.        p1 = new JPanel();
  32.        p1.setLayout( new FlowLayout( FlowLayout.LEFT ) );
  33.        p1.add( label1 );
  34.  
  35.        // build right east panel
  36.        b1 = new JButton( "Ok" );
  37.        b1.addActionListener(this);
  38.        b2 = new JButton( "Cancel" );
  39.        b2.addActionListener(this);
  40.        p2 = new JPanel();
  41.        p2.setLayout( new GridLayout( 2, 1, 5, 5 ) );
  42.  
  43.        p2.add( b1 );
  44.        p2.add( b2 );
  45.  
  46.        // build left south panel
  47.        label2 = new JLabel( "Payment Mode: " );
  48.        q = new JComboBox();
  49.        q.addItem( "Cash" );
  50.        q.addItem("Credit Card");
  51.        p3 = new JPanel();
  52.        p3.setLayout( new FlowLayout( FlowLayout.LEFT, 10, 0 ) );
  53.        p3.add( label2 );
  54.        p3.add( q );
  55.  
  56.  
  57.        // build left east panel
  58.        label3=new JLabel("Item");
  59.        c1 = new JCheckBox( "Sandwich" );
  60.        c2 = new JCheckBox( "Tea" );
  61.        c3 = new JCheckBox( "Coke" );
  62.        p4 = new JPanel();
  63.        p4.setLayout( new GridLayout(4,1,3,3 ) );
  64.        p4.add(label3);
  65.        p4.add(c1);
  66.        p4.add(c2);
  67.        p4.add(c3);
  68.  
  69.        // build left west panel
  70.        p5 = new JPanel();
  71.        p5.setLayout( new GridLayout(4,1,5,5) );
  72.        label4=new JLabel("Quantity");
  73.        textbox1=new JTextField(2);
  74.  
  75.        textbox2=new JTextField(2);
  76.  
  77.        textbox3=new JTextField(2);
  78.  
  79.        p5.add(label4);
  80.        p5.add(textbox1);
  81.        p5.add(textbox2);
  82.        p5.add(textbox3);
  83.  
  84.  
  85.        // build left center
  86.        p8 = new JPanel();
  87.        p8.setLayout( new FlowLayout( FlowLayout.CENTER, 30, 0 ) );
  88.       // p8.setBackground( Color.white );
  89.        p8.add( p4 );
  90.        p8.add( p5 );
  91.  
  92.  
  93.        // setup left panel
  94.        p6 = new JPanel();
  95.        p6.setLayout( new BorderLayout() );
  96.        p6.add( p1, BorderLayout.NORTH );
  97.        p6.add( p8, BorderLayout.CENTER );
  98.        p6.add( p3, BorderLayout.SOUTH );
  99.  
  100.        // setup applet layout
  101.        p7 = new JPanel();
  102.        p7.setLayout( new FlowLayout( FlowLayout.CENTER, 10, 5 ) );
  103.        p7.add( p6 );
  104.        p7.add( p2 );
  105.        getContentPane().add( p7 );
  106.  
  107.        setSize( 400, 250 );
  108.        show();
  109.     }
  110.  
  111.     public void actionPerformed (ActionEvent d)
  112.     {
  113.         if(d.getSource() ==b1){
  114.             int total= 0;
  115.             int SP = 2;
  116.             int TP = 1;
  117.             int CP = 1;
  118.             //if (d.getSource())
  119.  
  120.             try
  121.             {
  122.                 if (c1.isSelected()==true){
  123.                    String B1 = textbox1.getText();
  124.                     int b1 = Integer.parseInt(B1);
  125.                   total = total + (b1 * SP);
  126.                 }
  127.  
  128.                 if (c2.isSelected()==true){
  129.                     String B2 = textbox2.getText();
  130.                     int b2 = Integer.parseInt(B2);
  131.                       total = total + (b2 * TP);
  132.                 }
  133.  
  134.                 if (c3.isSelected()==true){
  135.                     String B3 = textbox1.getText();
  136.                     int b3 = Integer.parseInt(B3);
  137.                       total = total + (b3 * CP);
  138.                 }
  139.             }
  140.             catch(Exception e) {
  141.                 e.printStackTrace();
  142.             }
  143.              label5 = new JLabel( "Total: "+ total );
  144.              p7.add(label5);
  145.              validate();
  146.             System.out.println(total);
  147.         } // ok button
  148.         else {
  149.             System.exit(1);
  150.         }
  151.  
  152.  
  153. }
  154.     public void init()
  155.     {
  156.         new Cafe();
  157.     }
  158. }
Thanks in advance and i hope you guys can help me out,

cheers

outofmymind
Dec 4 '06 #1
4 1615
horace1
1,510 Recognized Expert Top Contributor
The only problem I noticed was the class was called Cafeamr
Expand|Select|Wrap|Line Numbers
  1. public class Cafeamr extends JApplet  implements ActionListener{
  2.  
and the constructor was called Cafe
Expand|Select|Wrap|Line Numbers
  1.         public Cafe()
  2.  
once I changed the class name to Cafe and ran it with AppletViewer the program worked OK - I entered the quantity in the JTextField, clicked on the item box and then OK and the Total was correct.
Dec 4 '06 #2
r035198x
13,262 MVP
The only problem I noticed was the class was called Cafeamr
Expand|Select|Wrap|Line Numbers
  1. public class Cafeamr extends JApplet implements ActionListener{
  2.  
and the constructor was called Cafe
Expand|Select|Wrap|Line Numbers
  1.         public Cafe()
  2.  
once I changed the class name to Cafe and ran it with AppletViewer the program worked OK - I entered the quantity in the JTextField, clicked on the item box and then OK and the Total was correct.
The code should also not have compiled.
Dec 5 '06 #3
outofmymind
45 New Member
The code should also not have compiled.
Thanks for your help r035198x ! :) :)...it worked

outofmymind
Dec 6 '06 #4
r035198x
13,262 MVP
Thanks for your help r035198x ! :) :)...it worked

outofmymind
You should thank horace1 there. He is the one who gave you the solution. I merely pointed out that your version could not possibly compile.
Dec 6 '06 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

7
49577
by: Pavils Jurjans | last post by:
Hallo, I have been programming for restricted environments where Internet Explorer is a standard, so I haven't stumbled upon this problem until now, when I need to write a DOM-compatible code. The question is about best practices for passing parameters to an event function. I have, say, the following HTML:
1
20694
by: Covad | last post by:
Hi all, For some reason my change() function is only called when the page loads. I'd much rather it gets called when the select changes. Here's the code: window.onload = init; function init() {
4
12573
by: Eric | last post by:
How can I dynamically assign an event to an element? I have tried : (myelement is a text input) document.getElementById('myelement').onKeyUp = "myfnc(param1,param2,param3)"; document.getElementById('myelement') = new Function("myfnc(param1,param2,param3)");
18
2882
by: Christopher W. Douglas | last post by:
I am writing a VB.NET application in Visual Studio 2003. I have written a method that handles several events, such as closing a form and changing the visible status of a form. I have some code that applies to all these events, but I need to have specific code execute when the form closes. The properties for this method are sender (the originator) and e (event arguments). I know how to get typeof (sender) to determine what form or...
8
6084
by: Mark | last post by:
Hi, I'm looking for some ideas on how to build a very simple Event processing framework in my C++ app. Here is a quick background ... I'm building a multithreaded app in C++ (on Linux) that uses message queues to pass pointers to Events between threads. In my app there are simple events that can be defined using an enum (for example an event called NETWORK_TIMEOUT) and more complex events that contain data (for example an event called...
4
1749
by: hillcountry74 | last post by:
Hi, I'm a newbie and trying to understand event handling in c#. I have understood handling events using delelgate objects. But not this method- "Event handling by overriding the virtual protected method of the base class". Can someone please explain this with a sample code? Thanks a lot.
3
2076
by: Ashok Kumar K | last post by:
Hi all, Where can I get some insight on using the __hook, __unhook, event_source and event_receiver for specifically COM events. The documentation given in MSDN is very minimal. I have the following scenario Server (COM event source) is written in VC++ 6.0 using ATL (event interfaces can be either dispinterface / IDispatch based) Client (COM event receiver) is written in VC++ 2003 using attributed programming and unified event handling
2
2134
by: Paul E. Orman | last post by:
I have a piece of VB code (.NET 1.1 - VB 2003) that loads data from a database through a timer. So the timer is setup and from it I call the procedure that loads the latest records from the database. This works fine. However, I attempt to notify the user when data accesses occur. The way I attempt to accomplish this is by changing the background color of a label on the form the user is looking at. I use red for when the database is...
4
9684
by: mflll | last post by:
I am looking into the different techniques of handling arrays of edit boxes in Java Script. The first program below works fine. However, are there better ways of doing this, where the person writing the JavaScript doesn't have to pass the index in the "onChange" event name. I thought that one might be able to use "this.value" or compare this as
0
8680
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9030
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8899
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8871
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7738
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6528
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4622
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3052
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2007
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.