How  to make the panel scrollable

Hi,
I am trying to set one panel on the other panel with all the Labels button , i want the screen to become scrollable when the size is bigger then the size of the panel . I am getting an issue on setting one panel over another and the controls on the panel will become scrollable.
Code:
Main Class which call the sampleadvance search
import java.awt.BorderLayout;
* AGLM Main Screen
* @author vishal.agarwal
public class AGLMMainScreen extends JFrame {
     // Component Declaration
     private static final long serialVersionUID = 1L;
     private static AGLMMainScreen mframeAGLMMainScreen = null;
     private JMenuBar gsMenuBar;
     private JMenu gsFileMenu;
     private JMenu gsToolsMenu;
     private JMenu gsSamplesMenu;
     private JMenu gsSeedsMenu;
     private JMenu gsReportsMenu;
     private JMenu gsCustomersMenu;
     private JMenu gsHelpMenu;
     private JMenuItem gsExitAction;
     private JMenuItem gsGeneralConfigurationAction;
     private JMenuItem gsRegisterSampleAction;
     private JMenuItem gsRegisterSeedAction;
     private JMenuItem gsRegisterCustomerAction;
     private JMenuItem gsSearchSampleAction;
     private JMenuItem gsAdvanceSearchSampleAction;
     private JMenuItem gsSearchSeedAction;
     private JMenuItem gsSearchCustomerAction;
     private JMenuItem gsAboutAGLMAction;
     private JPanel contentPane;
     private JPanel footerPane;
     private JPanel panelTop = null;
     private JPanel panelLeft = null;
     private JPanel panelRight = null;
     private JLabel lblSelectedRightScreen = null;
     private JLabel lblMCMPLogo;
     private JLabel gslblSoftwareName;
     private JLabel gslblCopyRight;
     * AGLMMain Screen default constructor
     public AGLMMainScreen() {
          addFocusListener(new FocusAdapter() {
               @Override
               public void focusGained(FocusEvent arg0) {
          /*setIconImage(Toolkit.getDefaultToolkit().getImage(
                    AGLMMainScreen.class.getResource("/resources/open.png")));*/
          addWindowListener(new WindowAdapter() {
               @Override
               public void windowClosing(WindowEvent arg0) {
                    System.exit(0);
          setLocationByPlatform(true);
          setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
          setBounds(0, 0, 1366, 768);
          setVisible(true);
          // Create Menu Bar.
          GenerateMenuBar();
          contentPane = new JPanel();
          setContentPane(contentPane);
          contentPane.setLayout(null);
          // Create Top Panel.
          GenerateTopPanel();
          // Generate Footer Panel.
          GenerateFooterPanel();
          // Generate Left Panel.
          GenerateLeftPanel();
          // Generate Right Panel.
          GenerateRightPanel();
     public void GenerateMenuBar() {
          // Menu Bar
          gsMenuBar = new JMenuBar();
          gsFileMenu = new JMenu();
          gsFileMenu.setText("File");
          gsMenuBar.add(gsFileMenu);
          gsToolsMenu = new JMenu();
          gsToolsMenu.setText("Tool");
          gsMenuBar.add(gsToolsMenu);
          gsSamplesMenu = new JMenu();
          gsSamplesMenu.setText("Sample");
          gsMenuBar.add(gsSamplesMenu);
          gsSeedsMenu = new JMenu();
          gsSeedsMenu.setText("Seed");
          gsMenuBar.add(gsSeedsMenu);
          gsReportsMenu = new JMenu();
          gsReportsMenu.setText("Reports");
          gsMenuBar.add(gsReportsMenu);
          gsCustomersMenu = new JMenu();
          gsCustomersMenu.setText("Customer");
          gsMenuBar.add(gsCustomersMenu);
          gsHelpMenu = new JMenu();
          gsHelpMenu.setText("Help");
          gsMenuBar.add(gsHelpMenu);
          setJMenuBar(gsMenuBar);
          // Items on Menu Bar
          gsExitAction = new JMenuItem();
          gsExitAction.setText("Exit");
          /*gsExitAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Cancel.png")));*/
          gsExitAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    int result = JOptionPane
                              .showConfirmDialog(
                                        null,
                                        "Do you want to close",
                                        "Selection Option", JOptionPane.YES_NO_OPTION);
                    if (result == JOptionPane.YES_OPTION) {
                         dispose();
                    } else if (result == JOptionPane.NO_OPTION) {
          gsFileMenu.add(gsExitAction);
          gsGeneralConfigurationAction = new JMenuItem();
          gsGeneralConfigurationAction.setText("General Configuration");
          /*gsGeneralConfigurationAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/General.png")));*/
          gsGeneralConfigurationAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsToolsMenu.add(gsGeneralConfigurationAction);
          gsRegisterSampleAction = new JMenuItem(
                    "Register Sample");
          /*gsRegisterSampleAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsRegisterSampleAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsSamplesMenu.add(gsRegisterSampleAction);
          gsSearchSampleAction = new JMenuItem("Search Sample");
          /*gsSearchSampleAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsSearchSampleAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsSamplesMenu.add(gsSearchSampleAction);
          gsAdvanceSearchSampleAction = new JMenuItem("Advance Search Sample");
          /*gsAdvanceSearchSampleAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsAdvanceSearchSampleAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
                    showSampleAdvanceSearchForm();
          gsSamplesMenu.add(gsAdvanceSearchSampleAction);
          gsRegisterSeedAction = new JMenuItem("Register Seed");
          /*gsRegisterSeedAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsRegisterSeedAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsSeedsMenu.add(gsRegisterSeedAction);
          gsSearchSeedAction = new JMenuItem("Seed Search");
          /*gsSearchSeedAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsSearchSeedAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsSeedsMenu.add(gsSearchSeedAction);
          gsRegisterCustomerAction = new JMenuItem("Register Customer");
          /*gsRegisterCustomerAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsRegisterCustomerAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsCustomersMenu.add(gsRegisterCustomerAction);
          gsSearchCustomerAction = new JMenuItem("Search Customer");
          /*gsSearchCustomerAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsSearchCustomerAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsCustomersMenu.add(gsSearchCustomerAction);
          gsAboutAGLMAction = new JMenuItem("About Tool");
          /*gsAboutAGLMAction.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/Export.png")));*/
          gsAboutAGLMAction.addActionListener(new ActionListener() {
               public void actionPerformed(ActionEvent event) {
                    // TODO
          gsHelpMenu.add(gsAboutAGLMAction);
     public void GenerateTopPanel() {
          // Top Panel
          panelTop = new JPanel();
          panelTop.setBorder(UIManager.getBorder("DesktopIcon.border"));
          panelTop.setBounds(0, 0, 1350, 55);
          contentPane.add(panelTop);
          panelTop.setLayout(null);
          lblSelectedRightScreen = new JLabel();
          lblSelectedRightScreen.setForeground(SystemColor.textHighlight);
          lblSelectedRightScreen.setFont(new Font("Tahoma", Font.PLAIN, 10));
          lblSelectedRightScreen.setBounds(10, 30, 415, 13);
          panelTop.add(lblSelectedRightScreen);
          lblMCMPLogo = new JLabel();
          lblMCMPLogo.setHorizontalAlignment(SwingConstants.CENTER);
          /*lblMCMPLogo.setIcon(new ImageIcon(AGLMMainScreen.class
                    .getResource("/resources/open.png")));*/
          lblMCMPLogo.setForeground(SystemColor.textHighlight);
          lblMCMPLogo.setFont(new Font("Trebuchet MS", Font.PLAIN, 18));
          lblMCMPLogo.setBounds(612, 0, 63, 55);
          panelTop.add(lblMCMPLogo);
     public void GenerateFooterPanel() {
          footerPane = new JPanel();
          footerPane.setBounds(0, 684, 1350, 25);
          footerPane.setBorder(null);
          contentPane.add(footerPane);
          footerPane.setLayout(null);
          gslblCopyRight = new JLabel(
                    "All Rights Reserved (C) ");
          gslblCopyRight.setFont(new Font("Tahoma", Font.PLAIN, 13));
          gslblCopyRight.setBounds(10, 0, 168, 25);
          footerPane.add(gslblCopyRight);
          gslblSoftwareName = new JLabel("ABC");
          gslblSoftwareName.setFont(new Font("Tahoma", Font.PLAIN, 13));
          gslblSoftwareName.setHorizontalAlignment(SwingConstants.RIGHT);
          gslblSoftwareName.setBounds(1201, 0, 139, 25);
          footerPane.add(gslblSoftwareName);
     public void GenerateLeftPanel() {
          // Left Panel
          panelLeft = new JPanel();
          panelLeft.setIgnoreRepaint(true);
          panelLeft.setFont(new Font("Tahoma", Font.PLAIN, 13));
          panelLeft.setBorder(UIManager.getBorder("DesktopIcon.border"));
          panelLeft.setBounds(0, 60, 300, 620);
          contentPane.add(panelLeft);
          panelLeft.setLayout(new BorderLayout(0, 0));
     public void GenerateRightPanel() {
          panelRight = new JPanel();
          panelRight.setBackground(SystemColor.controlHighlight);
          panelRight.setFont(new Font("Tahoma", Font.PLAIN, 13));
          panelRight.setBorder(UIManager.getBorder("DesktopIcon.border"));
          panelRight.setBounds(305, 60, 1045, 620);
          contentPane.add(panelRight);
          panelRight.setLayout(new BoxLayout(panelRight, BoxLayout.X_AXIS));
     public void showSampleAdvanceSearchForm() {
          try {
               panelRight.removeAll();
               SampleAdvancedSearch registration = new SampleAdvancedSearch();
               // registration.setLocation(panelRight.getLocation());
               // registration.setBounds(panelRight.getBounds());
               registration.setBounds(1, 1, 1000, 600);
               panelRight.add(registration);
               registration.setVisible(true);
               repaint();
          } catch (Exception e) {
               JOptionPane.showMessageDialog(null, e.getMessage());
     public void CloseAGLMMainScreenEvent() {
          int result = 0;
          if (result == JOptionPane.YES_OPTION) {
               mframeAGLMMainScreen.dispose();
               mframeAGLMMainScreen = null;
          } else if (result == JOptionPane.NO_OPTION) {
          } else {
     * Main Method
     public static void main(String[] args) {
          EventQueue.invokeLater(new Runnable() {
               public void run() {
                    try {
                         mframeAGLMMainScreen = new AGLMMainScreen();
                         mframeAGLMMainScreen.setTitle("AGLM");
                         mframeAGLMMainScreen.setVisible(true);
                    } catch (Exception e) {
                         JOptionPane
                                   .showMessageDialog(
                                             null,
                                             "Error");
                         mframeAGLMMainScreen.dispose();
SAmpleAdvanceSearch class
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.SystemColor;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.HashMap;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.ListSelectionModel;
import javax.swing.ScrollPaneConstants;
import javax.swing.SwingConstants;
import javax.swing.border.LineBorder;
import javax.swing.table.DefaultTableModel;
import javax.swing.table.JTableHeader;
* @author Vishal Agarwal
public class SampleAdvancedSearch extends JPanel {
     private static final long serialVersionUID = 1L;
     private JLabel lblFormName;
     private JPanel panelGeneralDetail;
     private JLabel lblSearchDetails;
     private JLabel lblMoistureFrom;
     private JLabel lblSampleNumberFrom;
     private JLabel lblOilContentFrom;
     private JLabel lblSeedType;
     private JLabel lblSampleRateFrom;
     private JTextField txtWeightTo;
     private JTextField txtSampleNumberFrom;
     private JTextField txtMoistureFrom;
     private JComboBox cmbSeedType;
     private JTextField txtMoistureTo;
     private JLabel lblSMSMobileNo;
     private JLabel lblWeightFrom;
     private JLabel lblEmail;
     private JLabel lblSampleNumberTo;
     private JLabel lblProcessingStatus;
     private JLabel lblPaymentStatus;
     private JTextField txtSMSMobileNo;
     private JTextField txtSampleNumberTo;
     private JTextField txtEmail;
     private JTextField txtWeightFrom;
     private JRadioButton rdbtnStatusProcessed;
     private JRadioButton rdbtnStatusUnProcessed;
     private JButton btnClear;
     private JButton btnSearch;
     private JLabel lblWeightTo;
     private JLabel lblMoistureTo;
     private JLabel lblOilContentTo;
     private JLabel lblSampleRateTo;
     private JTextField txtOilContentFrom;
     private JTextField txtSampleRateFrom;
     private JTextField txtOilContentTo;
     private JTextField txtSampleRateTo;
     private JRadioButton rdbtnStatusAll;
     private JRadioButton rdbtnPaymentStatusAll;
     private JLabel lblReceiptPrintStatus;
     private JRadioButton rdbtnReceiptStatusAll;
     private JLabel lblReportPrintStatus;
     private JRadioButton rdbtnReportStatusAll;
     private JRadioButton rdbtnReportStatusPrinted;
     private JRadioButton rdbtnReportStatusNonPrinted;
     private JRadioButton rdbtnReceiptStatusPrinted;
     private JRadioButton rdbtnReceiptStatusNonPrinted;
     private JRadioButton rdbtnPaymentStatusPaid;
     private JRadioButton rdbtnPaymentStatusDue;
     private JScrollPane scrollPaneSearchResult;
     private JTableHeader tblheaderSearchResult;
     private JTable tblSearchResult;
     private DefaultTableModel dtmSearchResult = null;
     private String[] gsobjColumnHeaders = null;
     AGLMMainScreen gsAGLMMainScreen;
     * @throws AGLEngineException
     public SampleAdvancedSearch()
               throws Exception {
          setAutoscrolls(true);
          setMinimumSize(new Dimension(1000, 1000));
          try {
               createScreenComponents();
               createSearchResultScreenComponents();
          } catch (Exception e) {
               throw e;
     private void createSearchResultScreenComponents() {
          gsobjColumnHeaders = new String[] { "SNo", "Sample Name", "Date",
                    "Sample Type", "Weight (gm)", "Moisture (%)",
                    "Oil Content (%)", "Payment Status", "Status", "Report Print",
                    "Mobile No", "Email Id", "Actions" };
          dtmSearchResult = new DefaultTableModel(null, gsobjColumnHeaders) {
               private static final long serialVersionUID = 1L;
               boolean[] columnEditables = new boolean[] { false, false, };
               public boolean isCellEditable(int row, int column) {
                    return columnEditables[column];
               @SuppressWarnings("unused")
               public boolean isRowSelected(int row) {
                    return true;
          scrollPaneSearchResult = new JScrollPane();
          scrollPaneSearchResult
                    .setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
          scrollPaneSearchResult
                    .setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
          scrollPaneSearchResult.setEnabled(true);
          scrollPaneSearchResult.setBounds(10, 460, 900, 200);
          add(scrollPaneSearchResult);
          tblSearchResult = new JTable();
          tblSearchResult.setModel(dtmSearchResult);
          tblSearchResult
                    .setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
          tblSearchResult.setFont(new Font("Tahoma", Font.PLAIN, 11));
          tblSearchResult.setBackground(Color.WHITE);
          tblSearchResult.setBorder(new LineBorder(new Color(0, 0, 0)));
          tblSearchResult.setAutoResizeMode(JTable.AUTO_RESIZE_ALL_COLUMNS);
          scrollPaneSearchResult.setViewportView(tblSearchResult);
          tblSearchResult.setRowHeight(40);
          for (int i = 0; i < tblSearchResult.getColumnCount(); i++) {
               tblSearchResult.getColumnModel().getColumn(i).setCellRenderer(new TextAreaRenderer());
          tblSearchResult.setCellEditor(new TextAreaEditor());
          tblSearchResult.setAutoResizeMode(JTable.AUTO_RESIZE_OFF);
//          AGLUtility.packColumns(tblSearchResult, 4);
          tblSearchResult.getColumnModel().getColumn(2).setPreferredWidth(100);
          tblSearchResult.getColumnModel().getColumn(8).setPreferredWidth(100);
          tblSearchResult.getColumnModel().getColumn(10).setPreferredWidth(100);
          tblSearchResult.getColumnModel().getColumn(11).setPreferredWidth(150);
          tblSearchResult.getColumnModel().getColumn(12).setPreferredWidth(100);
          tblheaderSearchResult = tblSearchResult.getTableHeader();
          tblheaderSearchResult.setAlignmentX(Component.CENTER_ALIGNMENT);
          tblheaderSearchResult.setAlignmentY(Component.CENTER_ALIGNMENT);
     private void createScreenComponents() throws Exception {
          try {
               setAlignmentX(Component.LEFT_ALIGNMENT);
               setBackground(SystemColor.controlHighlight);
               setLayout(null);
               lblFormName = new JLabel("Sample Advance Search");
               lblFormName.setHorizontalTextPosition(SwingConstants.CENTER);
               lblFormName.setHorizontalAlignment(SwingConstants.LEFT);
               lblFormName.setFont(new Font("Tahoma", Font.BOLD, 18));
               lblFormName.setBounds(10, 10, 400, 30);
               add(lblFormName);
               // General Detail Panel
               panelGeneralDetail = new JPanel();
               panelGeneralDetail.setForeground(Color.RED);
               panelGeneralDetail.setBorder(new LineBorder(new Color(0, 0, 0)));
               panelGeneralDetail.setBounds(10, 40, 900, 410);
               add(panelGeneralDetail);
               panelGeneralDetail.setLayout(null);
               lblSearchDetails = new JLabel("Sample Search Details :-");
               lblSearchDetails.setHorizontalAlignment(SwingConstants.LEFT);
               lblSearchDetails.setFont(new Font("Tahoma", Font.BOLD, 13));
               lblSearchDetails.setBounds(20, 10, 231, 20);
               panelGeneralDetail.add(lblSearchDetails);
               lblMoistureFrom = new JLabel("Moisture Range (%) From ");
               lblMoistureFrom.setForeground(Color.BLACK);
               lblMoistureFrom.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblMoistureFrom.setHorizontalAlignment(SwingConstants.RIGHT);
               lblMoistureFrom.setBounds(30, 310, 200, 20);
               panelGeneralDetail.add(lblMoistureFrom);
               lblSampleNumberFrom = new JLabel("Sample Number From ");
               lblSampleNumberFrom.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblSampleNumberFrom.setHorizontalAlignment(SwingConstants.RIGHT);
               lblSampleNumberFrom.setBounds(30, 250, 200, 20);
               panelGeneralDetail.add(lblSampleNumberFrom);
               lblOilContentFrom = new JLabel("Oil Content (%) From ");
               lblOilContentFrom.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblOilContentFrom.setHorizontalAlignment(SwingConstants.RIGHT);
               lblOilContentFrom.setBounds(30, 340, 200, 20);
               panelGeneralDetail.add(lblOilContentFrom);
               txtWeightTo = new JTextField();
               txtWeightTo.setBounds(490, 280, 170, 20);
               panelGeneralDetail.add(txtWeightTo);
               txtWeightTo.setColumns(10);
               txtSampleNumberFrom = new JTextField();
               txtSampleNumberFrom.setColumns(10);
               txtSampleNumberFrom.setBounds(250, 250, 170, 20);
               panelGeneralDetail.add(txtSampleNumberFrom);
               txtMoistureFrom = new JTextField();
               txtMoistureFrom.setColumns(10);
               txtMoistureFrom.setBounds(250, 310, 170, 20);
               panelGeneralDetail.add(txtMoistureFrom);
               lblSeedType = new JLabel("Sample Seed Type ");
               lblSeedType.setHorizontalAlignment(SwingConstants.RIGHT);
               lblSeedType.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblSeedType.setBounds(30, 40, 200, 20);
               panelGeneralDetail.add(lblSeedType);
               lblSampleRateFrom = new JLabel("Sample Testing Rate From ");
               lblSampleRateFrom.setHorizontalAlignment(SwingConstants.RIGHT);
               lblSampleRateFrom.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblSampleRateFrom.setBounds(30, 370, 200, 20);
               panelGeneralDetail.add(lblSampleRateFrom);
               cmbSeedType = new JComboBox();
               cmbSeedType.setBounds(250, 40, 170, 20);
               panelGeneralDetail.add(cmbSeedType);
               txtMoistureTo = new JTextField();
               txtMoistureTo.setColumns(10);
               txtMoistureTo.setBounds(490, 310, 170, 20);
               panelGeneralDetail.add(txtMoistureTo);
               lblSMSMobileNo = new JLabel("Registered Mobile No ");
               lblSMSMobileNo.setHorizontalAlignment(SwingConstants.RIGHT);
               lblSMSMobileNo.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblSMSMobileNo.setBounds(30, 70, 200, 20);
               panelGeneralDetail.add(lblSMSMobileNo);
               lblWeightFrom = new JLabel("Weight Range (gm) From ");
               lblWeightFrom.setHorizontalAlignment(SwingConstants.RIGHT);
               lblWeightFrom.setForeground(Color.BLACK);
               lblWeightFrom.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblWeightFrom.setBounds(30, 280, 200, 20);
               panelGeneralDetail.add(lblWeightFrom);
               lblEmail = new JLabel("Registered Email ");
               lblEmail.setHorizontalAlignment(SwingConstants.RIGHT);
               lblEmail.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblEmail.setBounds(30, 100, 200, 20);
               panelGeneralDetail.add(lblEmail);
               lblSampleNumberTo = new JLabel("To ");
               lblSampleNumberTo.setHorizontalAlignment(SwingConstants.RIGHT);
               lblSampleNumberTo.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblSampleNumberTo.setBounds(430, 250, 50, 20);
               panelGeneralDetail.add(lblSampleNumberTo);
               lblProcessingStatus = new JLabel("Processing Status ");
               lblProcessingStatus.setHorizontalAlignment(SwingConstants.RIGHT);
               lblProcessingStatus.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblProcessingStatus.setBounds(30, 130, 200, 20);
               panelGeneralDetail.add(lblProcessingStatus);
               lblPaymentStatus = new JLabel("Payment Status ");
               lblPaymentStatus.setHorizontalAlignment(SwingConstants.RIGHT);
               lblPaymentStatus.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblPaymentStatus.setBounds(30, 160, 200, 20);
               panelGeneralDetail.add(lblPaymentStatus);
               txtSMSMobileNo = new JTextField();
               txtSMSMobileNo.setColumns(10);
               txtSMSMobileNo.setBounds(250, 70, 170, 20);
               panelGeneralDetail.add(txtSMSMobileNo);
               txtWeightFrom = new JTextField();
               txtWeightFrom.setColumns(10);
               txtWeightFrom.setBounds(250, 280, 170, 20);
               panelGeneralDetail.add(txtWeightFrom);
               txtEmail = new JTextField();
               txtEmail.setColumns(10);
               txtEmail.setBounds(250, 100, 170, 20);
               panelGeneralDetail.add(txtEmail);
               txtSampleNumberTo = new JTextField();
               txtSampleNumberTo.setColumns(10);
               txtSampleNumberTo.setBounds(490, 250, 170, 20);
               panelGeneralDetail.add(txtSampleNumberTo);
               rdbtnStatusAll = new JRadioButton("All");
               rdbtnStatusAll.setSelected(true);
               rdbtnStatusAll.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnStatusAll.setBounds(250, 130, 50, 20);
               panelGeneralDetail.add(rdbtnStatusAll);
               rdbtnStatusProcessed = new JRadioButton("Processed");
               rdbtnStatusProcessed.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnStatusProcessed.setBounds(310, 130, 85, 20);
               panelGeneralDetail.add(rdbtnStatusProcessed);
               rdbtnStatusUnProcessed = new JRadioButton("Un-Processed");
               rdbtnStatusUnProcessed.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnStatusUnProcessed.setBounds(400, 130, 120, 20);
               panelGeneralDetail.add(rdbtnStatusUnProcessed);
               final ButtonGroup rdbtngrpProcessingStatus = new ButtonGroup();
               rdbtngrpProcessingStatus.add(rdbtnStatusProcessed);
               rdbtngrpProcessingStatus.add(rdbtnStatusUnProcessed);
               rdbtngrpProcessingStatus.add(rdbtnStatusAll);
               rdbtnPaymentStatusAll = new JRadioButton("All");
               rdbtnPaymentStatusAll.setSelected(true);
               rdbtnPaymentStatusAll.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnPaymentStatusAll.setBounds(250, 160, 50, 20);
               panelGeneralDetail.add(rdbtnPaymentStatusAll);
               rdbtnPaymentStatusPaid = new JRadioButton("Paid");
               rdbtnPaymentStatusPaid.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnPaymentStatusPaid.setBounds(310, 160, 85, 20);
               panelGeneralDetail.add(rdbtnPaymentStatusPaid);
               rdbtnPaymentStatusDue = new JRadioButton("Due");
               rdbtnPaymentStatusDue.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnPaymentStatusDue.setBounds(400, 160, 120, 20);
               panelGeneralDetail.add(rdbtnPaymentStatusDue);
               final ButtonGroup rdbtngrpPaymentStatus = new ButtonGroup();
               rdbtngrpPaymentStatus.add(rdbtnPaymentStatusAll);
               rdbtngrpPaymentStatus.add(rdbtnPaymentStatusPaid);
               rdbtngrpPaymentStatus.add(rdbtnPaymentStatusDue);
               rdbtnReceiptStatusAll = new JRadioButton("All");
               rdbtnReceiptStatusAll.setSelected(true);
               rdbtnReceiptStatusAll.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnReceiptStatusAll.setBounds(250, 190, 50, 20);
               panelGeneralDetail.add(rdbtnReceiptStatusAll);
               rdbtnReceiptStatusPrinted = new JRadioButton("Printed");
               rdbtnReceiptStatusPrinted.setFont(new Font("Tahoma", Font.ITALIC,
                         13));
               rdbtnReceiptStatusPrinted.setBounds(310, 190, 85, 20);
               panelGeneralDetail.add(rdbtnReceiptStatusPrinted);
               rdbtnReceiptStatusNonPrinted = new JRadioButton("Non Printed");
               rdbtnReceiptStatusNonPrinted.setFont(new Font("Tahoma",
                         Font.ITALIC, 13));
               rdbtnReceiptStatusNonPrinted.setBounds(400, 190, 120, 20);
               panelGeneralDetail.add(rdbtnReceiptStatusNonPrinted);
               final ButtonGroup rdbtngrpReceiptStatus = new ButtonGroup();
               rdbtngrpReceiptStatus.add(rdbtnReceiptStatusAll);
               rdbtngrpReceiptStatus.add(rdbtnReceiptStatusPrinted);
               rdbtngrpReceiptStatus.add(rdbtnReceiptStatusNonPrinted);
               rdbtnReportStatusAll = new JRadioButton("All");
               rdbtnReportStatusAll.setSelected(true);
               rdbtnReportStatusAll.setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnReportStatusAll.setBounds(250, 220, 50, 20);
               panelGeneralDetail.add(rdbtnReportStatusAll);
               rdbtnReportStatusPrinted = new JRadioButton("Printed");
               rdbtnReportStatusPrinted
                         .setFont(new Font("Tahoma", Font.ITALIC, 13));
               rdbtnReportStatusPrinted.setBounds(310, 220, 85, 20);
               panelGeneralDetail.add(rdbtnReportStatusPrinted);
               rdbtnReportStatusNonPrinted = new JRadioButton("Non Printed");
               rdbtnReportStatusNonPrinted.setFont(new Font("Tahoma", Font.ITALIC,
                         13));
               rdbtnReportStatusNonPrinted.setBounds(400, 220, 120, 20);
               panelGeneralDetail.add(rdbtnReportStatusNonPrinted);
               final ButtonGroup rdbtngrpReportStatus = new ButtonGroup();
               rdbtngrpReportStatus.add(rdbtnReportStatusAll);
               rdbtngrpReportStatus.add(rdbtnReportStatusPrinted);
               rdbtngrpReportStatus.add(rdbtnReportStatusNonPrinted);
               lblWeightTo = new JLabel("To ");
               lblWeightTo.setHorizontalAlignment(SwingConstants.RIGHT);
               lblWeightTo.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblWeightTo.setBounds(430, 280, 50, 20);
               panelGeneralDetail.add(lblWeightTo);
               lblMoistureTo = new JLabel("To ");
               lblMoistureTo.setHorizontalAlignment(SwingConstants.RIGHT);
               lblMoistureTo.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblMoistureTo.setBounds(430, 310, 50, 20);
               panelGeneralDetail.add(lblMoistureTo);
               lblOilContentTo = new JLabel("To ");
               lblOilContentTo.setHorizontalAlignment(SwingConstants.RIGHT);
               lblOilContentTo.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblOilContentTo.setBounds(430, 340, 50, 20);
               panelGeneralDetail.add(lblOilContentTo);
               lblSampleRateTo = new JLabel("To ");
               lblSampleRateTo.setHorizontalAlignment(SwingConstants.RIGHT);
               lblSampleRateTo.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblSampleRateTo.setBounds(430, 370, 50, 20);
               panelGeneralDetail.add(lblSampleRateTo);
               txtOilContentFrom = new JTextField();
               txtOilContentFrom.setColumns(10);
               txtOilContentFrom.setBounds(250, 340, 170, 20);
               panelGeneralDetail.add(txtOilContentFrom);
               txtSampleRateFrom = new JTextField();
               txtSampleRateFrom.setColumns(10);
               txtSampleRateFrom.setBounds(250, 370, 170, 20);
               panelGeneralDetail.add(txtSampleRateFrom);
               txtOilContentTo = new JTextField();
               txtOilContentTo.setColumns(10);
               txtOilContentTo.setBounds(490, 340, 170, 20);
               panelGeneralDetail.add(txtOilContentTo);
               txtSampleRateTo = new JTextField();
               txtSampleRateTo.setColumns(10);
               txtSampleRateTo.setBounds(490, 370, 170, 20);
               panelGeneralDetail.add(txtSampleRateTo);
               lblReceiptPrintStatus = new JLabel("Receipt Print Status ");
               lblReceiptPrintStatus.setHorizontalAlignment(SwingConstants.RIGHT);
               lblReceiptPrintStatus.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblReceiptPrintStatus.setBounds(30, 190, 200, 20);
               panelGeneralDetail.add(lblReceiptPrintStatus);
               lblReportPrintStatus = new JLabel("Report Print Status ");
               lblReportPrintStatus.setHorizontalAlignment(SwingConstants.RIGHT);
               lblReportPrintStatus.setFont(new Font("Tahoma", Font.ITALIC, 13));
               lblReportPrintStatus.setBounds(30, 220, 200, 20);
               panelGeneralDetail.add(lblReportPrintStatus);
               // Buttons
               btnClear = new JButton("Clear");
               btnClear.setBounds(745, 317, 100, 30);
               panelGeneralDetail.add(btnClear);
               btnClear.setFont(new Font("Tahoma", Font.ITALIC, 13));
               btnSearch = new JButton("Search");
               btnSearch.setBounds(745, 360, 100, 30);
               panelGeneralDetail.add(btnSearch);
               btnSearch.setFont(new Font("Tahoma", Font.ITALIC, 13));
               btnSearch.addActionListener(new ActionListener() {
                    public void actionPerformed(ActionEvent arg0) {
                         searchSample();
          } catch (Exception e) {
               throw new Exception("Error occured while generating data for screen. "
                                   + e.getMessage(), e);
     private void searchSample() {}
}

1. wall of unformatted code. Use \ tags when posting code.
2. you're not even asking a question. You're just saying "it doesn't work" and then you dump the code. What do you expect? That people now go to debug it for you?                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • How to make the panel with scrollpane transparent?

    Thanks Camicker for your help, it solves the problem but i got a new problem i.e. i want to make that panel with scrollbar transparent for this i have tried setOpaqe(false) for both scrollpane and panel but it doesn't work. do u have any solution?

    I think camickr (not Camicker) already told you to set the opacity of the JScrollPane's viewport.
    Spend just a few minutes with the JScrollPane API and you'll find an exploded view showing the components that make up a scroll pane.
    db

  • How to make the LV front panel controls the current value through the program is set as the default value when the next time you open?

    How to make the LV front panel controls the current value through the programis set as the default value when the next time you open?
    1110340051 

    Try this: Re: How to make a VI remember the latest control value?
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • How to make the Layers Panel float?

    Hello
    Can anyone show me how to make the Layers Panel in Photoshop Elements 13 float? - it seems to be fixed to the canvas window.
    Thanks.

    Hi,
    Click on triangle button of 'More' and choose custom workspace

  • How to make the whole movie stop

    Hi,
    I want to make a button open a new scene,
    I have that working but it keeps looping,
    How to make the whole movie stop at the end of scene 2,
    Ive tried putting stop(); but that brings errors,
    I want to stop the whole movie, How would i do this?

    click an empty part of the stage in the frame where you want the timeline to stop and in the actions panel type:
    stop();

  • How to make the  buttons same size on the toolbar

    Hi All,
    Can anyone please tell me how to make the size of buttons on the toolbar to be same .
    And i also want to add combo box at the right side of my menubar with prefered size.
    Please send me the solution if anyone knows . Thanks in advance.
    Regards,
    Shankar.

    how to make the size of buttons on the toolbar to be same Create a panel with a GridLayout. Add the buttons to the panel then add the panel to the menubar.
    add combo box at the right side of my menubar Read this section from the Swing tutorial on [url http://java.sun.com/docs/books/tutorial/uiswing/components/menu.html]How to Use Menu Bars for an example.

  • How to make s:Panel middle in Flex4

    When I use <mx:Panel>,I find <mx:Panel> replaced by <s:Panel>.I can make <mx:Panel> middle by using following parameter:
    paddingTop="10"
    paddingLeft="10"
    layout="vertical"
    horizontalAlign="center"
    verticalAlign="middle"
    Then I use <s:Panel>,but I don't know how to make <s:Panel> middle both horizon and vertical. How to do it?
    Thanks.

    Please try:  horizontalCenter="0" in the s:Panel.

  • How to make the table scalable inside a tap control?

    Hi,
    Does anyone know how to make the table scalable inside a tap control in LabWindow CVI? I see that there is option for a panel to scale contents on resize, but not available for a tab control. Any ideas?
    Thanks a lot!
    Weiming
    Solved!
    Go to Solution.

    Hi SGIE,
    you have posted a LV-related question to the LabWindows/CVI forum: you should post it in the LabVIEW forum instead.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • I cannot figure out how to make the text larger on an incoming email.  The finger method doesn't work and I cannot find any toolbar with which to do it.  I could find nothing in settings also.  Plese help and thank you.

    I cannot figure out how to make the text larger in a received email.  The finger method doesn't work and I can find no tool bar as I can for composing emails.  I can find nothing in settings.  Please help and thank you in advance.

    Hi there,
    Download a piece of software called TinkerTool - that might just solve your problem. I have used it myself to change the system fonts on my iMac. It is software and not an app.
    Good wishes,
    John.

  • In firefox 4 RC, some addons installed suddenly disappear, but checking the profile, some of the missing addons related files are still here, how to make the addons back?

    I use firefox 4 form beta 9 to RC (zh) now and there are also firefox 3.6 installed in computer. One day when I open Fx 4 RC, some (actually a lot but not all) of the adoons just disappear. When I check on about:addons page, some addons installed do not appear in the list.
    The addons '''REMAINED''' including:
    * addons I already used in Fx 3.6 (like webmail notifie , xmarks)
    * ''addons only can use in Fx 4'' (like Open Web Apps for Firefox).
    The addons '''DISAPPEARED''' including:
    * addons I already used in Fx 3.6 (like yoono)
    * '' addons installed when using Fx 4'' (like updatescanner, Thumbnail Zoom).
    But when I check the profile(by Help > Troubleshooting Information>Open Containing Folder) , some (not sure is it all) of the missing addons related files are still here [lucky], so any one know how to make the missing addons back?
    Some more details:
    * This happened when i use RC for already a few days and keep on even i restart Fx and windows.
    * The bookmarks, history, search engine and even themes and icon setting are still here. [ I only sync bookmarks but not history for both xmarks and firefox sync.]
    * This addons are really '''disappeared''' but not disable only!
    * This number of addons missed, as i remember, at least 30, should be more than that number bacause some of them are installed but in disable mode.
    * I try to install back one of the addons - Stylish, the installed code are still here.
    * It is nearly an impossible mission to install every missing addons again, as it really kill my time.

    Delete the files extensions.* (extensions.rdf, extensions.cache, extensions.ini, extensions.sqlite) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry. New files will be created when required.
    See "Corrupt extension files": http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar to do a compatibility check.

  • I created a form and I'm not sure how to make the 'submit' button send me the collected information.

    Hello everybody. I am a web designer (NOT a developer)
    I created a form and I'm not sure how to make the 'submit' button send me the collected information.
    I have used phpform.org/ to custom build a submission form. Then I opened that html in dreamweaver (so that I could edit colors, fonts, and delete the phpform.org advetisement)
    Now I need to link the 'submit button' so that it will e-mail me the completed form.
    (formphp.org wants me to subscribe to a servie that I pay for in order to have the form e-mailed to myself.)
    (after I get the submit button linked to an e-mail I will pull the html of my completed form into Muse- but I don't think that is really relevent)
    I'm sure one of you can help point me in the right direction! I can't write my own code so detailed help is appreciated!
    -Brenna
    The e-mail I would like the form sent to is:
    [email protected]
    Here is the the code for my form 'as is' :
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Create a Profile</title>
    <link rel="stylesheet" type="text/css" href="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/view.css" media="all">
    <script type="text/javascript" src="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/view.js"></script>
    </head>
    <body id="main_body" >
              <img id="top" src="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/top.png" alt="">
              <div id="form_container">
                        <h1><a>Create a Profile</a></h1>
                <form id="form_836144" class="appnitro" enctype="multipart/form-data" method="post" action="">
                        <div class="form_description">
                                  <h2 align="center">Create a Tommy Lemonade Profile</h2>
                                  <p></p>
                        </div>
                          <ul >
                                              <li id="li_1" >
                        <label class="description" for="element_1">Name </label>
                        <span>
                                  <input id="element_1_1" name= "element_1_1" class="element text" maxlength="255" size="8" value=""/>
                                  <label>First</label>
                        </span>
                        <span>
                                  <input id="element_1_2" name= "element_1_2" class="element text" maxlength="255" size="14" value=""/>
                                  <label>Last</label>
                        </span>
                        </li>                    <li id="li_23" >
                        <label class="description" for="element_23">Service Provider Type </label>
                        <span>
                                  <input id="element_23_1" name="element_23_1" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_1">Barber</label>
    <input id="element_23_2" name="element_23_2" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_2">Hairstylist</label>
    <input id="element_23_3" name="element_23_3" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_3">Nail Technician</label>
    <input id="element_23_4" name="element_23_4" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_4">Massage Therapist</label>
    <input id="element_23_5" name="element_23_5" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_5">Skin Care</label>
    <input id="element_23_6" name="element_23_6" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_6">Esthetician</label>
    <input id="element_23_7" name="element_23_7" class="element checkbox" type="checkbox" value="1" />
    <label class="choice" for="element_23_7">Make Up Artist</label>
                        </span><p class="guidelines" id="guide_23"><small>Select all that apply.</small></p>
                        </li>                    <li id="li_19" >
                        <label class="description" for="element_19">Top 5 services </label>
                        <div>
                                  <textarea id="element_19" name="element_19" class="element textarea medium"></textarea>
                        </div><p class="guidelines" id="guide_19"><small>Please list your top 5 services</small></p>
                        </li>                    <li id="li_20" >
                        <label class="description" for="element_20">List all services you offer & thier starting price </label>
                        <div>
                                  <textarea id="element_20" name="element_20" class="element textarea medium"></textarea>
                        </div><p class="guidelines" id="guide_20"><small>please use a new line for each service. You can do this by pressing 'enter' after each starting price.
    </small></p>
                        </li>                    <li id="li_12" >
                        <label class="description" for="element_12">Personal Phone </label>
                        <span>
                                  <input id="element_12_1" name="element_12_1" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_12_1">(###)</label>
                        </span>
                        <span>
                                  <input id="element_12_2" name="element_12_2" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_12_2">###</label>
                        </span>
                        <span>
                                   <input id="element_12_3" name="element_12_3" class="element text" size="4" maxlength="4" value="" type="text">
                                  <label for="element_12_3">####</label>
                        </span>
                        <p class="guidelines" id="guide_12"><small>Only fill in if you want clients to be able to contact you on your personal phone line rather than the phone at your place of employment. </small></p>
                        </li>                    <li id="li_21" >
                        <label class="description" for="element_21">E-mail (Required)  </label>
                        <div>
                                  <input id="element_21" name="element_21" class="element text medium" type="text" maxlength="255" value=""/>
                        </div><p class="guidelines" id="guide_21"><small>Staff at Tommy Lemonade will use this e-mail as your primary contact information. it will also be seen by your potential clients.</small></p>
                        </li>                    <li id="li_6" >
                        <label class="description" for="element_6">Confirm your e-mail (Required)  </label>
                        <div>
                                  <input id="element_6" name="element_6" class="element text medium" type="text" maxlength="255" value=""/>
                        </div><p class="guidelines" id="guide_6"><small>Please re-type your e-mail address</small></p>
                        </li>                    <li id="li_3" >
                        <label class="description" for="element_3">Web Site </label>
                        <div>
                                  <input id="element_3" name="element_3" class="element text medium" type="text" maxlength="255" value="http://"/>
                        </div><p class="guidelines" id="guide_3"><small>If you don't have your own website feel free to link your professional Facebook, Google+ etc... </small></p>
                        </li>                    <li id="li_4" >
                        <label class="description" for="element_4">Place of employment </label>
                        <div>
                                  <input id="element_4" name="element_4" class="element text medium" type="text" maxlength="255" value=""/>
                        </div>
                        </li>                    <li id="li_2" >
                        <label class="description" for="element_2">Work Address </label>
                        <div>
                                  <input id="element_2_1" name="element_2_1" class="element text large" value="" type="text">
                                  <label for="element_2_1">Street Address</label>
                        </div>
                        <div>
                                  <input id="element_2_2" name="element_2_2" class="element text large" value="" type="text">
                                  <label for="element_2_2">Address Line 2</label>
                        </div>
                        <div class="left">
                                  <input id="element_2_3" name="element_2_3" class="element text medium" value="" type="text">
                                  <label for="element_2_3">City</label>
                        </div>
                        <div class="right">
                                  <input id="element_2_4" name="element_2_4" class="element text medium" value="" type="text">
                                  <label for="element_2_4">State / Province / Region</label>
                        </div>
                        <div class="left">
                                  <input id="element_2_5" name="element_2_5" class="element text medium" maxlength="15" value="" type="text">
                                  <label for="element_2_5">Postal / Zip Code</label>
                        </div>
                        <div class="right">
                                  <select class="element select medium" id="element_2_6" name="element_2_6">
                                  <option value="" selected="selected"></option>
    <option value="Afghanistan" >Afghanistan</option>
    <option value="Albania" >Albania</option>
    <option value="Algeria" >Algeria</option>
    <option value="Andorra" >Andorra</option>
    <option value="Antigua and Barbuda" >Antigua and Barbuda</option>
    <option value="Argentina" >Argentina</option>
    <option value="Armenia" >Armenia</option>
    <option value="Australia" >Australia</option>
    <option value="Austria" >Austria</option>
    <option value="Azerbaijan" >Azerbaijan</option>
    <option value="Bahamas" >Bahamas</option>
    <option value="Bahrain" >Bahrain</option>
    <option value="Bangladesh" >Bangladesh</option>
    <option value="Barbados" >Barbados</option>
    <option value="Belarus" >Belarus</option>
    <option value="Belgium" >Belgium</option>
    <option value="Belize" >Belize</option>
    <option value="Benin" >Benin</option>
    <option value="Bhutan" >Bhutan</option>
    <option value="Bolivia" >Bolivia</option>
    <option value="Bosnia and Herzegovina" >Bosnia and Herzegovina</option>
    <option value="Botswana" >Botswana</option>
    <option value="Brazil" >Brazil</option>
    <option value="Brunei" >Brunei</option>
    <option value="Bulgaria" >Bulgaria</option>
    <option value="Burkina Faso" >Burkina Faso</option>
    <option value="Burundi" >Burundi</option>
    <option value="Cambodia" >Cambodia</option>
    <option value="Cameroon" >Cameroon</option>
    <option value="Canada" >Canada</option>
    <option value="Cape Verde" >Cape Verde</option>
    <option value="Central African Republic" >Central African Republic</option>
    <option value="Chad" >Chad</option>
    <option value="Chile" >Chile</option>
    <option value="China" >China</option>
    <option value="Colombia" >Colombia</option>
    <option value="Comoros" >Comoros</option>
    <option value="Congo" >Congo</option>
    <option value="Costa Rica" >Costa Rica</option>
    <option value="Côte d'Ivoire" >Côte d'Ivoire</option>
    <option value="Croatia" >Croatia</option>
    <option value="Cuba" >Cuba</option>
    <option value="Cyprus" >Cyprus</option>
    <option value="Czech Republic" >Czech Republic</option>
    <option value="Denmark" >Denmark</option>
    <option value="Djibouti" >Djibouti</option>
    <option value="Dominica" >Dominica</option>
    <option value="Dominican Republic" >Dominican Republic</option>
    <option value="East Timor" >East Timor</option>
    <option value="Ecuador" >Ecuador</option>
    <option value="Egypt" >Egypt</option>
    <option value="El Salvador" >El Salvador</option>
    <option value="Equatorial Guinea" >Equatorial Guinea</option>
    <option value="Eritrea" >Eritrea</option>
    <option value="Estonia" >Estonia</option>
    <option value="Ethiopia" >Ethiopia</option>
    <option value="Fiji" >Fiji</option>
    <option value="Finland" >Finland</option>
    <option value="France" >France</option>
    <option value="Gabon" >Gabon</option>
    <option value="Gambia" >Gambia</option>
    <option value="Georgia" >Georgia</option>
    <option value="Germany" >Germany</option>
    <option value="Ghana" >Ghana</option>
    <option value="Greece" >Greece</option>
    <option value="Grenada" >Grenada</option>
    <option value="Guatemala" >Guatemala</option>
    <option value="Guinea" >Guinea</option>
    <option value="Guinea-Bissau" >Guinea-Bissau</option>
    <option value="Guyana" >Guyana</option>
    <option value="Haiti" >Haiti</option>
    <option value="Honduras" >Honduras</option>
    <option value="Hong Kong" >Hong Kong</option>
    <option value="Hungary" >Hungary</option>
    <option value="Iceland" >Iceland</option>
    <option value="India" >India</option>
    <option value="Indonesia" >Indonesia</option>
    <option value="Iran" >Iran</option>
    <option value="Iraq" >Iraq</option>
    <option value="Ireland" >Ireland</option>
    <option value="Israel" >Israel</option>
    <option value="Italy" >Italy</option>
    <option value="Jamaica" >Jamaica</option>
    <option value="Japan" >Japan</option>
    <option value="Jordan" >Jordan</option>
    <option value="Kazakhstan" >Kazakhstan</option>
    <option value="Kenya" >Kenya</option>
    <option value="Kiribati" >Kiribati</option>
    <option value="North Korea" >North Korea</option>
    <option value="South Korea" >South Korea</option>
    <option value="Kuwait" >Kuwait</option>
    <option value="Kyrgyzstan" >Kyrgyzstan</option>
    <option value="Laos" >Laos</option>
    <option value="Latvia" >Latvia</option>
    <option value="Lebanon" >Lebanon</option>
    <option value="Lesotho" >Lesotho</option>
    <option value="Liberia" >Liberia</option>
    <option value="Libya" >Libya</option>
    <option value="Liechtenstein" >Liechtenstein</option>
    <option value="Lithuania" >Lithuania</option>
    <option value="Luxembourg" >Luxembourg</option>
    <option value="Macedonia" >Macedonia</option>
    <option value="Madagascar" >Madagascar</option>
    <option value="Malawi" >Malawi</option>
    <option value="Malaysia" >Malaysia</option>
    <option value="Maldives" >Maldives</option>
    <option value="Mali" >Mali</option>
    <option value="Malta" >Malta</option>
    <option value="Marshall Islands" >Marshall Islands</option>
    <option value="Mauritania" >Mauritania</option>
    <option value="Mauritius" >Mauritius</option>
    <option value="Mexico" >Mexico</option>
    <option value="Micronesia" >Micronesia</option>
    <option value="Moldova" >Moldova</option>
    <option value="Monaco" >Monaco</option>
    <option value="Mongolia" >Mongolia</option>
    <option value="Montenegro" >Montenegro</option>
    <option value="Morocco" >Morocco</option>
    <option value="Mozambique" >Mozambique</option>
    <option value="Myanmar" >Myanmar</option>
    <option value="Namibia" >Namibia</option>
    <option value="Nauru" >Nauru</option>
    <option value="Nepal" >Nepal</option>
    <option value="Netherlands" >Netherlands</option>
    <option value="New Zealand" >New Zealand</option>
    <option value="Nicaragua" >Nicaragua</option>
    <option value="Niger" >Niger</option>
    <option value="Nigeria" >Nigeria</option>
    <option value="Norway" >Norway</option>
    <option value="Oman" >Oman</option>
    <option value="Pakistan" >Pakistan</option>
    <option value="Palau" >Palau</option>
    <option value="Panama" >Panama</option>
    <option value="Papua New Guinea" >Papua New Guinea</option>
    <option value="Paraguay" >Paraguay</option>
    <option value="Peru" >Peru</option>
    <option value="Philippines" >Philippines</option>
    <option value="Poland" >Poland</option>
    <option value="Portugal" >Portugal</option>
    <option value="Puerto Rico" >Puerto Rico</option>
    <option value="Qatar" >Qatar</option>
    <option value="Romania" >Romania</option>
    <option value="Russia" >Russia</option>
    <option value="Rwanda" >Rwanda</option>
    <option value="Saint Kitts and Nevis" >Saint Kitts and Nevis</option>
    <option value="Saint Lucia" >Saint Lucia</option>
    <option value="Saint Vincent and the Grenadines" >Saint Vincent and the Grenadines</option>
    <option value="Samoa" >Samoa</option>
    <option value="San Marino" >San Marino</option>
    <option value="Sao Tome and Principe" >Sao Tome and Principe</option>
    <option value="Saudi Arabia" >Saudi Arabia</option>
    <option value="Senegal" >Senegal</option>
    <option value="Serbia and Montenegro" >Serbia and Montenegro</option>
    <option value="Seychelles" >Seychelles</option>
    <option value="Sierra Leone" >Sierra Leone</option>
    <option value="Singapore" >Singapore</option>
    <option value="Slovakia" >Slovakia</option>
    <option value="Slovenia" >Slovenia</option>
    <option value="Solomon Islands" >Solomon Islands</option>
    <option value="Somalia" >Somalia</option>
    <option value="South Africa" >South Africa</option>
    <option value="Spain" >Spain</option>
    <option value="Sri Lanka" >Sri Lanka</option>
    <option value="Sudan" >Sudan</option>
    <option value="Suriname" >Suriname</option>
    <option value="Swaziland" >Swaziland</option>
    <option value="Sweden" >Sweden</option>
    <option value="Switzerland" >Switzerland</option>
    <option value="Syria" >Syria</option>
    <option value="Taiwan" >Taiwan</option>
    <option value="Tajikistan" >Tajikistan</option>
    <option value="Tanzania" >Tanzania</option>
    <option value="Thailand" >Thailand</option>
    <option value="Togo" >Togo</option>
    <option value="Tonga" >Tonga</option>
    <option value="Trinidad and Tobago" >Trinidad and Tobago</option>
    <option value="Tunisia" >Tunisia</option>
    <option value="Turkey" >Turkey</option>
    <option value="Turkmenistan" >Turkmenistan</option>
    <option value="Tuvalu" >Tuvalu</option>
    <option value="Uganda" >Uganda</option>
    <option value="Ukraine" >Ukraine</option>
    <option value="United Arab Emirates" >United Arab Emirates</option>
    <option value="United Kingdom" >United Kingdom</option>
    <option value="United States" >United States</option>
    <option value="Uruguay" >Uruguay</option>
    <option value="Uzbekistan" >Uzbekistan</option>
    <option value="Vanuatu" >Vanuatu</option>
    <option value="Vatican City" >Vatican City</option>
    <option value="Venezuela" >Venezuela</option>
    <option value="Vietnam" >Vietnam</option>
    <option value="Yemen" >Yemen</option>
    <option value="Zambia" >Zambia</option>
    <option value="Zimbabwe" >Zimbabwe</option>
                                  </select>
                        <label for="element_2_6">Country</label>
              </div>
                        </li>                    <li id="li_5" >
                        <label class="description" for="element_5">Work Phone </label>
                        <span>
                                  <input id="element_5_1" name="element_5_1" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_5_1">(###)</label>
                        </span>
                        <span>
                                  <input id="element_5_2" name="element_5_2" class="element text" size="3" maxlength="3" value="" type="text"> -
                                  <label for="element_5_2">###</label>
                        </span>
                        <span>
                                   <input id="element_5_3" name="element_5_3" class="element text" size="4" maxlength="4" value="" type="text">
                                  <label for="element_5_3">####</label>
                        </span>
                        <p class="guidelines" id="guide_5"><small>Please enter the phone number of the establishment where you work if applicable. </small></p>
                        </li>                    <li id="li_22" >
                        <label class="description" for="element_22">Schedule </label>
                        <div>
                                  <textarea id="element_22" name="element_22" class="element textarea medium"></textarea>
                        </div><p class="guidelines" id="guide_22"><small>Please feel free to include your schedule. What days you work, when are you days off, be sure to include your hours available (example: 9am-7pm) or if you have any 'by appointment only' days. </small></p>
                        </li>                    <li id="li_7" >
                        <label class="description" for="element_7">Profile Picture </label>
                        <div>
                                  <input id="element_7" name="element_7" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_8" >
                        <label class="description" for="element_8">Portfolio image  </label>
                        <div>
                                  <input id="element_8" name="element_8" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_9" >
                        <label class="description" for="element_9">Portfolio image  </label>
                        <div>
                                  <input id="element_9" name="element_9" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_10" >
                        <label class="description" for="element_10">Portfolio image  </label>
                        <div>
                                  <input id="element_10" name="element_10" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_11" >
                        <label class="description" for="element_11">Portfolio image  </label>
                        <div>
                                  <input id="element_11" name="element_11" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_13" >
                        <label class="description" for="element_13">Portfolio image  </label>
                        <div>
                                  <input id="element_13" name="element_13" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_14" >
                        <label class="description" for="element_14">Portfolio image  </label>
                        <div>
                                  <input id="element_14" name="element_14" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_15" >
                        <label class="description" for="element_15">Portfolio image  </label>
                        <div>
                                  <input id="element_15" name="element_15" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_16" >
                        <label class="description" for="element_16">Portfolio image  </label>
                        <div>
                                  <input id="element_16" name="element_16" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_17" >
                        <label class="description" for="element_17">Portfolio image  </label>
                        <div>
                                  <input id="element_17" name="element_17" class="element file" type="file"/>
                        </div> 
                        </li>                    <li id="li_18" >
                        <label class="description" for="element_18">Portfolio image  </label>
                        <div>
                                  <input id="element_18" name="element_18" class="element file" type="file"/>
                        </div> 
                        </li>
                            <li class="buttons">
                              <input type="hidden" name="form_id" value="836144" />
                        <input id="saveForm" class="button_text" type="submit" name="submit" value="Submit" />
                            </li>
                          </ul>
                        </form>
                        <div id="footer">
                        </div>
              </div>
              <img id="bottom" src="file:///C|/Users/Tommy/AppData/Local/Temp/Temp1_form.zip/form/bottom.png" alt="">
              </body>
    </html>

    I'm afraid not.    It's not rocket science but you need to do some coding. 
    You'll need to find a script (php) and save it to your local site folder.  Then reference the script in your form's action attribute like so.
         <form action="path/form-to-email-script.php" >
    The input fields in your HTML form need to exactly match the script variables. 
    I'm  assuming you're hosted on a Linux server which uses PHP code.  Linux servers are also case sensitive, so upper case names are not the same as lower case names.  It's usually best to use all lower case names in your form and script to avoid confusion.
    Related Links:
    Formm@ailer PHP from DB Masters
    http://dbmasters.net/index.php?id=4
    Tectite
    http://www.tectite.com/formmailpage.php
    If this is all a bit beyond your skill set, look at:
    Wufoo.com (on-line form service)
    http://wufoo.com/
    Nancy O.

  • How to make the text in sub-division

    Hi,
    I am usign text  module in my adobe forms.
    Text in text module contains sub-divisions as a), b) and c). Each sub-division are in a separate line.
    While in pdf, all the sub-division combines and comes a single paragraph.
    What  would be the problem for this issue? Any Idea?
    May I know how to make the text in sub-division as in text  module?
    Thanks,
    Thiyagu
    Edited by: Thiyagu on Oct 26, 2009 7:08 PM

    Hello, experiment with Object - Field tab. Do you have your text field with "allow multiple lines" checked? I guess so. And what about the field format? Plain text or Rich text? Please try:)) Regards, Otto

  • How to make the dblink and what is the use of this

    plz any body tell me "how to make the dblink and what is the use of this"
    sujit

    Do you understand how to make the Slider work using code to read its value?  You will need to look into that in order to do this.
    What you can do is have the yello rectangle be a movieclip that sits over the red rectangle and use the Slider to control the yellow rectangle's alpha property from 0 to 1.  That way the yellow will gradually fade as you slide.
    What you will then need  to do is figure out how to make the number of dots that appear reduce from 15 to 8 over the same range of the slider.  You need to use the fractional value from the slider to decide how many dots either appear or do not appear.
    You should not start new postings for the same topics that you arlready have postings for.  Doing so in the future might result in them being removed.

  • How to make the vendor column have figure in GRIR line item with RE document type?

    Dear Experts,
         Could you tell me how to make the vendor column have figure in GRIR line item whose document type is RE?
         Thanks!
    Xinling Zhang

    Hi ,
    You are using FAGLL03 .
    FAGLL03 report vendor code is blank
    vendor number in new FAGLL03 tcode (offsetting account information)
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30b96fed-eb5d-2e10-1792-f3ff9f65df8a?QuickLink=index&…
    Also check OSS note
    Note 112312 - Line item: Display of offsetting a/c information
    Note 1034354 - FAGLL03: Display of offsetting account information
    Many Thanks

  • How to make the Page UP and down work on a table control screen?

    Dear all,
    Can some one suggest how to make the table control screen work with Page Up and Page down controls.
    when I press on Page down it works for the first time and after that i need to select the table to make it work the second time. it there a way I can make the index on the screen stay on the table control at all times.
    Regard,
    Vj

    Take this code as a referance:
    Sample code for vertical scrolling in PAI processing will look like this:
    MODULE user_command_XXXX INPUT. (XXXX is screen no.)
      CASE ok_code.
        WHEN 'P--'.
          CLEAR ok_code.
          PERFORM paging USING 'P--'.
        WHEN 'P-'.
          CLEAR ok_code.
          PERFORM paging USING 'P-'.
        WHEN 'P+'.
          CLEAR ok_code.
          PERFORM paging USING 'P+'.
        WHEN 'P++'.
          CLEAR ok_code.
          PERFORM paging USING 'P++'.
    *&      Form  PAGING
    *       Form to do scrolling for screen XXXX
    *      -->CODE   OKCODE value (P--, P-, P+, P++ )
    FORM paging USING code.
      DATA: i TYPE i,
            j TYPE i.
      CASE code.
        WHEN 'P--'. <table control name>-top_line = 1.
        WHEN 'P-'.
          <table control name>-top_line =
                  <table control name>-top_line - line_count.
          IF <table control name>-top_line LE 0.
            <table control name>-top_line = 1.
          ENDIF.
        WHEN 'P+'.
          i = <table control name>-top_line + line_count.
          j = <table control name>-lines - line_count + 1.
          IF j LE 0. j = 1. ENDIF.
          IF i LE j.
            <table control name>-top_line = i.
          ELSE.
            <table control name>-top_line = j.
          ENDIF.
        WHEN 'P++'.
          <table control name>-top_line =
                 <table control name>-lines - line_count + 1.
          IF <table control name>-top_line LE 0.
            <table control name>-top_line = 1.
          ENDIF.
      ENDCASE.
    ENDFORM.                               " PAGING
    Regards,
    Ravi

Maybe you are looking for