No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
Let's see your code (in code tags, please).
I'm having difficulty understanding what you are looking for. Are you saying you have a project you have coded and want to know how to explain what the code does? That's kind of what I'm getting from your post...
Which aspects of the assignment are you having difficulties with?
[url]http://java.sun.com/docs/books/tutorial/uiswing/components/icon.html[/url] or try this [url]http://java.sun.com/docs/books/tutorial/2d/images/index.html[/url]
You forgot to use sarcasm tags ;) Someone is scratching their head trying to figure that last post out, I'll bet. heh
You could do something like the following to actually assign these amounts and keep a running total. [CODE=Java] double total=0; public void actionPerformed(ActionEvent event) { if (PizzaCombo10.getSelectedItem().equals("Cheese and tomato")) { priceLabel37.setText("3.50"); total = total + 3.50; } else if (PizzaCombo10.getSelectedItem().equals("Ham and Pineapple")) { priceLabel37.setText("4.20"); total = total + 4.20; } …
[QUOTE=mabpest;870897]When using Ms access 2007 What do you think are the advantages of creating a report design (as opposed to just designing the report as you go)? How could creating a report design actually save you time when you start developing the report? How could you determine which fields should …
The End.
peace_of_mind