Dual mon  jframe minimizes on 2nd when click on 1st

Hi, i am kinda new to java. This is what i try to do : display a jpg image full screen on the 2nd monitor. It seemed ok at first, but when i did a mouse click on the 1st monitor, the full screen on the 2nd got minizied. Code attached, pls help. thanks.
import java.awt.*;
import javax.swing.*;
class Test3
    void doDisplay()
        GraphicsEnvironment ge  = GraphicsEnvironment.getLocalGraphicsEnvironment();    
        GraphicsDevice[] gdlist = ge.getScreenDevices();    
        GraphicsDevice gd = gdlist[gdlist.length-1];
        GraphicsConfiguration gc = gdlist[gdlist.length-1].getDefaultConfiguration();
        JFrame frame = new JFrame("Frame");
        frame.setResizable(false);
        frame.setUndecorated(true);
        frame.setExtendedState(frame.getExtendedState() & ~frame.ICONIFIED);
        gd.setFullScreenWindow(frame);
        ImageIcon img = new ImageIcon("foo.jpg");
        Graphics2D g2 = (Graphics2D)frame.getGraphics();
        Dimension d = frame.getSize();
        g2.drawImage(img.getImage(), 0, 0, d.width, d.height, null);
        frame.setVisible(true);
        public static void main (String a[])
                Test3 test = new Test3();
                test.doDisplay();
}

what value is this statement?frame.getExtendedState() & ~frame.ICONIFIEDOne thing you can try is to ignore the mouse clicks using a GlassPane...
protected class GlassPane extends JPanel implements MouseListener, MouseMotionListener {
  public void mouseDragged(MouseEvent e) {}
  public void mouseMoved(MouseEvent e) {}
  public void mouseClicked(MouseEvent e) {}
  public void mouseEntered(MouseEvent e) {}
  public void mouseExited(MouseEvent e) {}
  public void mousePressed(MouseEvent e) {}
  public void mouseReleased(MouseEvent e) {}
// example of usage...
GlassPane glassPane = new GlassPane();
frame.setGlassPane(glassPane);
glassPane.setVisible(true);

Similar Messages

  • 2nd day w/my ipad2.  Have spent 5 hours trying to get my ipod music to play on the ipad..it has been downloaded and synced. When I click on itunes , I get a window that says "Apple mobile device service is not started."  I get music symbol when click ipod

    2nd day w/my ipad2.  Have spent 5 hours trying to get my ipod music to play on the ipad..it has been downloaded and synced. When I click on itunes , I get a window that says "Apple mobile device service is not started."  I get music symbol when click ipod.

    http://support.apple.com/kb/ts1567

  • How to make my "notepad-program" clean the textarea when clicking on "ny"

    Hi!
    I'm having a problem cleaning the textarea when clicking on "ny" (new) in the menubar. What am I doing wrong? Could someone help me solve this problem?
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class AnteckningsProgram
                        implements ActionListener{     
              static JFrame frame;
              static JTextArea textArea;
         public void skapaVisaGUI () {
              frame = new JFrame ("Anteckningsprogram");
             frame.setSize (340, 240);
             frame.setVisible (true);
             frame.setTitle ("Ra Anteckningsprogram");
             Toolkit          tk = Toolkit.getDefaultToolkit ();
             Image      bild = tk.getImage("r.png");
             frame.setIconImage(bild);
              JTextArea textArea = new JTextArea ();
             frame.add (textArea, "Center");
             JMenuBar cm = createMenuBar();       
             //frame.add(cm, BorderLayout.NORTH);     
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         public     JMenuBar     createMenuBar () {
              JMenuBar     menyBar;
              JMenu          meny;
              JMenuItem     oppna;
              JMenuItem     quit;
              JMenuItem     ny;
              menyBar = new JMenuBar ();
              JMenu arkiv = new JMenu("Arkiv");
              oppna = new JMenuItem ("Oppna");
              quit = new JMenuItem("Quit");
              ny = new JMenuItem("Ny");
              ny.setActionCommand("Ny");
              ny.addActionListener(this);
              quit.setActionCommand("Quit");
              quit.addActionListener(this);
              //arkiv.setMnemonic(KeyEvent.VK_U);
              arkiv.add(oppna);
              arkiv.addSeparator();
              arkiv.add(quit);
              arkiv.addSeparator();
              arkiv.add(ny);
              menyBar.add(arkiv);
              frame.setJMenuBar(menyBar);     
              return menyBar;     
         public void actionPerformed(ActionEvent e) {
             if ("Ny".equals(e.getActionCommand())) {
                      createTextArea();
                 //annars går vi vidare till metoden quit
                 else {
                     quit();
         protected void quit() {
                 System.exit(0);
         protected void createTextArea() {
              JTextArea textArea = new JTextArea ();
              textArea.setText("fdfdsfdfsdf");
          public static void main(String[] args) {
                  //anroppar metoden createandshowGUI
                  AnteckningsProgram ap = new AnteckningsProgram();
                  ap.skapaVisaGUI();
    }

    The basic problem here is 'scope'. The scope of an attribute is 'Java 101' by the way. I recommend you start on the basics *(<- link)* and leave GUIs aside for a while.

  • How to maintain dynamic rows with data when click on Previous button?

    Hi,
    I have 1 aspx page and divided into 3 pages using panels.Each panel has "Next" and Previous buttons
    I have created and deleted dynamic table rows when click on Add button using javascript. whenever i click on Next button it will navigate to same page of next panel.
    when i click on previous button then it goes to previous panel but whatever i have added dynamic table rows in 1st panel that got removed.
    Can u please help me for how to maintain state of dynamic table rows with entered data when click on Previous button?
    How to get dynamic table rows with entered data in previous panel when click on Previous button?
    Please find the below javascript code:
    function insertRow() {
    if (index >= 2) {
    document.getElementById('deleteRow').style.display = "inline";
    else { document.getElementById('DeleteRow').style.display = "none"; }
    var table = document.getElementById("myTable");
    var row = table.insertRow(table.rows.length);
    cell1 = row.insertCell(0);
    t1 = document.createElement("select");
    t1.options[t1.options.length] = new Option('--Select--', '0');
    t1.id = "ddlYear" + index;
    cell1.appendChild(t1);
    for (var i = 1975; i <= 2015; i++) {
    opt = document.createElement("option");
    opt.value = i;
    opt.text = i;
    t1.add(opt);
    t1.style.width = "155px";
    var cell2 = row.insertCell(1);
    t2 = document.createElement("Select");
    t2.options[t2.options.length]=new Option('--Select--','0');
    t2.options[t2.options.length]=new Option('State Board','1');
    t2.options[t2.options.length]=new Option('CBSE','2');
    t2.options[t2.options.length]=new Option('ICSE','3');
    t2.options[t2.options.length] = new Option('Others', '4');
    t2.style.width = "155px";
    t2.id = "ddlCourse" + index;
    cell2.appendChild(t2);
    var cell3 = row.insertCell(2);
    t3 = document.createElement("input");
    t3.id = "txtCity" + index;
    cell3.appendChild(t3);
    var cell4 = row.insertCell(3);
    t4 = document.createElement("input");
    t4.id = "txtInstitute" + index;
    cell4.appendChild(t4);
    var cell5 = row.insertCell(4);
    t5 = document.createElement("Select");
    t5.options[t5.options.length] = new Option('--Select--', '0');
    t5.options[t5.options.length] = new Option('English', '1');
    t5.options[t5.options.length] = new Option('Hindi', '2');
    t5.options[t5.options.length] = new Option('Telugu', '3');
    t5.options[t5.options.length] = new Option('Others', '4');
    t5.style.width = "155px";
    t5.id = "ddlMedium" + index;
    cell5.appendChild(t5);
    var cell6 = row.insertCell(5);
    t6 = document.createElement("input");
    t6.id = "txtSpecialization" + index;
    cell6.appendChild(t6);
    var cell7 = row.insertCell(6);
    t7 = document.createElement("input");
    t7.id = "txtFnl" + index;
    cell7.appendChild(t7);
    index++;
    function DeleteRow(index) {
    var table = document.getElementById("myTable");
    table.deleteRow(index);
    // if (index = 2) { alert("There is no rows added.Please add the new row"); }
    Design:
    <tr style="font-size: 12pt" id="trSecond" runat="server">
    <td colspan="3">
    <table id="myTable" width="100%" border="0">
    </table>
    <tr>
    <td colspan="3" align="right">
    <input type="button" title="Add" value="Add" onclick="insertRow();" />
    <input type="button" id="deleteRow" title="Delete" value="Delete Row" onclick="DeleteRow(this);" style="display:none" />
    </td>
    </tr>
    Thank you.

    Put the button click into an action listener and build the new frame there. The code I have below isn't exactly what you're doing (it's amazingly oversimplified), but it's probably similar enough to get your wheels turning in the right direction.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    public class sample
         public static void main(String[] args)
              JFrame frame = new JFrame("Sample");
              frame.setSize(400,400);
              Container content = frame.getContentPane();
              content.setLayout(new FlowLayout());
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              final JTextField text = new JTextField(10);
              content.add(text);
              JButton button = new JButton("Send");
              content.add(button);
              frame.setVisible(true);
              button.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent ae)
                        JFrame myframe = new JFrame("Results");
                        myframe.setSize(200,200);
                        Container mycontent = myframe.getContentPane();
                        mycontent.setLayout(new FlowLayout());
                        String mytext = text.getText();
                        JLabel label = new JLabel();
                        label.setText(String.valueOf(mytext));
                        mycontent.add(label);
                        myframe.setVisible(true);
    }

  • Initiate a command when clicking the JTabbedPane

    how can I initiate a command when the user press a tabbedPande.
    Example, say the user clicks No,1 (code below) how is it possible to System.out.println ("you have pressed No. 1)
    thanks
    import java.awt.*;
    import javax.swing.*;
    public class TestJTabbedPane1
           public static void main(String[] args)
             JFrame f = new JFrame("Test JTabbedPane");
             f.setSize(320, 150);
             JPanel pannel = new JPanel();
             JTabbedPane tabbedPane = new JTabbedPane(SwingConstants.TOP);
             JPanel p1 = new JPanel();
             JLabel titreOnglet1 = new JLabel("No. 1");
             p1.add(titreOnglet1);
             p1.setPreferredSize(new Dimension(300, 80));
             tabbedPane.addTab("p1", p1);
             JPanel p2 = new JPanel();
             JLabel titreOnglet2 = new JLabel("No. 2");
             p2.add(titreOnglet2);
             tabbedPane.addTab("p2", p2);
             tabbedPane.setOpaque(true);
             pannel.add(tabbedPane);
             f.getContentPane().add(pannel);
             f.setVisible(true);
         }

    you said "initiate a command when clicking"... and clicking typically means mouse clicks... So in that case, yes a mouse listener.
    If you mean something else besides "clicking" as "mouse clicks", then you need to clarify what you really want.
    Focus listener just checks for keyboard focus. That can be due to mouse clicks or tabbing or programattically setting it. But for JLabel, it can't by default get focus. There is a method in Component or JComponent to enable a component to be able to receive focus. JLabel might not be able to paint itself to display focus (dotted border thing) by default either. Not sure if there's a method for that, so maybe requires some subclassing and custom painting.

  • Is it me or?, Window Buttons Do Not Work When Clicked

    Is it me or?, Window Buttons Do Not Work When Clicked
    What is going on in Snow Leopard.
    It seems Window buttons (X, -, +) Do Not Always Work when clicked.
    Sometimes window does opens, closes, minimizes and often times it does not.
    You have have re click like crazy
    Message was edited by: macguitarman

    What app are you using?
    Here's something strange I've noticed in Mail a couple times.
    For some reason Mail opens several viewer windows all stacked on top of each other.
    So while click the close button does close the window, there's an identical on behind it.
    So it almost seems like clicking the close button has done nothing but it really has.
    Could this be what your seeing?
    Matt

  • How To Handle With Back Ground JOB From WEBUI When Click On "Appove"

    Hi
    How To Scheduled A Job Through ABAP Report In back end  Of CRM when i click on "Approve" Button in WEBUI  From result list.
    As per My requirement I have a Search View and Result View
    In Search View I have  Below Fields
    ITC Vendor ID    
    Claim Status
    User status (date status changed)
    Model
    Serial Number
    Date completed of Service Completion
    Based on Search Criteria I will get Result In Result View.(Suppose 10 Records I got In Result View)
    In the Result View I need to Add one Button As "Approve"
    When i Click On Approve button One Pop up Message Need to Open And In that popup window I need to Display Below Text
    "Approve  Claim Job Has Started In Background  
    Note: Only Claims Which are in Submitted  Status  Will be  Approved. you May Close This Window"
    In SAP CRM System  Back Ground Job Need To Start When Click On "Approve" Button In WEBUI .
    In the Back Ground ABAP Report which will validate based on Result List Records"
    In the Result List we may have all types of Claims which are status in "Submitted" "Pending" "Rejected" "Approve".
    I need to collect all records from Result list and validate Those Records who's Status in "Submitted
    1)Sort all the claims based on ITC Vendor ID.
    2)Grouped all the submitted claims against each ITC Vendor ID from the search result
    3)Change the status of the selected submitted claims to Approved.
    4)Displays information messages as mentioned whenever a claim is approved, the same message will be captured in the job log.
    ‘Claims <ClaimID 1>,…<ClaimID N> now approved for ITC Vendor ID’.
    5)Sending Email to each IRC.
    6)Capture all the approved claims in the below format (Format Attached "Screen Shot Attachment")
    7)Store the file in the Application Server AL11 in .csv format
    Please Find Attachement For Reference.
    1)ITC Claim Screen Shot
    2)Screen Shot For Attachment
    Thanks
    Raj

    Hi,
    You can add the following code in on approve method to show popup to the user,
    IF req_edit IS NOT BOUND. " gloabl attribute in impl class of the view
        REFRESH lt_buttons.
        lss_button-id  = 'btnyes'.
        lss_button-text = 'YES'.
        lss_button-on_click = 'YES'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        lss_button-id  = 'btnno'.
        lss_button-text = 'NO'.
        lss_button-on_click = 'NO'.
        APPEND lss_button TO lt_buttons.
        CLEAR lss_button.
        CALL METHOD comp_controller->window_manager->create_popup_2_confirm
          EXPORTING
            iv_title          = 'ATTENTION'
            iv_text           = 'Are you sure you want to edit this document?'
            iv_btncombination = '99'
            iv_custombuttons  = lt_buttons
          RECEIVING
            rv_result         = req_edit.
        req_edit->set_on_close_event( iv_event_name = 'EDIT' iv_view = me ). "#EC NOTEXT
        req_edit->open( ).
        RETURN.
      ELSE.
        lr_node ?= req_edit->get_context_node( 'OUTPUTNODE' ).
        lv_outbound = lr_node->get_event_name( ).
    *  CLEAR ptc_pricing_status.
    *    lv_outbound = req_edit->get_fired_outbound_plug( ).
        IF lv_outbound = 'YES'.
    you can use the submit report code here and you can al the validations here
        ELSE. " No
    if user clicks no nothing to do..
        ENDIF.
        CLEAR req_edit.
      ENDIF.
    Best Regards,
    Dharmakasi.

  • Cannot send email when clicking lonk on web page

    I cannot send email when clicking link on web page. 
    When I would click the link to send via email I was being directed to hotmail to open new account.
    Today the tech tried to assist me and completely messed up my email capabilities by setting up
    windows live account.
    I am thoroughly disgusted with FIOS internet services..Every time I've called them in the past month problem has been with someone else whose portal services they are using.
    I cannot send emails because all my contact information cannot be moved.
    I'm paying for FIOS internet service that is almost non existent.
    THe VZ in home agent doesn't work nor does the FIOS information site.
    My next move is to get rid of FIOS.
    They create more problems then they solve with me.

    If I understand your problem correctly, you are having trouble when clicking on a MailTo link on any webpage? What loads when you click this type of link is a setting in your browser. If you tell us what browser you are using, we can try to direct you to the setting.
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.
    "All knowledge is worth having."

  • My website is developed in angula js, when I login with the password that is saved in browser(Remember password) does not respond when click on sign in button

    When enter username & move to next field, password is shown in encrypted format when click on login/sign in button it does not get login & does not even show any error message. The same functionality works in Google Chrome browser.

    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • How to send Email to customer when clicked on hyperlink on SAP CRM web UI

    Hi all,
    I am working with SAP CRM 7.0 EHP1. I have one field named Email on Complaint description page on Web client UI. I have made the field a hyperlink by using the setter getter methods of attribute in component workbench for the component -BT120H_CPL. Now I want to send one mail to customer who have raised the complaint when clicked on the hyperlink Email through SAP CRM if possible or by using Microsoft  outlook(Microsoft outlook is default mailing server on the system).
    Please help !
    Thanks and regards,
    Kavita Chaudhary
    Mobile: 8800222151

    Hi kavitha Chaudhary,
    if you wan to send any details to outside mail id first you should get that person mail id. based on that you can send data to that mail id by using this code...
    just fallow this code in your event..
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: text               TYPE bcsy_text.
    DATA: document           TYPE REF TO cl_document_bcs.
    DATA: sender             TYPE REF TO cl_sapuser_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    DATA: bcs_exception      TYPE REF TO cx_bcs.
    DATA: sent_to_all        TYPE os_boolean.
    TRY.
    *     -------- create persistent send request ------------------------
           send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document -------------------------------
    *     create document from internal table with text
           APPEND 'Hi to all' TO text.
           document = cl_document_bcs=>create_document(
                           i_type    = 'RAW'
                           i_text    = text
                           i_length  = '12'
                           i_subject = 'test created by srinivas' ).
    *     add document to send request
           CALL METHOD send_request->set_document( document ).
            sender = cl_sapuser_bcs=>create( sy-uname ).
           CALL METHOD send_request->set_sender
             EXPORTING
               i_sender = sender.
    * hardcoded value im passing here u should capture customer mail id here..
    data : lv_email type string.
    lv_email = '[email protected]'.
    *     --------- add recipient (e-mail address) -----------------------
    *     create recipient - please replace e-mail address !!!
           recipient = cl_cam_address_bcs=>create_internet_address(
                                             lv_email ).
    *     add recipient with its respective attributes to send request
           CALL METHOD send_request->add_recipient
             EXPORTING
               i_recipient = recipient
               i_express   = 'X'.
    *     ---------- send document ---------------------------------------
           CALL METHOD send_request->send(
             EXPORTING
               i_with_error_screen = 'X'
             RECEIVING
               result              = sent_to_all ).
           IF sent_to_all = 'X'.
             WRITE text-003.
           ENDIF.
           COMMIT WORK.
    * *                     exception handling
    * * replace this very rudimentary exception handling
    * * with your own one !!!
         CATCH cx_bcs INTO bcs_exception.
           WRITE: text-001.
           WRITE: text-002, bcs_exception->error_type.
           EXIT.
       ENDTRY.
    after this go to sost transaction.
    first you can see first mail.. select your recent mail id execute then you will get email..
    try this and let me know..
    if this is not working then see this link too this might be help full to you.
    Hyperlink in Email using Send Mail Activity
    Thanks & Regards,
    Srinivask.

  • How can I make a specific page open in a new window when clicked from a menu?

    Don't know if its possible but I have one specific page I want to open in a new window in the browswer when clicked on from a widget menu.  I know how to go in and put the coding in but it would be nice if there is some option in Muse to do that already.  Any suggestions? Thanks for any help.

    ryanj4799 You'll need to change the Menu Type to Manual in the widget's options and add the links yourself. Then go to the Hyperlinks panel. Check the option to open in a new tab/window.
    David

  • I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp does not respond when clicked, and will not quit. help?

    I am suddenly unable to open mail from the dock. dock shows mail is up and running, but stamp icon does not respond when clicked, there is no mail window opened, and will not quit. when double clicked, get new mail is not an option and I get no response with other actions.
    I am retrieving mail on my phone with no problem. this just began happening, no updates or problems with anything else.
    help?

    command-option-esc keys and force quit Mail. Then relaunch.

  • Cancelled contract lines are populating in the SR form's subject tab when clicking on 'Get Contracts' button

    Cancelled contract lines are populating in the SR form's subject tab when clicking on 'Get Contracts' button. But user says, it should not be populated. What could be the reason? Please suggest.
    I have told the user :
    "In the case of a renewed contract, if the service request is logged during the effectivity of the original contract (which is now Expired), the original contract will be retrieved. If the service request is logged during the effectivity of the renewal contract then only the renewal contract will be retrieved.
      Contract Entitlement on Subject tab is based on Contract Start and End dates. All the contracts i.e. expired, active, cancelled will appear until the end date. As we can see the contract ES-10165 is end dated on 09-DEC-2014, hence it will appear on the subject tab as per the functionality."
    But the User is saying:
    "Contract coverage is clear to be based on dates, and that is quite clear to me as well… the problem comes with the different statuses.
    A SR can be associated to an “EXPIRED” contract line because the SR creation date could be falling between coverage line start and end dates, but can never be related to a “CANCELLED” line.
    This “CANCELLED” status means that the line is not valid for the contract, so if it is not valid for a contract, it is not valid for referencing a job…and this is only creating wrong costs associations."

    Hi Sudhakar,
    Drop inline message components for each of the textFields and the textArea and then run the application. You could also use a message list component but inline message components for each of the input components would give you a clear idea if any errors are occuring. In case any such errors are indeed occuring then the situation can be analysed further.
    Hope this helps
    Cheers
    Giri :-)

  • Report builder error after applying sql server 2008R2 SP3 when click on report builder gives error like 'Application validation did not succeed. Unable to continue.

    Hi All,
    I applied SQL server 2008 R2 SP3 recently but report builder doesn't work since then
    When click on report builder gives error like 'Application validation did not succeed. Unable to continue.
    and when I try to see details the error summary like following:
    +File, Microsfot.ReportingServices.ComponentLibrary.Controls.dll, has a different computed hash than specified in manifest.
    this is urgent.
    Please reply me asap.
    thanks a lot in advance.
    Regards,
    Nik
    Regards, Naman

    Hi nikp11,
    According to your description, you recently updated SQL Server 2008 R2 to SP3, Report Builder doesn’t work since then the error occurs: "Application validation did not succeed. Unable to continue".
    This is an known issue in SSRS 2008 R2 SP3 that Microsoft has published an article addressing this issue. It is not planning to release a fix for this issue. But we could implement one of the following workarounds:
    Install and run Report Builder 3.0 of SQL Server 2008 R2 RTM.
    Install and run Report Builder of SQL Server 2014.
    Uninstall Service Pack 3 then uninstall Service Pack 2 and then reinstall Service Pack 3.
    Reference:
    Report Builder of SQL Server 2008 R2 Service Pack 3 does not launch
    Thank you for your understanding.
    Best Regards,
    Wendy Fu

  • Is it be true to say a good and not corrupted crystal report always has the option to generate a PDF when click the printer icon on the Crystal toolbar ?

    ''please stick with your original questions thread about Crystal Report - https://support.mozilla.org/en-US/questions/970077 - locking this thread''l
    When i unistall and again install a fresh Crystal report for .Net 4.0 Its ok to generate only to pdf option when click to the print icon on crystal report viewer but in another computer it is promting the old fasion like "a dialog with many option" ,But if want to have a only option to generate only to pdf option what should i have to do when my project and crystal report is at Window server 2008 R2,Please suggest a requred answer?

    Firefox will update in increments when you use such old versions. The best thing to do is to go to www.getfirefox.com, and download Firefox 19.0.2. This is going to be much faster than updating to 3.0.19, then to 3.6, then 12, then 19 (which is the current process).

Maybe you are looking for

  • OS 7 boot CD for Mac Plus?

    Hello and greetings from Switzerland. Before getting to topics let me introduce myself a bit. I'm a private collector of old NeXT, Atari and Apple hardware, living in Switzerland and as long as being no native speaker I hope You can understand my Eng

  • Credit re-block after confirmed qty in Sales order

    I have a problem with credit checking in sales order. Credit goes on hold again after I comfirmed qty in sales order. My steps are as follow. (I don't have stock in warehouse but I need to create sales order). 1. Create a sales order 120 L 2. Credit

  • MAC On Windows - Virtual Machine

    Before installation of the MAC on Windows, i would like to know if i can install MAC on a PC running a Windows XP SP 2 ! Regards

  • How do i create a new table from a *.sql file in JSP

    <html> <%@ page language="java" import="java.sql.*" %> <%@ page errorPage="ExceptionHandler.jsp" %> <% Class.forName("com.mysql.jdbc.Driver").newInstance(); String dbUrl = "jdbc:mysql://localhost/test?user=root"; Connection conn = DriverManager.getCo

  • Can I edit footage recorded in 1080p24 with 5.1ch surround audio using Premiere Elements 12? I'm only seeing stereo audio...

    Hi all, Quick one - I've recorded footage using a Sony HDR-PJ810 in 1080p24 with 5.1ch surround audio (currently experimenting with different frame rates, resolutions and audio).  If I import this into a 1080p24 preset in Premiere Elements 12 then I