Setting the glasspane in a JApplet

I am trying to set the glasspane on a JApplet of a web page.
My code is the following...
Class MyGlassPane extends JComponent {
Point point;
public void paint(Graphics g){
if (point!=null){
g.setColor(Color.red);
g.fillOval(point.x-10, point.y-10,20,20);
public void setPoint(Point p){
point =p;
public MyGlassPane(Container frCon){
setOpaque(true);
setVisible(true);
setSize(650,550);
But I can't see the red bullet when I click on the web page. I mean how can I implement the code you provide on the site but not in a Jframe but in a JApplet???
I would appreciate any advice cause I am desperate.
Thanks in advance,
Eva

Hi,
The only way is to write your own classloader (yep, the hard way). The default classloader of de JVM doesn't allow changing the classpath.
--Arnout                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • How to set the size of a textPane

    I have the following text pane:
         private JTextPane objTPOutput = new JTextPane ();
    /* Output information to the Text Area */
                   objTPOutput.setText("Student Name = " + name +
                                            "\nClass Name = " + className +
                                            "\nCampus Name = " + campusName +
                                            "\nClass Start = " + start +
                                            "\nClass End = " + end +
                                            "\nNumber of Credits = " + numCredit +
                                            "\nCost Per Credit = " + cost +
                                            "\nCost of Class = " + (cost * numCredit));And I want to make it so that I can set it's size so that all the text fits in the panel. For instance, be able to set it's height to a static number.
    How would I go about doing this?

    It is actually in an applet, and JPanel. Let me show you my code so that you can see it:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
         Class: MetroClass
    public class MetroClass extends JApplet{
         /* Create Applet Controls used */
         private JTextField objTFName = new JTextField();
         private JComboBox objCBClass = new JComboBox();
         private JComboBox objCBCampus = new JComboBox();
         private JTextField objTFStart = new JTextField();
         private JTextField objTFEnd = new JTextField();
         private JTextField objTFCost = new JTextField();
         private JTextField objTFNumCredit = new JTextField();
         private JButton objBtnCalculate = new JButton("Calculate");
         private JTextPane objTPOutput = new JTextPane ();
              Method: init()
              Initializes all controls on the applet.
         public void init(){
              /* Create Panel to store all controls */
              JPanel objPanel = new JPanel(new GridLayout(10,2));
              /* Add Items to Drop Down List */
              objCBClass.addItem("ICS 140");
              objCBClass.addItem("ICS 141");
              objCBClass.addItem("ICS 240");
              objCBClass.addItem("ICS 340");
              /* Add Items to Drop Down List */
              objCBCampus.addItem("St. Paul");
              objCBCampus.addItem("Midway");
              objCBCampus.addItem("Minneapolis");
              /* Set the Text Alignment to Left*/
              objTFName.setHorizontalAlignment(JTextField.LEFT);
              objTFStart.setHorizontalAlignment(JTextField.LEFT);
              objTFEnd.setHorizontalAlignment(JTextField.LEFT);
              objTFCost.setHorizontalAlignment(JTextField.LEFT);
              objTFNumCredit.setHorizontalAlignment(JTextField.LEFT);
              /* Add all the controls to the panel*/
              objPanel.add(new JLabel("Enter your Name"));
              objPanel.add(objTFName);
              objPanel.add(new JLabel("Select the class"));
              objPanel.add(objCBClass);
              objPanel.add(new JLabel("Select the Campus"));
              objPanel.add(objCBCampus);
              objPanel.add(new JLabel("Class Start"));
              objPanel.add(objTFStart);
              objPanel.add(new JLabel("Class End"));
              objPanel.add(objTFEnd);
              objPanel.add(new JLabel("What is the cost per Credit"));
              objPanel.add(objTFCost);
              objPanel.add(new JLabel("How many credits"));
              objPanel.add(objTFNumCredit);
              objPanel.add(new JLabel(""));
              objPanel.add(objBtnCalculate);
              objPanel.add(new JLabel(""));
              objPanel.add(objTPOutput);
              /* Add the panel to the applet */
              add(objPanel,BorderLayout.CENTER);
              /* Add a event handler to listen for the button press*/
              objBtnCalculate.addActionListener(new ButtonListener());
              Class: ButtonListener
         private class ButtonListener implements ActionListener {
                   Method: actionPerformed()
                   This method listens for a button click.  Upon a button click
                   the values in the text boxes and drop down list are acquired,
                   and displayed in a text area.
              public void actionPerformed(ActionEvent e){
                   /* Method Variables*/
                   int numCredit = 0;
                   double cost = 0.0;
                   String name = "";
                   String start = "";
                   String end = "";
                   String className = "";
                   String campusName = "";
                   /* Get the control values */
                   numCredit = Integer.parseInt(objTFNumCredit.getText());
                   cost = Double.parseDouble(objTFCost.getText());
                   name = objTFName.getText();
                   start = objTFStart.getText();
                   end = objTFEnd.getText();
                   className = objCBClass.getSelectedItem().toString();
                   campusName = objCBCampus.getSelectedItem().toString();
                   objTPOutput.pane.setPreferredSize(new Dimension(40, 40));
                   /* Outut information to the Text Area */
                   objTPOutput.setText("Student Name = " + name +
                                            "\nClass Name = " + className +
                                            "\nCampus Name = " + campusName +
                                            "\nClass Start = " + start +
                                            "\nClass End = " + end +
                                            "\nNumber of Credits = " + numCredit +
                                            "\nCost Per Credit = " + cost +
                                            "\nCost of Class = " + (cost * numCredit));
    }

  • Setting the Brushed Metal look and feel for macs using Java.

    Hello,
    I am relatively new to Java and I am new to Mac-specific java stuff. Anyways, when I try to set the look and feel of my classes to the "apple.awt.brushMetalLook" look and feel, I am unable to. It works if I have System.setProperty("apple.awt.brushMetalLook", "true"); written before I create any swing component. This would be fine, except that means that it is impossible to extend any swing component, such as JFrame or JApplet. Is there a way around this?
    Thanks!

    This might answer your question:
    http://lists.apple.com/archives/Java-dev/2003/Apr/msg00829.html

  • Setting a background image on JApplet

    Hi all,
    I am new to swing programming. i have to develop a web enabled pgm. for the gui i need to set a background image. i saw some postings in this forum but they didn't satify my requirement. my main class extends from JApplet & it uses a borderLayout. in this i'm putting 2 panels. i need to set the background of the WEST region an image. i used
    getLayeredPane().add(label, new Integer(-1))
    to add the background image. but when i added the panel to the container then the panel is not getting displayed. i added like
    Container c = getContentPane().
    c.setLayout(new BorderLayout());
    c.add(panel,BorderLayout.NORTH);
    here label is a JLabel, panel is a JPanel.
    Can somebody help me with a solution. what i should be doing to get everything displayed.
    Thanks in advance

    check this post : http://forum.java.sun.com/thread.jsp?forum=57&thread=316074

  • Problems setting a glasspane on top of JMF

    Hi,
    I've been working on an application that uses JMF for streaming video over the Internet.
    The video is displayed on the client side, and the client should be able to draw a rectangle over the video without stopping it.
    I'm using Swing Components for the GUI, and tried setting a glasspane over the Frame that holds the video (JInternalFrame). For some reason, when I draw the rectangle over the video, it seems to appear behind it. Isn't a glasspane supposed to be on top of everything ?
    Is there a way to force the glasspane to be on top of the JMF video ?
    I tried looking for answers in the forum, but haven't had any luck...
    Thanks in advance for your help,
    tlampo

    Hi tlampo,
    By default, JMF uses heavy weight components.
    You can set JMF to use a light weight component with:
    Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, true);
    Gido..

  • How do I replace someone else's Mac ID with my own? Bought iPhone second hand. Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his macID on his new iPhone now?? Any ideas, as this issue is blocking my access to iTune

    How do I replace someone else's Mac ID with my own?
    Bought iPhone second hand on TradeMe.
    Previous owner re-set the phone but his ICloud account stayed on now my phone. He uses his AppleID on his new iPhone now and, understandably, does not want to give me his password. Any ideas?? Please.
    This issue is blocking my access to iTunes and any other file from my home computer. It keeps on telling me that I have to autorise my computer to pass on files, yet, it seems, for all this to happen, I need to get logged in through the phone's Apple ID. This of course is different to my one on my computer - and I have no password for it.
    This phone is not stolen!! I payed still a fair bit for it. Am still in contact with the previous owner. He doesn't know how to fix the problem either.
    Would appreciate any suggestion ????
    Thanks
    SamSings

    Settings>general>resets>erase all content and settings.
    That will put it back to its out of the box state. Set it up with your own apple Id.

  • Set the cursor busy steered by supanel vi

    I let run a vi and there is a subpanel. Is there a way that I can set the cursor busy steered by the subpanel vi. I pass the reference of the mainvi over a global variable into subvi. Without success there is no error message but the busy cursor does not appear. Just setting the cursor in subvi creates a null window error. Is there a easy way to implement it. Or do I have to use user events in main vi called by suvi an then se it busy. Would be not so nice to understand it later.
    kind regards reto

    I attach my test VI (LV 8.0). You can try it.
    Attachments:
    test sub.vi ‏17 KB
    test.vi ‏22 KB
    test global.vi ‏4 KB

  • In an Excel template file, can I set the Folder Path in the SaveAs Dialog box?

    I have an Excel template file (xltm) and, with help from the forum, I now have a Workbook_BeforeSave subroutine to save the template as a macro enabled file (xlsm).  I’m so thankful for that help from Edward in the forum.
    I also want to set the default folder location to save the file. I really only need it when the template is saved as a new xlsm file, because if they open the xlsm file, it’s usually opened from the default folder path so any save would normally go back
    to where the file was opened.  However, with a template (even if the template is in the default folder) the Saved template reverts back to the user’s documents folder.
    Is there a good way to do this?
    I tried to modify the Workbook_BeforeSave code like this:
    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Dim FolderDir As String
    Dim FileNameVal As String
    FolderDir = "Z:\save\data\place\"
    If SaveAsUI Then
    If Dir(WorkBookFolder, vbDirectory) <> "" Then
    Application.DefaultFilePath = WorkBookFolder
    End If
    FileNameVal = Application.GetSaveAsFilename(, "Excel Macro-Enabled Workbook (*.xlsm), *.xlsm")
    Cancel = True
    If FileNameVal = "False" Then 'User pressed cancel
    Exit Sub
    End If
    ThisWorkbook.SaveAs Filename:=FileNameVal & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled
    Application.EnableEvents = True
    End If
    End Sub
    But there are a lot of checks that would need to be done.
    I'm not sure how to only default the folder saved only when they open the template, but not change it when they just open an already saved Excel file created by the template (with all the active content, macros, etc.).
    Alan Edwards

    Hi Alan,
    store the path\filename in the 1st argument:
    FileNameVal = Application.GetSaveAsFilename("C:\*.xlsm", "Excel Macro-Enabled Workbook (*.xlsm), *.xlsm")
    Andreas.

  • Setting the JMS Header from Payload

    Hi Experts,
    My requirement is to send the payment data coming from ECC to non sap system.Sender adapter is proxy and receiver is JMS.ECC will be sending the filename in one field and payload content as a string in another field.PI has to set the filename coming from ECC in JMS header property.What configuration changes should i need to make in JMS adapter to achieve it?
    Converting the XML to string is possible in PI.But my question is converting the string XML data into XML fields is possible in SAP PI?If so how to do that?
    Please provide your suggestion.
    Regards,
    Karthiga

    Hi Karthiga,
    The UDF is there in blog
    DynamicConfiguration dynamicconfiguration = (DynamicConfiguration)param.get("DynamicConfiguration");
                DynamicConfigurationKey dynamicconfigurationkey = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/JMS", "DCJMSMessageProperty0");
                String s = dynamicconfiguration.get(dynamicconfigurationkey);
                CorrID.append(s);
    Please let me know if you have any issue.
    regards,
    Harish

  • Unable to set the Cursor focus on a particular field in OA Page

    Hi,
    I have a custom page with 3 controllers . Now when i delete a row from the Advance table, the focus of the cursor goes to the top of the page. My requirement is that, the focus should remain in the Advance table region itself.
    I tried to set the focus using the below code. It dosent work. Could there be an issue since iam using more than one controller for the page?
    OABodyBean bodyBean = (OABodyBean)pageContext.getRootWebBean();
    bodyBean.setInitialFocusId("item164"); // item164 is the messageTextInput field in the Advance table region.
    I tried to get the Initialfocus value after its set. The value shows as 'item164'. However , it doesnt focus on that item.
    Please help me out in fixing this issue.
    Thanks
    AG

    Hi,
    Thanks for the Info. Can you help me with this java script or if you can provide me any reference it would be hepful.
    Basically the focus has to stay in that particular AdvanceTable region where the row is deleted. Not required that the focus has to point to the next row after the delete.
    Thanks
    AG
    Edited by: 928445 on Apr 26, 2012 12:06 AM

  • Unable to 'set the default source system' to Install Business Content

    Hi,
    Maars here. This is my first post hoping that in future ones I'll also be lending a helping hand.
    I am trying to 'Install Business Content' under the BUSINESS CONTENT section in txn RSA1. I am doing this after 'Transfer Data Sources' in R/3 and I can now see all the data sources (under the application component hierarchy) for the source system. But I am not able to see the Info Objects in the Business Content.
    When I try to set R/3 as the default source system (got this screen after clicking a icon in the standard tool bar), BW is not saving the settings ie., I set the R/3 as the default and then click on OK. If I go back to the same screen again, I find that my settings were NOT saved.
    Could you please help me out?
    Thank you.

    Hi,
    It seems to be a bug in version 3.5.
    Do like this:
    After you open the screen to <i>choose the dafault source system</i>
    Clcik on 3rd button(F6) available in the bottom of the scrreen.
    And then select teh tick mark for required system.
    And then click on Continue button
    You have do this step before you drop the cube to right side of the cube.
    Ok, even after all these steps , if you reopen the screen you would not see Tick mark u have done just before. DONOT WORRY ABT it.
    Drag and drop required cube with dat flow before.
    Now you can see the Transfer rules with selected Source system only in the collected Objects.
    With rgds,
    Anil Kumar Sharma .P

  • How to set the table input in Query template?

    Hi all.
    I need to call a Bapi_objcl_change, with import parameter and a table as an input. I have done this, in BLS. I have set the table input in the
    form of xml. In BLS, I get the output(the value gets change in SAP R3, what i have given in BLS).  But if i set the same xml structure  in
    query template, I didn't get the output. Table input parameter does not take that xml source.  How to set the table input in Query template?
    can anyone help me?
    Regards,
    Hemalatha

    Hema,
    You probably need to XML encode the data so that it will pass properly and then xmldecode() it to set the BAPI input value.
    Sam

  • How to set  the  table I_ORG in 'BBP_EXTREQ_INBOUND'?

    dear all,
      Now I am using BAPI 'BBP_EXTREQ_INBOUND' to create a shopping card and have successed.
      but  in the table I_ORG,   whatever I set the value of  organization ID and group ID, it will not be changed in the SRM.
    how can I set them?
       t hank you!

    hi ,
    you can use BADI --> BBP_PGRP_ASSIGN_BADI in your SRM system and make changes according to your own requirements.
    if you make changes using the above BADI --> then changes should be updated in the newly created shopping cart.
    this is because , the above BADI is called ---> in the
    BAPI 'BBP_EXTREQ_INBOUND' .
    check out the following sequence --->
    BBP_EXTREQ_INBOUND ---> calls
    FM BAPI_SCEC_CREATE ---> calls
    {BAdI - BBP_PGRP_ASSIGN_BADI -
      PERFORM sc_pgrp_assign_badi TABLES lt_i_items             "XMZSP02AO
                                         lt_i_account           "XMZSP02AO
                                         lt_i_partner           "XMZSP02AO
                                   USING ls_i_header            "XMZSP02AO
                                CHANGING lt_i_orgdata[]         "XMZSP02AO
                                         return[].              "XMZSP02AO

  • Unable to set the selected value for a ADF LOV

    Hi,
    I am developing an application using jdeveloper 10.1.3 and Struts.
    I have created a ADF LOV on my JSP Page as given below:
    <html:select property="lob" onchange="javascript:selectLOB(this.form)">
    <html:optionsCollection label="prompt" value="index" property="lob.displayData"/>
    </html:select>
    When i submit the form, i am able to get the value of the selected Value in the List.
    JUCtrlListBinding listBinding = (JUCtrlListBinding) formBean.get("Lob");
    Row r = (Row) listBinding.getSelectedValue();
    String SoLob = (String) r.getAttribute("LobLob");
    But i am unable to set the selected value back in the list when i return to the form again.
    I tried the following:
    int x = listBinding.getSelectedIndex();
    listBinding.setSelectedIndex(x);
    It would be really helpful if some one could let me know what needs to be done.
    Thanks,
    Subashini

    Gyan,
    I tried with the code you suggest , its trying to set the value of a field, but my requirement is to change the property for
    "Rendered" on the field so that based on search parameters we can hide result table column.
    After searching online, I modified the controller code as follows
    1.Created a new transient attribute (Testrender) with type "Boolean" and always updateable.
    2.changed the "Rendered" property value on the field I want to hide as ${oa.PoSearchVO1.Testrender}.
    3. Modified the controller code as follows :
            OAApplicationModule am = pageContext.getApplicationModule(webBean);
            OAViewObject testvo = (OAViewObject)am.findViewObject("PoSearchVO1");
            OADBTransaction txn = am.getOADBTransaction();
            if (testvo != null)
              OARow row = (OARow)testvo.first();
                if (a.equalsIgnoreCase("Approved"))
                     row.setAttribute("Testrender", Boolean.FALSE);
                else
                     row.setAttribute("Testrender", Boolean.TRUE);
            } But now when i run the page and populate the search field and click "Go" its hiding the field but throwing the following error and the search results are also bad.
    Its using only the value of one search parameter but not the second one .
    The search cannot be executed because the table has pending changes that would be lost. I think the vo is getting dirty when I update the transient attribute value. So I used txn.rollback ,then search is working fine but its not hiding the field.
    So can you please let me know how to proceed from here ?

  • Setting the value of a single attribute for multiple line items

    Hi all,
    I am working on a Web Dynpro application, I have created this applicaion for an accounting document so it has header data and multiple line item data. As per the requirement I have to put the following logic:
    1. When a user enters a value in the field KBLNR on the line item, all the other fields like cost centerm fund, functional area should populate from a database table based on the value of the KBLNR. to get this I have put the following code:
    TYPES: BEGIN OF t_kblp,
              fipos     TYPE kblp-fipos,
              kostl     TYPE kostl,
                      END OF t_kblp.
      DATA lv_kblnr TYPE wd_this->element_t_bseg-kblnr.
      DATA: lt_kblp TYPE STANDARD TABLE OF t_kblp,
            wa_kblp LIKE LINE OF lt_kblp,
            lt_bseg              TYPE STANDARD TABLE OF bseg,
            wa_bseg              TYPE bseg.
      DATA lo_nd_t_bseg TYPE REF TO if_wd_context_node.
      DATA lo_el_t_bseg TYPE REF TO if_wd_context_element.
      DATA: ls_t_bseg TYPE wd_this->element_t_bseg,
            lo_api_controller    TYPE REF TO if_wd_controller,
            lo_message_manager   TYPE REF TO if_wd_message_manager,
            lo_nd_tbseg          TYPE REF TO if_wd_context_node,
             lo_el_tbseg          TYPE REF TO if_wd_context_element,
             lt_el_tbseg          TYPE wdr_context_element_set,
             lv_bseg              TYPE bseg.
      lo_nd_t_bseg = wd_context->path_get_node( path = `ZDATA.CHANGING.T_BSEG` ).
      lo_api_controller ?= wd_this->wd_get_api( ).
      CALL METHOD lo_api_controller->get_message_manager
        RECEIVING
          message_manager = lo_message_manager.
      lo_nd_tbseg = wd_context->path_get_node( path = `ZDATA.CHANGING.T_BSEG` ).
      lt_el_tbseg = lo_nd_tbseg->get_elements( ).
      LOOP AT lt_el_tbseg INTO lo_el_tbseg.
        lo_el_tbseg->get_static_attributes(
                               IMPORTING static_attributes = lv_bseg ).
      IF lv_bseg-kblnr NE ' '.
          SELECT belnr
                 fipos
                 kostl
                 PSPNR
                 geber
                 saknr
                 fkber
                 grant_nbr
                 gsber
                 FROM kblp
                 inTO corresponding fields of wa_kblp
                 WHERE belnr = lv_bseg-kblnr and
                      saknr = lv_bseg-saknr.
            ENDSELECT.
    lo_nd_t_bseg = wd_context->path_get_node( path = `ZPRELIMINARY_POSTING.CHANGING.T_BSEG` ).
    * get element via lead selection
            lo_el_t_bseg = lo_nd_t_bseg->get_element( ).
    lo_el_tbseg->set_static_attributes(
                               EXPORTING static_attributes = wa_kblp ).
       CLEAR: lv_bseg, wa_kblp.
      ENDLOOP.
    everything is working fine but now the problem is couple of fields that I have in wa_kblp are with different names in bseg table and hence they are not updating... I tried putting the following logic within the loop :
    lo_el_t_bseg->set_attribute(
        name =  `PROJK`
    value = wa_kblp-pspnr ).
    but it's only setting the value of the first line item and not working for the multiple line items, can you please tell me how can do this?
    Thanks,
    Rajat Garg
    Edited by: rajatg on Jun 24, 2011 5:09 PM

    Hi Chris,
    I tried your code and it worked fine but after I put this code I am getting another issue. within the loop I had a code to make the fields non modifiable on the screen and was working fine but now what's happening is it's making the all the lines uneditable except the one with data on it (which is completely opposite), this is what I have coded:
    LOOP AT lt_el_tbseg INTO lo_el_tbseg.
        lo_el_tbseg->get_static_attributes(
                               IMPORTING static_attributes = lv_bseg ).
    IF lv_bseg-kblnr NE ' '.
      SELECT belnr
                 fipos
                 kostl
                 PSPNR
                 geber
                 saknr
                 fkber
                 grant_nbr
                 gsber
                 FROM kblp
                 inTO corresponding fields of wa_kblp
                 WHERE belnr = lv_bseg-kblnr and
                      saknr = lv_bseg-saknr.
            ENDSELECT.
    move: wa_kblp-belnr to wa_bseg-kblnr,
    wa_kblp-fipos to wa_bseg-fipos,
    wa_kblp-kostl to wa_bseg-kostl,
    wa_kblp-pspnr to wa_bseg-projk,
    wa_kblp-geber to wa_bseg-geber,
    wa_kblp-saknr to wa_bseg-saknr,
    wa_kblp-fkber to wa_bseg-fkber,
    wa_kblp-grant_nbr to wa_bseg-grant_nbr,
    wa_kblp-gsber to wa_bseg-gsber,
    lv_bseg-dmbtr to wa_bseg-dmbtr.
    append wa_bseg to lt_bseg.
    lo_nd_edit_property = wd_context->path_get_node( path = `ZPRELIMINARY_POSTING.CHANGING.T_BSEG.EDIT_PROPERTY` ).
          get element via lead selection
          lo_el_edit_property = lo_nd_edit_property->get_element( ).
          lo_el_edit_property->set_attribute(
            name =  `EDIT_FIELD`
            value = 'ABAP_TRUE' ).
          lo_el_edit_property->set_attribute(
            name =  `EDIT_WBS`
            value = 'ABAP_TRUE' ).
    endif.
    endloop.
    o_nd_t_bseg = wd_context->path_get_node( path = `ZPRELIMINARY_POSTING.CHANGING.T_BSEG` ).
    get element via lead selection
            lo_el_t_bseg = lo_nd_t_bseg->get_element( ).
      CALL METHOD lo_nd_t_bseg->bind_table
        EXPORTING
          new_items            = lt_bseg.
    Can you please see what I am doing it wrong here....

Maybe you are looking for

  • Error message when submitting PS job in Tidal

    Did anyone see this error message? I submitted a PeopleSoft job and got this message org.apache.xerces.dom.ElementNSImpl cannot be cast to org.w3c.dom.html.HTMLAnchorElement All I can find in the log is where it changes the status to 66, Error Occurr

  • Firefox keeps crashing and then I cannot use ANY browser without restarting my computer!

    I have Firefox version 18.0.1 on a PC running XP. I love firefox and it has always been my favourite browser but for the last few months, it keeps freezing on me and then I have to force it closed (end program). After that I cannot restart it (or ant

  • Is there such a thing as an extra battery for Ipod video

    I am planning a long plane trip next year and I keep toying with buying a video ipod but the 3 hour (for watching videos) or so battery life is making my decision towards the no side. I am wondering if there is an external battery that is worth the m

  • Transport CRs and make them appear as CRs in dest. system

    Dear all, I have a question about Change Request (CR). Suppose that I have system DE1, system DE2, and system PRD. Developers/customizers make changes in system DE1. CRs are then created in DE1. Next, because system DE1 is temporary (will be deleted

  • Saved a file, yet it's gone!?

    Typed an entire essay, saved it as "untitled 7," which caused Pages to close. When I try to locate "untitled 7" IT IS NO WHERE TO BE FOUND!? Please help, paper is due tomorrow! Thanks.