E5 camera - no close-up setting?

I just tried photographing a business card, which I could do very well with my old Nokia, but my new E5 won't do it - everything's just too blurry unless you're too far away to read the writing.  The Nokia website states:
Image capture
Flash modes: Automatic, On, Off, Red-eye reduction
Flash operating range: 1 m
Automatic, sunny, cloudy, incandescent, fluorescent
Automatic, Manual exposure compensation +2,0 ~ -2,0
Capture modes: Still capture mode, video mode, panorama mode and sequence mode
Scene modes: Auto, user defined, close-up, portrait, landscape, sport, night mode (w/o flash), night portrait
Colour tone modes: Normal, sepia, black & white, vivid, negative
Light sensitivity modes: Automatic, low, medium, high
Show viewfinder grid
Still image editor
but my E5 has all those scene modes _except_ close-up.  Why is that?  Am I missing something?

Well, Xperia phones detect Macro shots automatically...
If you go in Superior Auto mode (in my old phone is Scene Auto) it should show you a little icon when it detect the scene you are trying to shoot.
For instance.... if you are trying to take a pic of an All White wall or a paper, there should be an icon indicating that it is going to shoot in "Document" mode.
The same way, if you get close enough... about 8cm of less.. it should display a small flower icon, indicating "Macro Mode"...
Keep in mind that this focus mode also kicks in on Manual mode automatically, there is no need to set anything else...

Similar Messages

  • Open data set and close data set

    hi all,
    i have some doubt in open/read/close data set
    how to transfer data from internal table to sequential file, how we find sequential file.
    thanks and regards
    chaitanya

    Hi Chaitanya,
    Refer Sample Code:
    constants:   c_split         TYPE c
                               VALUE cl_abap_char_utilities=>horizontal_tab,
               c_path          TYPE char100
                               VALUE '/local/data/interface/A28/DM/OUT'.
    Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : rb_pc    RADIOBUTTON GROUP r1 DEFAULT 'X'
                                    USER-COMMAND ucomm,    "For Presentation
                 p_f1     LIKE rlgrap-filename
                                          MODIF ID rb1,    "Input File
                 rb_srv   RADIOBUTTON GROUP r1,             "For Application
                 p_f2     LIKE rlgrap-filename
                                         MODIF ID rb2,     "Input File
                 p_direct TYPE char128 MODIF ID abc DEFAULT c_path.
                                                           "File directory
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_f1.
    *-- Browse Presentation Server
      PERFORM f1000_browse_presentation_file.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_f2.
    *-- Browse Application Server
      PERFORM f1001_browse_appl_file.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF rb_pc = 'X' AND screen-group1 = 'RB2'.
          screen-input = '0'.
          MODIFY SCREEN.
        ELSEIF rb_srv = 'X' AND screen-group1 = 'RB1'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
        IF screen-group1 = 'ABC'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    *&      Form  f1000_browse_presentation_file
          Pick up the filepath for the file in the presentation server
    FORM f1000_browse_presentation_file .
      CONSTANTS: lcl_path TYPE char20 VALUE 'C:'.
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_path         = lcl_path
          mask             = c_mask  "',.,..'
          mode             = c_mode
          title            = text-006
        IMPORTING
          filename         = p_f1
        EXCEPTIONS
          inv_winsys       = 1
          no_batch         = 2
          selection_cancel = 3
          selection_error  = 4
          OTHERS           = 5.
      IF sy-subrc <> 0.
       MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        flg_pre = c_x.
      ENDIF.
    ENDFORM.                    " f1000_browse_presentation_file
    *&      Form  f1001_browse_appl_file
       Pick up the file path for the file in the application server
    FORM f1001_browse_appl_file .
      DATA:  lcl_directory  TYPE char128.
      lcl_directory  = p_direct.
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory        = lcl_directory
          filemask         = c_mask
        IMPORTING
          serverfile       = p_f2
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
       MESSAGE e000(zmm) WITH text-039.
       flg_app = 'X'.
      ENDIF.
    ENDFORM.                    " f1001_browse_appl_file
    *&      Form  f1003_pre_file
        Upload the file from the presentation server
    FORM f1003_pre_file .
      DATA: lcl_filename TYPE string.
      lcl_filename = p_f1.
      IF p_f1 IS NOT INITIAL.
        CALL FUNCTION 'GUI_UPLOAD'
          EXPORTING
            filename                = lcl_filename
            filetype                = 'ASC'
            has_field_separator     = 'X'
          TABLES
            data_tab                = i_input
          EXCEPTIONS
            file_open_error         = 1
            file_read_error         = 2
            no_batch                = 3
            gui_refuse_filetransfer = 4
            invalid_type            = 5
            no_authority            = 6
            unknown_error           = 7
            bad_data_format         = 8
            header_not_allowed      = 9
            separator_not_allowed   = 10
            header_too_long         = 11
            unknown_dp_error        = 12
            access_denied           = 13
            dp_out_of_memory        = 14
            disk_full               = 15
            dp_timeout              = 16
            OTHERS                  = 17.
        IF sy-subrc <> 0.
          MESSAGE s000 WITH text-031.
          EXIT.
        ENDIF.
      ELSE.
       PERFORM populate_error_log USING space
                                        text-023.
      ENDIF.
    ENDFORM.                    " f1003_pre_file
    *&      Form  f1004_app_file
         upload the file from the application server
    FORM f1004_app_file .
      REFRESH: i_input.
      OPEN DATASET p_f2 IN TEXT MODE ENCODING DEFAULT FOR INPUT.
      IF sy-subrc EQ 0.
        DO.
          READ DATASET p_f2 INTO  wa_input_rec.
          IF sy-subrc EQ 0.
    *-- Split The CSV record into Work Area
            PERFORM f0025_record_split.
    *-- Populate internal table.
            APPEND wa_input TO i_input.
            CLEAR wa_input.
            IF sy-subrc <> 0.
              MESSAGE s000 WITH text-030.
              EXIT.
            ENDIF.
          ELSE.
            EXIT.
          ENDIF.
        ENDDO.
      ENDIF.
    ENDFORM. " f1004_app_file
    Move the assembly layer file into the work area
    FORM f0025_record_split .
      CLEAR wa_input.
      SPLIT wa_input_rec AT c_split INTO
        wa_input-legacykey
        wa_input-bu_partner
        wa_input-anlage.
    ENDFORM.                    " f0025_record_split
    Reward points if this helps.
    Manish

  • Exception Handling for OPEN DATA SET and CLOSE DATA SET

    Hi ppl,
    Can you please let me know what are the exceptions that can be handled for open, read, transfer and close data set ?
    Many Thanks.

    HI,
    try this way....
      DO.
        TRY.
        READ DATASET filename INTO datatab.
          CATCH cx_sy_conversion_codepage cx_sy_codepage_converter_init
                cx_sy_file_authority cx_sy_file_io cx_sy_file_open .
        ENDTRY.
    READ DATASET filename INTO datatab.
    End of changes CHRK941728
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          APPEND datatab.
        ENDIF.
      ENDDO.

  • Download using open data set and close data set

    can any body please send some sample pgm using open data set and close data set .the data should get downloaded in application server
    very simple pgm needed

    Hi Arun,
    See the Sample code for BDC using OPEN DATASET.
    report ZSDBDCP_PRICING no standard page heading
    line-size 255.
    include zbdcrecx1.
    *--Internal Table To hold condition records data from flat file.
    Data: begin of it_pricing occurs 0,
    key(4),
    f1(4),
    f2(4),
    f3(2),
    f4(18),
    f5(16),
    end of it_pricing.
    *--Internal Table To hold condition records header .
    data : begin of it_header occurs 0,
    key(4),
    f1(4),
    f2(4),
    f3(2),
    end of it_header.
    *--Internal Table To hold condition records details .
    data : begin of it_details occurs 0,
    key(4),
    f4(18),
    f5(16),
    end of it_details.
    data : v_sno(2),
    v_rows type i,
    v_fname(40).
    start-of-selection.
    refresh : it_pricing,it_header,it_details.
    clear : it_pricing,it_header,it_details.
    CALL FUNCTION 'UPLOAD'
    EXPORTING
    FILENAME = 'C:\WINDOWS\Desktop\pricing.txt'
    FILETYPE = 'DAT'
    TABLES
    DATA_TAB = it_pricing
    EXCEPTIONS
    CONVERSION_ERROR = 1
    INVALID_TABLE_WIDTH = 2
    INVALID_TYPE = 3
    NO_BATCH = 4
    UNKNOWN_ERROR = 5
    GUI_REFUSE_FILETRANSFER = 6
    OTHERS = 7.
    WRITE : / 'Condition Records ', P_FNAME, ' on ', SY-DATUM.
    OPEN DATASET P_FNAME FOR INPUT IN TEXT MODE.
    if sy-subrc ne 0.
    write : / 'File could not be uploaded.. Check file name.'.
    stop.
    endif.
    CLEAR : it_pricing[], it_pricing.
    DO.
    READ DATASET P_FNAME INTO V_STR.
    IF SY-SUBRC NE 0.
    EXIT.
    ENDIF.
    write v_str.
    translate v_str using '#/'.
    SPLIT V_STR AT ',' INTO it_pricing-key
    it_pricing-F1 it_pricing-F2 it_pricing-F3
    it_pricing-F4 it_pricing-F5 .
    APPEND it_pricing.
    CLEAR it_pricing.
    ENDDO.
    IF it_pricing[] IS INITIAL.
    WRITE : / 'No data found to upload'.
    STOP.
    ENDIF.
    loop at it_pricing.
    At new key.
    read table it_pricing index sy-tabix.
    move-corresponding it_pricing to it_header.
    append it_header.
    clear it_header.
    endat.
    move-corresponding it_pricing to it_details.
    append it_details.
    clear it_details.
    endloop.
    perform open_group.
    v_rows = sy-srows - 8.
    loop at it_header.
    perform bdc_dynpro using 'SAPMV13A' '0100'.
    perform bdc_field using 'BDC_CURSOR'
    'RV13A-KSCHL'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'RV13A-KSCHL'
    it_header-f1.
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_CURSOR'
    'KONP-KBETR(01)'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    perform bdc_field using 'KOMG-VKORG'
    it_header-f2.
    perform bdc_field using 'KOMG-VTWEG'
    it_header-f3.
    **Table Control
    v_sno = 0.
    loop at it_details where key eq it_header-key.
    v_sno = v_sno + 1.
    clear v_fname.
    CONCATENATE 'KOMG-MATNR(' V_SNO ')' INTO V_FNAME.
    perform bdc_field using v_fname
    it_details-f4.
    clear v_fname.
    CONCATENATE 'KONP-KBETR(' V_SNO ')' INTO V_FNAME.
    perform bdc_field using v_fname
    it_details-f5.
    if v_sno eq v_rows.
    v_sno = 0.
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_OKCODE'
    '=P+'.
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_OKCODE'
    '/00'.
    endif.
    endloop.
    *--Save
    perform bdc_dynpro using 'SAPMV13A' '1004'.
    perform bdc_field using 'BDC_OKCODE'
    '=SICH'.
    perform bdc_transaction using 'VK11'.
    endloop.
    perform close_group.
    Hope this resolves your query.
    Reward all the helpful answers.
    Regards

  • What is open data set and close data set

    what is open data set and close data set,
    how to use the files in sap directories ?

    hi,
    Open Dataset is used to read or write on to application server ... other than that i am not sure that there exists any way to do the same ... here is a short description for that
    FILE HANDLING IN SAP
    Introduction
    • Files on application server are sequential files.
    • Files on presentation server / workstation are local files.
    • A sequential file is also called a dataset.
    Handling of Sequential file
    Three steps are involved in sequential file handling
    • OPEN
    • PROCESS
    • CLOSE
    Here processing of file can be READING a file or WRITING on to a file.
    OPEN FILE
    Before data can be processed, a file needs to be opened.
    After processing file is closed.
    Syntax:
    OPEN DATASET <file name> FOR {OUTPUT/INPUT/APPENDING}
    IN {TEXT/BINARY} MODE
    This statement returns SY_SUBRC as 0 for successful opening of file or 8, if unsuccessful.
    OUTPUT: Opens the file for writing. If the dataset already exists, this will place the cursor at the start of the dataset, the old contents get deleted at the end of the program or when the CLOSE DATASET is encountered.
    INPUT: Opens a file for READ and places the cursor at the beginning of the file.
    FOR APPENDING: Opens the file for writing and places the cursor at the end of file. If the file does not exist, it is generated.
    BINARY MODE: The READ or TRANSFER will be character wise. Each time ‘n’’ characters are READ or transferred. The next READ or TRANSFER will start from the next character position and not on the next line.
    IN TEXT MODE: The READ or TRANSFER will start at the beginning of a new line each time. If for READ, the destination is shorter than the source, it gets truncated. If destination is longer, then it is padded with spaces.
    Defaults: If nothing is mentioned, then defaults are FOR INPUT and in BINARY MODE.
    PROCESS FILE:
    Processing a file involves READing the file or Writing on to file TRANSFER.
    TRANSFER Statement
    Syntax:
    TRANSFER <field> TO <file name>.
    <Field> can also be a field string / work area / DDIC structure.
    Each transfer statement writes a statement to the dataset. In binary mode, it writes the length of the field to the dataset. In text mode, it writes one line to the dataset.
    If the file is not already open, TRANSFER tries to OPEN file FOR OUTPUT (IN BINARY MODE) or using the last OPEN DATASET statement for this file.
    IF FILE HANDLING, TRANSFER IS THE ONLY STATEMENT WHICH DOES NOT RETURN SY-SUBRC
    READ Statement
    Syntax:
    READ DATASET <file name> INTO <field>.
    <Field> can also be a field string / work area / DDIC structure.
    Each READ will get one record from the dataset. In binary mode it reads the length of the field and in text mode it reads each line.
    CLOSE FILE:
    The program will close all sequential files, which are open at the end of the program. However, it is a good programming practice to explicitly close all the datasets that were opened.
    Syntax:
    CLOSE DATASET <file name>.
    SY-SUBRC will be set to 0 or 8 depending on whether the CLOSE is successful or not.
    DELETE FILE:
    A dataset can be deleted.
    Syntax:
    DELETE DATASET <file name>.
    SY-SUBRC will be set to 0 or 8 depending on whether the DELETE is successful or not.
    Pseudo logic for processing the sequential files:
    For reading:
    Open dataset for input in a particular mode.
    Start DO loop.
    Read dataset into a field.
    If READ is not successful.
    Exit the loop.
    Endif.
    Do relevant processing for that record.
    End the do loop.
    Close the dataset.
    For writing:
    Open dataset for output / Appending in a particular mode.
    Populate the field that is to be transferred.
    TRANSFER the filed to a dataset.
    Close the dataset.
    Regards
    Anver
    if hlped pls mark points

  • GigE VIsion Camera IP and Port setting in multicast mode (IMAQdx)

    GigE VIsion Camera IP and Port setting in multicast mode (IMAQdx)
    Hello, Everybody
    I have NI-IMAQdx 3.5.0 , and I have Basler Camera (scA640-74gc) with GigE Vision Interface.
    I run that camera in my computer as controller (Multicasting mode) with IP (239.192.0.1)
    I detected that camera in another computer (to run it as listener) by LbVIEW .
    my problem is
    I run the Pylon Viewer from Basler (Monitor mode) after I detected that camera.
    it was run successfully (I look to details of that camera it have same IP 239.192.0.1 and the port changed every time when i stop running in controller computer)
    from where i can set fixed Port  in multicasting mode??????
    When I use Pylon Viewer in controlled computer and set the mode to multicast
    I should set IP and port , then in listener computer I run Pylone Viewer (monitor mode) I saw same IP and same port which i set it in controller
    I need a way in LabVIEW to set Port Number in multicasting mode...How I can do that
    Best Regard
    Alzhrani

    Hi Alzhrani,
    Unfortunately it is a bit more complicated because you would have to use the GVCP protocol and do a register read of a specific register on the camera that stores the multicast UDP port (that IMAQdx programs from the controller). However, this likely requires access to the GigE Vision specification in order to be able to format the messages correctly.
    Eric

  • "could not start the camera. Close other apps and try again"

    It shows up saying could not start the camera. Close other apps and try again when i try to open the camera but no other apps are open.
    how do i fix this?

    Hi.....i am new here and is not sure as yet how to start a new thread. 
    I have a bb curve 8310 and think i may ave caused my camera to stop working via uninstalling it....if that is possible. 
    wen i click on di camera it opens, makes shutter sound and flashes wen i click di trackball but after that it doesnt show di picture that it supposedlt took.
    Before this happened i was foolin around with the hide a folder option in pictures and not sure what i did wrong.......my video is not clear either.....please can you help me .....in addition i do not get any of those messages that i see the other users saying that they got for example could not start camera....i am not getting anything like that. all dat i get is a white screen......

  • When I turn on my iPad2, I can see the 'slide to unlock' button and my saved screen. However, on top is the "Not Enough Storage" information. It usually allows me to either hit "close" or "setting". However, it is totally locked.

    When I turn on my iPad2, I can see the 'slide to unlock' button and my saved screen. However, on top is the "Not Enough Storage" information. It usually allows me to either hit "close" or "setting". However, it is totally locked.
    I plugged my iPad into my computer to take off a lot of apps. Nothing changed. I am totally lost as to what to do...

    This can be a problem with the file [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    See:
    * http://kb.mozillazine.org/Session_Restore
    See also:
    * http://kb.mozillazine.org/Firefox_crashes
    * [[Firefox crashes]]

  • Camera problem: "Could not start the camera. Close other applications and try opening the camera again" error.

    Device info
    Your carrier: Etisalat
    Model info and OS version (Go to Settings, then Options, then about): Bold 9900, OS 7.1
    Apps and free space
    Did a battery pull fix your issue? No
    Apps installed and their version if possible: BBM, Facebook, Twitter, App world, Screen muncher.
    BT device model/version (you will have to look at the BT device): (Sorry, don't know what this is).
    When writing your question
    Any other details that would help us out with your issue:
    Good description of what is really wrong and how to reproduce if possible. Details of what you did before:
    What is worth a thousand words
    I simply open the camera and a pop up saying "Could not start the camera. Close other applications and try opening the camera again" appears and only lets me press okay. 
    Memory seems to be okay, can't figure out what it may be.
    Please, how can I fix this? Any help is appriciated.

     I had the same problem with my Bold and tried everything until out of frustration i just clicked the center picture taking button before the "Could not start the camera. Close other applications and try opening the camera again" message came up and believe it or not that solved the problem. Works fine now!

  • Capture from HDV camera on 4x3 SD setting

    I'm trying to capture 4x3 SD video from a Cannon XHA1 camera, which is an HD camera, into Premiere Elements.  I've tried setting up my Premiere file in 4x3 and 16x9 and tried setting the camera at DV 4x3 and 16x9.  When I go to capture, Premiere shows that it's working but once I hit stop/pause, I get a notification that no frames were captured.  What am I doing wrong?

    I'm connected through firewire.  Not sure about "DV Lock."  Under system control, there is an option for "DV Control," and MAGN. B. Lock and Shutter Lock.
    DV Control is switched to "OFF"

  • Application crashes when camera mode 7 is set

    Hi, I have written a small application that grabs images from the camera. The application also allows user to change the video modes and the ROI But I have a problem. Whenever I try to set mode 7 the application crashes. I am also handling the exception but it doesn;t go there. It simply crash. So can anybody help! I
    Thanks Farhat
    Attachments:
    Camera ROI Config.zip ‏5 KB

    Hi Farhat,
      ok - I've sorted what was going on now with the crashing.
    you need to set the format, the mode and the framerate when you change the setup each time.
    I've put the ROI stuff back in - you might want to parse the setup to make sure that when you set the ROI it's not larger than you would normally expect (so a 320x200  max if that's the format you've chosen.
    Thanks
    Sacha Emery
    National Instruments (UK)
    // it takes almost no time to rate an answer
    Attachments:
    Camera ROI Config.zip ‏16 KB

  • Problems using window.close() and setting fields

    Hi,
    I have two problems:
    First one is:
    I created a simple JSP with 'Save' and 'Exit' Buttons. In the Exit button on click event I invoked a function closeWindow, which calls teh window.close(). But on clicking Exit, the window does not close. Can anyone please tell me why.
    Second one is:
    The JSP also needs to get loaded with some values in the Textfields. Theses values are extracted from a text field using a Java class. I am able to see that these values are extracted from the text file and are loaded into Java vars, but when I am trying to set this value into a text field, it is NOT getting set.
    (filePathDetails is the instance of the class that extracts the text values)
    The entire code is posted below:
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo(); %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
        <SCRIPT type="text/javascript">
         function setPaths(){
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1 %>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2 %>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath %>;
                   textLogPath.value = <%=filePathDetails.logFilePath %>;
         function closeWindow(){
              window.closeWindow();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0" onload="setPaths()">
         <FORM name="pathDetails" method="get" action="DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE border="0" cellspacing="" height="60" width="450"
                                                        style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <P align="center">
              <INPUT type="submit" name="buttonSave" value="Save">
              <INPUT type="button" name="buttonExit" value=" Exit " onclick="closeWindow()">
              <BR>
           </P>
           </FORM>
    </body>
    </html>Please help me.
    Thanks in advance.

    Try the following..
    For problem 1:
    Use window.close() instead of window.closeWindow().
    For the second problem
    don't call the function setPaths() at onload. Rather
    call the function after the page is loaded. You can
    try like this.
    If it doesn't work then check whether the browser is
    giving any JavaScript error message.
    <SCRIPT type="text/javascript">
    setPaths() ;
         function setPaths(){
         alert(document.pathDetails.element[0].value);
    document.pathDetails.element[0].value =
    = <%=filePathDetails.localDirPath1 %>;
              alert(document.pathDetails.element[0].value);
              with(document.pathDetails){
    textAncPath1.value =
    e = <%=filePathDetails.localDirPath1 %>;
    textAncPath2.value =
    e = <%=filePathDetails.localDirPath2 %>;
    textArchivePath.value =
    e = <%=filePathDetails.archiveDirPath %>;
    textLogPath.value = <%=filePathDetails.logFilePath
    ath %>;
         function closeWindow(){
              window.closeWindow();
    </SCRIPT>Hi,
    Actually I did try window.close(), but I still am not able to close the current window.
    And as for the problem of setting up the field values, sorry the given solution doesnt seem to work. :-(..
    I have pasted the entire code, I dont know where teh flaw is. Please review the same and let me know.
    Your help is very much appreciated.
    <%@ page language="java" import="ftpScheduler.*" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
    <% FolderPathInfo filePathDetails = new FolderPathInfo();%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>PATH DETAILS</title>
         <SCRIPT type="text/javascript">
         function setPaths(){
              document.pathDetails.textAncPath1.value = "Anything";
              with(document.pathDetails){
                   textAncPath1.value = <%=filePathDetails.localDirPath1%>;
                   textAncPath2.value = <%=filePathDetails.localDirPath2%>;
                   textArchivePath.value = <%=filePathDetails.archiveDirPath%>;
                   textLogPath.value = <%=filePathDetails.logFilePath%>;
         function exitWindow(){
              window.close();
        </SCRIPT>
    </head>
    <body bgcolor="#c0c0c0">
         <FORM name="pathDetails" method="get" action="/FTPSchedulerApp/ftpScheduler/DetailsServlet.java">
         <FONT face="Arial" size="3"><STRONG>Directory Paths:</STRONG></FONT>
           <BR><BR>
           <TABLE name="tempTable" border="0" cellspacing="" height="60" width="450" style="FONT-SIZE: 10pt; FONT-FAMILY: Arial" align="center">
           <COLGROUP>
           <COL width="45%">
           <COL width="55%">
           </COLGROUP>
           <TR>
           <TD><LABEL>Ancillary Transmit Path1 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath1" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Ancillary Transmit Path2 :</LABEL></TD>
           <TD><INPUT type="text" name="textAncPath2" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Archive Path :</LABEL></TD>
           <TD><INPUT type="text" name="textArchivePath" width="290" maxlength="350"/></TD>
           </TR>
           <TR>
           <TD><LABEL>Log File Path :</LABEL></TD>
           <TD><INPUT type="text" name="textLogPath" width="290" maxlength="350"/></TD>
           </TR>
           </TABLE>
           <div align="center">
              <INPUT type="submit" name="buttonSave" value="Save"/>
              <input type="reset" name="buttonReset" value="Reset" onclick="setPaths()"/>
              <button name="buttonExit" onclick="exitWindow()"> Exit </button>
              <BR>
           </div>
           </FORM>
    </body>
    </html>

  • How do I import camera roll photos when setting up as a new iPhone

    hi
    I have a new iPhone 6, which has a software issue.
    The Apple Genius bar suggested I set it up as a NEW iPhone, rather than restore the backup I initially did from my 5S.
    What is the best way to restore the photos I have taken on the iPhone back to the camera roll? (I am using a PC on Win7)
    The Genius bar suggested saving the photos to My Pictures by dragging them off as if it were a flash drive.
    He then said I should add them back once my new phone is set up though iTunes & photos.
    My concern is that when I did this a few years ago, all the metadata with the photo seems to get lost and pics came back in random orders.
    is this still the case & will it work properly now, or does anyone have better suggestions for doing this (such as backing them up to iCloud, then restoring)?
    Thanks

    Just sync it
    iTunes: Syncing media content to iOS devices and iPod

  • After ICS update, camera forces close

    After the latest ICS update, (which I love the look of it) but I've been having a couple of frustrating issues. My camera on my Motorola Razr forces close. It says it had an unexpected error and needs to close. When you finally get it to work, when you take a picture, it freezes and the image will not open. Some of my pictures wont load now, even ones that I just downloaded.  Also some of my music wont play, the pictures are no longer accurate, and it sometimes forces close as well. Also the battery life sucks now. Before I just had to charge it in the afternoon before I leave the office and it would then last until early in the morning, but now I take it off the charger when I leave work and with very little use, a couple of hours later and its almost completely dead. I never had an issue with it just shutting off either and now it will just randomly freeze and shut off. I hope there is going to be another update to correct these issues!

        Sorockerchic, I’m glad to hear you are liking the look of the ICS update. Now let’s get this issue with the camera resolved so you can get back to taking your pictures.
    You mentioned that the issue with the camera, battery life, and freezing started after the ICS update. You may have some apps that are not compatible with the update and causing these issues. I recommend you perform a hard reset http://bit.ly/tQ0nkT to help resolve these issues. This is recommended especially after such a big software update.
    Please post back if you continue to experience any of these issues after performing the hard reset. I’ll be more than happy to further troubleshoot.
    John B
    Follow us on Twitter @VZWSupport

  • K1 wakes up from Standby randomly & Camera Force Close

    I just bought my K1 last week from Best Buy Canada, and I updated to the latest firmware (Kernel 2.6.36.3, Build K1_A301_02_02_110930_CA).
    Sometimes, when I put it on Standby via the Power button or Widget, it wakes up again after 10 seconds and shows the main Locked Screen with the date & time.  Is something Sync-inc in the background and waking it up?  I haven't yet installed anything new on it.
    Also, sometimes, when I'm in the camera app, and I press the "take picture" button, it force closes.   This happens constantly if I keep trying, until I reboot.  The pictures seem to get taken/saved, but they don't show up in the gallery until I reboot.
    Anyone else?

    @Burger - I thought you were talking about my problem. But about your issue - if nothing works maybe you just should exchange your model for new? Maybe it's hardware problem in some serie, like e.g. 1000 devises, you know, factory failure or sth.
    @aleafonthewind - I haven't got the problem with camera too.
    About what you described - yes, random wakeups.
    Normally, it should work like this: When you use your tablet and for that or other reason you stop for a while, you click the power button. After that tablet goes into standby mode and the screen is turned off. When you come back after 30 sec/1 min/30 min etc., doesn't matter, it should STILL be in standby mode with turned off screen.
    But instead of this - after clicking the power button the tablet goes into standby mode and turns off screen, but after a while (as I experienced it was from few second to few minutes) it wakes up without any particular reason.
    It looked to me like something, either software stuff like process, program, update etc., or hardware stuff, like a modul, processor or other component, wakes up the tablet. But why? Still don't know and still looking for an answer.
    If anyone have any clue, even if you don't use K1 but maybe you observed similar issue on smartphone, laptop, please let us know, every idea could be useful!
    Greetz,
    Mattata 

Maybe you are looking for

  • What is JAAS ? Where can i get any information on it ?

    Hi , Can somebody tell me what is JAAS ?.....Where can i get something to read on it ...?????? Thanks Rajesh Nanda

  • Woke up this morning and iPhone 3GS had reset itself and powered off!!

    So I got up this morning and picked up my iPhone 3GS and discovered that it had powered off. Strange. I turned it on and it asked me to plug it into iTunes to reset and restore it!!! What in the &#$#!??! The real ****** is that I lost some very impor

  • Connect a Yamaha Keyboard

    Hi I have recently purchased LE7 and I have a Yamaha PSR-78 keyboard which I would like to connect up and use with logic for recording. This keyboard does'nt have a MIDI connection and I have in the past successfully connected it to garageband and so

  • Can I instal lion clean on my hard drive?

    I dont want to upgrade my current system. Its all a bit clogged up at the moment because of all the software I have installed on it. How can I do a clean install of lion on my hard drive?

  • Subtitles-.stl from dvd sp to fcp... how?

    I want to get one clip from 1 hour video. I need it with subtitles as quicktime. How can I get video with subtitle from DVDSP save as quicktime? and how can I get .stl file into FCP?