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

Similar Messages

  • 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?                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to make an object with a transparent background

    i know this should be simple, but my use of photoshop has really fallen off and i can't recall how to do this.
    i have masked an object from a jpg file and pasted it into a new document created with background contents transparent and i do have the checkered background. yet, when i save this document, the background appears to be filled in with white. is it really white or is it really transparent. i even created a second layer to paste the object into and saved as a pdf, but the same thing happens.
    if i flatten the image, the background also becomes white.
    basic stuff, i know, but i don't remember and the help isn't helping me.

    Tiff supports transparency and is a widely-accepted format. You may want to try giving the printer that format.
    Gif and png can only be saved if you're using RGB images. If they are not RGB, then save as TIFF and you should be fine.
    If you actually are missing a bunch of plug-ins and/or file format options, it's possible that they have somehow been deleted. You'd have to reinstall Photoshop to get them back, or copy the contents of the plug-ins folder from another computer. SFW is a plug-in that resides within an import/export folder in the plug-ins folder, so it does sound like you are missing some things that need to be re-installed.

  • How to make the eyedropper sample non-transparent color of a transparant layer?

    I have an image of a flower I am trying to paint.
    I put the flower as the top layer at 50% opacity to use as a guide.
    Then I am trying to paint on a layer below that.
    I would like to be able to use the eyedropper on the original image but for it to pick up the full color and not the %50 opacity version of the color.
    I saw this done in a demo but can't seem to figure it out.
    I tried setting the eyedropper options to "All layers no adjustments" but it's still only picking up the lighter version of the color.
    Any suggestions?

    Another option might be to make a fully transparent layer on top to paint on, and get your color from a fully opaque layer below.  I have painted with the Mixer Brush quite effectively this way, though it's not incredibly speedy.
    -Noel

  • How to make the sql with unions to run faster

    I have the following sql which takes long time to run in sqlplus. This is in oracle 10, can I use hints to speed up the process. Union all brings all rows, but I want to eliminate the duplicates.
    select A.EMPLID,S.OPRID,A.LASTUPDDTTM,A.EMPL_RCD_NBR,A.LAST_NAME,A.FIRST_NAME,A.DEPTID,B.COMPANY,B.PAYGROUP,B.PAY_END_DT,B.OFF_CYCLE,
    B.ERNCD_REG_HRS,B.REG_HRS,0,B.REG_HRLY_EARNS
    from PS_EMPLOYEES A,PS_PAY_EARNINGS B,PS_SCRTY_TBL_DEPT S,PSTREENODE T
    where S.ACCESS_CD = 'Y' and T.SETID = ' ' and T.TREE_NAME = 'DEPT_SECURITY'
    and T.EFFDT = S.TREE_EFFDT and T.TREE_NODE = A.DEPTID and T.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END
    and not exists (select 'X' from PS_SCRTY_TBL_DEPT S1
    where S.OPRID = S1.OPRID
    and S.TREE_NODE_NUM <> S1.TREE_NODE_NUM
    and T.TREE_NODE_NUM between S1.TREE_NODE_NUM
    and S1.TREE_NODE_NUM_END
    and S1.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END)
    and B.EMPLID = A.EMPLID and B.EMPL_RCD_NBR = A.EMPL_RCD_NBR
    and B.SINGLE_CHECK_USE IN ('C', 'N') and (B.REG_HRS<>0 or B.REG_HRLY_EARNS<>0)
    and B.PAY_LINE_STATUS in ('C','F')
    union
    select A.EMPLID,S.OPRID,A.LASTUPDDTTM,A.EMPL_RCD_NBR,A.LAST_NAME,A.FIRST_NAME,A.DEPTID,B.COMPANY,B.PAYGROUP,B.PAY_END_DT,B.OFF_CYCLE,
    B.ERNCD_REG_HRS,B.REG_HRS,0,B.REG_EARNS
    from PS_EMPLOYEES A,PS_PAY_EARNINGS B,PS_SCRTY_TBL_DEPT S,PSTREENODE T
    where S.ACCESS_CD = 'Y' and T.SETID = ' ' and T.TREE_NAME = 'DEPT_SECURITY'
    and T.EFFDT = S.TREE_EFFDT and T.TREE_NODE = A.DEPTID and T.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END
    and not exists (select 'X' from PS_SCRTY_TBL_DEPT S1
    where S.OPRID = S1.OPRID
    and S.TREE_NODE_NUM <> S1.TREE_NODE_NUM
    and T.TREE_NODE_NUM between S1.TREE_NODE_NUM
    and S1.TREE_NODE_NUM_END
    and S1.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END)
    and B.EMPLID = A.EMPLID and B.EMPL_RCD_NBR = A.EMPL_RCD_NBR
    and B.SINGLE_CHECK_USE IN ('C', 'N') and (B.REG_HRS<>0 or B.REG_HRLY_EARNS<>0)
    and B.PAY_LINE_STATUS in ('C','F')
    union
    select A.EMPLID,S.OPRID,A.LASTUPDDTTM,A.EMPL_RCD_NBR,A.LAST_NAME,A.FIRST_NAME,A.DEPTID,B.COMPANY,B.PAYGROUP,B.PAY_END_DT,B.OFF_CYCLE,
    B.ERNCD_OT_HRS,B.OT_HRS,0,B.OT_HRLY_EARNS
    from PS_EMPLOYEES A,PS_PAY_EARNINGS B,PS_SCRTY_TBL_DEPT S,PSTREENODE T
    where S.ACCESS_CD = 'Y' and T.SETID = ' ' and T.TREE_NAME = 'DEPT_SECURITY'
    and T.EFFDT = S.TREE_EFFDT and T.TREE_NODE = A.DEPTID and T.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END
    and not exists (select 'X' from PS_SCRTY_TBL_DEPT S1
    where S.OPRID = S1.OPRID
    and S.TREE_NODE_NUM <> S1.TREE_NODE_NUM
    and T.TREE_NODE_NUM between S1.TREE_NODE_NUM
    and S1.TREE_NODE_NUM_END
    and S1.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END)
    and B.EMPLID = A.EMPLID and B.EMPL_RCD_NBR = A.EMPL_RCD_NBR
    and B.SINGLE_CHECK_USE IN ('C', 'N')
    and (B.OT_HRS<>0 or B.OT_HRLY_EARNS<>0)
    union
    select
    A.EMPLID,S.OPRID,A.LASTUPDDTTM,A.EMPL_RCD_NBR,A.LAST_NAME,A.FIRST_NAME,A.DEPTID,B.COMPANY,B.PAYGROUP,B.PAY_END_DT,B.OFF_CYCLE,
    C.ERNCD,C.OTH_HRS,C.OTH_PAY,C.OTH_EARNS
    from PS_EMPLOYEES A,PS_PAY_EARNINGS B,PS_PAY_OTH_EARNS C,PS_SCRTY_TBL_DEPT S,PSTREENODE T
    where S.ACCESS_CD = 'Y' and T.SETID = ' ' and T.TREE_NAME = 'DEPT_SECURITY'
    and T.EFFDT = S.TREE_EFFDT and T.TREE_NODE = A.DEPTID and T.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END
    and not exists (select 'X' from PS_SCRTY_TBL_DEPT S1
    where S.OPRID = S1.OPRID
    and S.TREE_NODE_NUM <> S1.TREE_NODE_NUM
    and T.TREE_NODE_NUM between S1.TREE_NODE_NUM
    and S1.TREE_NODE_NUM_END
    and S1.TREE_NODE_NUM between S.TREE_NODE_NUM
    and S.TREE_NODE_NUM_END)
    and B.EMPLID = A.EMPLID and B.EMPL_RCD_NBR = A.EMPL_RCD_NBR
    and C.COMPANY = B.COMPANY and C.PAYGROUP = B.PAYGROUP
    and C.PAY_END_DT = B.PAY_END_DT and C.OFF_CYCLE = B.OFF_CYCLE
    and C.PAGE_NBR = B.PAGE_NBR and C.LINE_NBR = B.LINE_NBR
    and C.ADDL_NBR = B.ADDL_NBR and B.SINGLE_CHECK_USE IN ('C', 'N')
    and (C.OTH_HRS<>0 or C.OTH_PAY<>0 or C.OTH_EARNS<>0)
    and B.PAY_LINE_STATUS in ('C','F')

    UNION will eliminate the duplicates. If you are seeing rows that look like duplicates, there must be something different about them that you are missing.
    If there is some set of rows that is common to all of the UNION queries and expensive to retrieve, you might try subquery factoring, e.g:
    WITH common_set AS
        ( SELECT somecols
          FROM   sometab x, othertab y
          WHERE  y.key = x.key
          AND    etc )
    SELECT a,b,c
    FROM   common_set c, table1 t
    WHERE  t.key = c.key
    UNION
    SELECT a,b,c
    FROM   common_set c, table2 t
    WHERE  t.key = c.key
    UNION
    SELECT a,b,c
    FROM   common_set c, table2 t
    WHERE  t.key = c.keyThe usual advice applies for tuning requests applies though:
    <ul><li>{thread:id=863295}</li>
    <li>{thread:id=501834}</li>
    <li>Troubleshooting Bad Execution Plans</li>
    <li>Writing Good SQL</li></ul>

  • How to make the collection with fetched rows process dependant

    Hello,
    I have the following problem.
    A page containing some select lists narrowing the tabular form selection. In this tabular form I have an edit button that goes to another "detail" page for editing the selected record. Now I want to put next and previous buttons on this detail page but the should only take the records into account select on the master by the select lists. For the moment I get all records from the table.
    How can I manage that.
    Second question. Is there a way to highlight the record you were editing when you navigate back to the "master" page?
    thanks for the help
    No one a solution ?
    Erwin
    Message was edited by:
    Erwin L

    This is your third posting on this topic.
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    We don't have access to your database so the code can't be executed.

  • How to merge the Panel with another Panel to One Panel?

    As Title!!

    i will give it a shot. by no means do i say it is correct being a beginner myself
    Panel aPanel = new Panel();
    Panel anotherPanel = new Panel();
    Panel mythirdPanel = new Panel();
    aPanel.add(anotherPanel);
    aPanel.add(myThirdPanel);
    this should create one panel called aPanel with two panels inside - another Panel first, followed by mythirdPanel second. This should be in FlowLayout pattern as that is default unless specified.
    That is my guess and my shot.
    8)

  • How to make the playlist with all purchased songs

    I accidentally deleted the puchased playlist. How do I get it back?
    Thanks,
    Austin

    Hey OscarDeLaGrouch,
    Thanks for the question. You stated that you wish to play all of your songs at random. Shuffling might be the tool you are looking for:
    iTunes 11 for Windows: Ways to play songs
    http://support.apple.com/kb/PH12331
    Shuffle or repeat songs
    Do any of the following:
    - Turn shuffle on or off: Click the Shuffle button
    Shuffle is on when the arrows are blue
    Thanks,
    Matt M.

  • How to make the list code visible?

    Dear All Experts,
         How to make the list with A1 and so on visible?
         Pls refer to below screenshot:
    Thanks!

    Dear All,
         I already find it.
    Thanks!

  • Has anyone figured out how to make the Yamaha 01V96i mixer work with Logic 9.1.8

    Has anyone figured out how to make the Yamaha 01V96i mixer work with Logic 9.1.8 as a control surface ?

    In YAMAHA01v96i:
    Go to DIO/SETUP select Generic DAW. Go to MIDI settings page and set the desired port (personally I use Number 1), Select the same audio frequency you use in your DAW (I use 44.1KhZ)...at this point You should save a scene in you 01V96i to avoid to repeat all the procedure again.
    Open studio manager, go to patch and set the input port from 17 to 32 respectively to USB1-USB16 (this will give you the return from you DAW to the 01v96i
    Save again the scene overwriting the old one.
    in LOGIC
    Click on preferences, select Audio then select 01v96i, then click on control surface and select Mackie design Baby HUI and in the midi session set the same port that you've been setting on the Yamaha 01V96i (Port 1 if you follow this example).
    That's more or less it.
    It worked for me...so far

  • 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 can I make the popup with empty fileds and create new record?

    I would like to use a popup to create new record.
    I created a af:popup by drag and drop a VO from data control to jsff. then, I created a button and place a af:showPopupBehavior. I was able to popup window by click the button.
    however, the window filled with the information from the 1st record. and when I select a record in table and click popup, the popup is filled with that record.
    How can I make the popup with empty fileds and create new record by saving the popup?
    Thanks

    You can have edit and new buttons, in the PopupFetchEvent identify button source (using popupFetchEvent.getLaunchSourceClientId()) if new button clicked clear the binding using below code.
    If you want to see empty fields, in the popup PopupFetchEvent clear the input component bindings.
    resetBindingValue("#{bindings.<componentid>.inputValue}", null);
        public static void resetBindingValue(String expression, Object newValue) {
            FacesContext ctx = FacesContext.getCurrentInstance();
            Application app = ctx.getApplication();
            ExpressionFactory elFactory = app.getExpressionFactory();
            ELContext elContext = ctx.getELContext();
            ValueExpression valueExp = elFactory.createValueExpression(elContext,expression,Object.class);
            Class bindClass = valueExp.getType(elContext);
            valueExp.setValue(elContext,newValue);
        }

  • I am From Asia, Malaysia. I'm still was a student, I would like to purchase a Macbook at online With Student price. How I make the payment at online?? Am I able to used my dad's credit card?

    I am From Asia, Malaysia. I'm still was a student, I would like to purchase a Macbook at online with student price. How I make the payment at online?? Am I able to used my dad's credit card? or any proof?? Emergency ***

    http://store.apple.com/my/browse/home/education_routing
    If you have further questions about the policies and procedures for ordering, call the Malaysian Apple Store at 1800-80-6419. Everyone here is just a fellow user and cannot speak for Apple.
    Regards.

  • I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    It may be due to Continuity
    The following quote is from  Connect your iPhone, iPad, and iPod touch using Continuity
    Turn off iPhone cellular calls
    To turn off iPhone Cellular Calls on a device, go to Settings > FaceTime and turn off iPhone Cellular Calls.

  • 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

Maybe you are looking for