Wednesday, August 28, 2013

Create Dynamic components in JAVA


  1. First create a Swing container to hold dynamically generating objects.
  2. Then set a layout for the container
·            dynPanel.setLayout(new FlowLayout());
  1. Then create objects from components that you want to generate. 
·            JLabel lbl = new JLabel();
·            JTextField txt = new JTextField(12);
           4.       Then modify those objects as you want.
·            lbl.setText(allName);
·            txt.setText(String.valueOf(allValue + "0"));
·            txt.setEditable(false);

           5.      Then add those objects to the panel.
·            dynPanel.add(lbl);
·            dynPanel.add(txt);
           6.      Then repaint the container
·            dynPanel.revalidate();
·            validate();

Sunday, July 14, 2013

Steps to follow to create your website

1. Initially you have to create a site map. It shows how are the things going to be connect with other. from pages to articles.

2. Then find a suitable theme for your site. most of the time rest of the Joomla CMS is available with the theme. Try to apply a theme after building the site is not going to work most of the time.

3. Then start finding extensions you will need for your site.You will get alots of extension so choose wisely suitable one.
 
4. Now you have all the ingredients start building. install your extensions and assign them as modules all over the site. its that simple but remember keep the site map in your mind.

5. After building the site test it and then host it.

Wednesday, May 8, 2013

Getting started your website using Joomla

What is joomla?
Joomla is an award-winning content management system (CMS), which enables you to build Web sites and powerful online applications.
Joomla is an open source solution that is freely available to everyone.

What is CMS?
A content management system is software that keeps track of every piece of content on your Web site, much like your local public library keeps track of books and stores them. Content can be simple text, photos, music, video, documents, or just about anything you can think of. A major advantage of using a CMS is that it requires almost no technical skill or knowledge to manage.