Coldfusion displaying blank frame

I hope you can help,
We are currently experiencing some sporadic  behaviour in one of the modules within our application.  We have been investigating this issue for 6 Days now and have reached a stage where our investigations are nearly exhausted.  We were hoping that you may have encountered an similar to this issue previously, I was also hoping that your knowledge and expertise in ColdFusion may assist us in identifying the cause of the issue.
The Issue:
The problematic module basically queries a large table in the database and returns data matching the users Search Criteria.  Recently the module has started displaying only the column headers after 30 seconds (Despite data existing within the table matching the search criteria).  On occasion the module does work as expected, displaying both the column headers and the relevant data within the table.
We have monitored the ColdFusion .log files, however so far no errors have been reported.
I would greatly appreciate any information or advice you can offer regarding this issue.
Thank you in Advance.

Hi,
Basically we are submitting some values to the display page using html form and the results to be displayed within an iFrame.
<form name="request_form" action="results.cfm" onSubmit="return check_form_fields(this);" method="post" target="display">
                        <!--- IFRAME --->
<iframe src="about:blank" frameborder="0"  height="100%" width="100%" name="display"></iframe>
Results.cfm takes the variables sent to it and sends it to a shared tag where a cfquery is used to retrieve data from database.
<cftry>
                  <cfquery name="orders" datasource="#Attributes.dsn#" dbtype="#Attributes.dbt#" blockfactor="100">
                        SELECT o_id,
                                 o_patient_number,
                                 o_surname,
                                 o_forename,
                                 o_dob,
                                 o_request_number,
                                 o_stat_phleb,
                                 o_dt_request,
                                 o_dt_collection,
                                 o_sample_number
                        FROM orders
                        WHERE o_location_code_name IN(<cfqueryparam cfsqltype="CF_SQL_VARCHAR" value="#locations#" list="Yes" separator=",">)
                        AND   o_stat_phleb IN(<cfqueryparam cfsqltype="CF_SQL_INTEGER" value="#status#" list="Yes" separator=",">)
                        <cfif Attributes.pat_num NEQ "">
                              AND o_pat_num = <cfqueryparam cfsqltype="cf_sql_varchar" value="#Attributes.pat_num#">
                        <cfelse>
                              AND   o_dt_collection
                              BETWEEN TO_DATE(<cfqueryparam cfsqltype="cf_sql_varchar" value="#Attributes.start_date#">,'#Attributes.date_format#') AND TO_DATE(<cfqueryparam cfsqltype="cf_sql_varchar" value="#Attributes.end_date#">,'#Attributes.date_format#')
                              ORDER BY #LCase(order_clause)#, o_sample_number asc
                        </cfif>
                  </cfquery>
                  <cfcatch type="Database">
                        <cflog text="#cfcatch.detail# #cfcatch.message#" type="error">
                        <cfrethrow>
                  </cfcatch>
            </cftry>
The results of the shared tag (orders) are sent back to results.cfm and get displayed as follow
<cfparam name="FORM.locations"     default="NULL">
    <cfparam name="FORM.start_date" default="">
    <cfparam name="FORM.end_date"    default="">
    <cfparam name="FORM.status"     default="unresolved">
    <cfparam name="FORM.order"         default="">
    <cfparam name="FORM.auto_select" default="">
    <cfparam name="URL.pat_num" default="">
<form action="" method="post" name="requests" class="butText">
<table width="100%" border="0" cellspacing="2" cellpadding="0" align="center" id="results_table" bgcolor="" >
                                                  <tr align="left">
                                                                <th></th>
                                                                <th>Name</th>
                                                                <th>DoB</th>
                                                                <th>Patient num</th>
                                                                <th>Req Num</th>
                                                                <th>Status</th>
                                                                <th>Request Date</th>
                                                                <th>Collect Date</th>
                                                  </tr>
                                                  <cfflush>
                </cfoutput>
                <cfset status_list = StructFind(status_lists,FORM.status)>
                <cfif URL.pat_num NEQ "">
                                <cfset                   status_list = StructFind(status_lists,"open")>
                                <cfmodule          template="get_phleb_orders.cfm"
                                                                                loc_list="#FORM.locations#"
                                                                                pat_num="#URL.pat_num#"
                                                                                status="#status_list#"
                                                                                dsn="#dsn#"
                                                                                dbt="#dbt#">
                <cfelseif FORM.start_date NEQ "" AND FORM.end_date NEQ "">
                                <cfmodule          template="get_phleb_orders.cfm"
                                                                                loc_list="#FORM.locations#"
                                                                                start_date="#FORM.start_date# 00:00:00"
                                                                                end_date ="#FORM.end_date# 23:59:59"
                                                                                date_format="dd/mm/yyyy hh24:mi:ss"
                                                                                status="#status_list#"
                                                                                order="#FORM.order#"
                                                                                dsn="#dsn#"
                                                                                dbt="#dbt#">
                </cfif>
                <cfset counter = 0>               
                <cfif isDefined("orders")>               
                                <cfif orders.RecordCount GT 0>
                                <cfflush interval=10>
                                                <cfloop query="orders">
                                                                <cfset status = StructFind(status_values,orders.o_stat_phleb)>
                                                                <cfset check_box_use = "">
                                                                <cfset tr_color = 'bgcolor="#disabled_color#"'>
                                                                <cfset enabled = true>
                                                                <cfif orders.o_stat_phleb EQ "4" >
                                                                                <cfset tr_color = 'bgcolor="##DDDDDD"'>
                                                                                <cfset check_box_use = "disabled">
                                                                                <cfset enabled = false>
                                                                </cfif>
                                                                <cfif orders.o_stat_phleb EQ "32" >
                                                                                <cfset tr_color = 'bgcolor="##DDDDDD"'>
                                                                                <cfset check_box_use = "disabled">
                                                                                <cfset enabled = false>
                                                                </cfif>                                                               
                                                                <cfif Find("00:01:01",o_dt_collection)>
                                                                                <cfset o_dt_coll =            DateFormat(orders.o_dt_collection,"DD-MMM-YY")>                                  
                                                                <cfelse>
                                                                                <cfset o_dt_coll =            "#DateFormat(orders.o_dt_collection,'DD-MMM-YY')# #TimeFormat(orders.o_dt_collection,'HH:mm:ss')#" >
                                                                </cfif>                                                 
                                                                <cfset s_dt_request = "#DateFormat(orders.o_dt_request,'DD-MMM-YY')# #TimeFormat(orders.o_dt_request,'HH:mm:ss')#">                                                      
                                                                <cfset s_dob = DateFormat(orders.o_dob,'DD-MMM-YYYY')>   
                                                                <cfoutput>                                                        
                                                                                <tr #tr_color# id="tr_#o_id#" <cfif enabled>onClick="var cb =document.all.cb_#counter#;parent.add_remove(cb,cb.id,#counter#,parent.result_check_boxes ,this);"</cfif> >
                                                                                                 <td><input type="checkbox" #check_box_use# id="#o_id#" name="cb_#counter#" value="#o_request_number#-#o_patient_number#" ></td>
                                                                                                 <td>#orders.o_forename# #orders.o_surname#</td>
                                                                                                 <td>#s_dob#</td>
                                                                                                 <td>#o_patient_number#</td>
                                                                                                 <td id="req_#o_id#">#o_request_number#</td>
                                                                                                 <td id="stat_#o_id#" >#status#</td>
                                                                                                 <td>#s_dt_request#</td>
                                                                                                 <td id="col_dt_#o_id#">#o_dt_coll#</td>
                                                                                </tr>
                                                                                <cfif enabled AND FORM.auto_select NEQ "">
                                                                                                 <script language="JavaScript">
                                                                                                                 var cb = document.all.cb_#counter#;
                                                                                                                 cb.checked= true;
                                                                                                                 parent.add_remove(cb,cb.id,#counter#,parent.result_check_boxes,document.getElementById('tr _#o_id#'));
                                                                                                 </script>
                                                                                </cfif>
                                                                </cfoutput>
                                                                <cfset counter = IncrementValue(counter)>
                                                </cfloop>
                                <cfelse>
                                                <cfoutput>
                                                                <tr>
                                                                                <td colspan="8" align="center" height="50">
                                                                                                 Sorry no requests found. Click <a href="javascript:void(0);" onClick="parent.load_locations();">here</a> to choose your locations again.
                                                                                                 <br>
                                                                                                 Or click <a href="javascript:void(0);" onClick="parent.manage_section('advanced', ''); parent.manage_section('update_status', 'none'); parent.set_btn_bg('adv');">here</a> to revise your search using the advanced options.
                                                                                </td>
                                                                </tr>
                                                </cfoutput>
                                </cfif>                 
                <cfelse>
                                <cfoutput>
                                                <tr>
                                                                <td colspan="8" align="center" height="50">
                                                                                Sorry no requests found. Click <a href="javascript:void(0);" onClick="parent.load_locations();">here</a> to choose your locations again.
                                                                                <br>
                                                                                Or click <a href="javascript:void(0);" onClick="load_adv();">here</a> to revise your search using the advanced options.
                                                                </td>
                                                </tr>
                                </cfoutput>
                </cfif>
                <cfoutput>          
                                </table>
                                </form>
Appreciate your help :-)

Similar Messages

  • Initial view is black, want to display a frame

    When displaying a quicktime movie on a web site it always displays black before the movie starts. Is there a way to display a frame from the actual movie?
    I am aware of the set poster frame but it doesn't display when the movie is on a web site.

    hi Atish
    i am using
    loop at gt_sagadr_outtab into wa_sagadr_outtab
    move wa_sagadr_outtab-country to wa_sagadr_text+223(226).
    endloop
    in this last field ie country i need to display the last 226 as blank as only country key is two char in database so the last space is not shown
    i am not unsing the fM as tolb by  you
    and afterwards
    i am usning
    Concatenate 'Sagadr_' sy-datum sy-uzeit '.dat' into gv_filename_sagadr.
    CALL FUNCTION 'FILE_GET_NAME'
      EXPORTING
      CLIENT                        = SY-MANDT
        LOGICAL_FILENAME              = gc_lfile
        OPERATING_SYSTEM              = SY-OPSYS
        PARAMETER_1                   = gc_param1
        PARAMETER_2                   = gc_send
        PARAMETER_3                   = gv_filename_sagadr
      USE_PRESENTATION_SERVER       = ' '
      WITH_FILE_EXTENSION           = ' '
      USE_BUFFER                    = ' '
      ELEMINATE_BLANKS              = 'X'
      IMPORTING
      EMERGENCY_FLAG                =
      FILE_FORMAT                   =
        FILE_NAME                     =  gv_filepath_sagadr
    EXCEPTIONS
      FILE_NOT_FOUND                = 1
      OTHERS                        = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    and lastly
    open dataset gv_filepath_sagadr for output in text mode encoding default.
        if sy-subrc eq 0.
         loop at gt_sagadr_text into wa_sagadr_text.
         transfer wa_sagadr_text to gv_filepath_sagadr.
         endloop.
        endif.
       close dataset gv_filepath_sagadr.
        if sy-subrc = 0.
        message S002 with gv_filepath_sagadr. "Files & created on Application server
        endif.
    SO NOT SURE WHERE TO USE THE CODE AND HOW

  • Report is displaying blank?

    hi all
    my report with less parameters is working fine but when i increased parameters its showing me report can anyone guide me plz.its displaying blank page
    here is my codes:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    add_parameter(plid,'P_num',text_parameter,to_char(:pays.num));
    add_parameter(plid,'p_code',text_parameter,to_char(:pays.code));
    add_parameter(plid,'p_basic',text_parameter,to_char(:pays.basic));
    add_parameter(plid,'p_housing',text_parameter,to_char(:pays.housing));
    add_parameter(plid,'p_water',text_parameter,to_char(:pays.ele_water));
    add_parameter(plid,'p_transport',text_parameter,to_char(:pays.transport));
    add_parameter(plid,'p_desc',text_parameter,to_char(:pays.description));
    add_parameter(plid,'p_amount',text_parameter,to_char(:pays.amount));
    add_parameter(plid,'p_deduct',text_parameter,to_char(:pays.deduction));
    add_parameter(plid,'p_net',text_parameter,to_char(:pays.net_amount));
    add_parameter(plid,'p_total',text_parameter,to_char(:pays.total));
    add_parameter(plid,'p_other',text_parameter,to_char(:pays.other));
    add_parameter(plid,'p_money',text_parameter,to_char(:pays.money_in_words));
    add_parameter(plid,'p_num2',text_parameter,to_char(:payslip.num));
    add_parameter(plid,'p_name',text_parameter,to_char(:payslip.employee_name));
    add_parameter(plid,'p_gender',text_parameter,to_char(:payslip.gender));
    add_parameter(plid,'p_nat',text_parameter,to_char(:payslip.nationality));
    add_parameter(plid,'p_martial',text_parameter,to_char(:payslip.martial_status));
    add_parameter(plid,'p_date',text_parameter,to_char(:payslip.join_date));
    add_parameter(plid,'p_job',text_parameter,to_char(:payslip.job_title));
    add_parameter(plid,'p_bank',text_parameter,to_char(:payslip.bank));
    add_parameter(plid,'p_account',text_parameter,to_char(:payslip.account_no));
    add_parameter(plid,'p_year',text_parameter,to_char(:payslip.year));
    Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT6');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://sara:8889/reports/rwservlet/getjobid'
    ||substr(v_rep,instr(v_rep,'_',-1)+1)
    ||'?'
    ||'server=repserver&P_num='||:pays.num
    ||'&p_code'||:pays.code
    ||'&p_basic'
    ||:pays.basic||'&p_housing'
    ||:pays.housing||'&p_transport'||:pays.transport
    ||'&p_water'||:pays.ele_water||'&p_amount'
    ||:pays.amount||'&p_deduction'||:pays.deduction
    ||'&p_netamount'||:pays.net_amount
    ||'&p_total'||:pays.total||'&p_other'
    ||:pays.other||'&p_word'||:pays.money_in_words
    ||'&p_num2'||:payslip.num
    ||'&p_name'||:payslip.employee_name
    ||'&p_gender'||:payslip.gender||'&p_nat'
    ||:payslip.nationality||'&p_martial'
    ||:payslip.martial_status||'&p_date'
    ||:payslip.join_date||'&p_job'
    ||:payslip.job_title||'&p_bank'
    ||:payslip.bank||'&p_account'
    ||:payslip.account_no||'&p_year'
    ||:payslip.year||'&paramform=no','_blank');
    END;
    Edited by: SarahSarahSarah on Aug 16, 2009 4:20 AM
    Edited by: SarahSarahSarah on Aug 16, 2009 4:23 AM

    sarah,
    Check the query in the report. The reason for blank report will be the query returning blank. So check the report's query in SQL *PLUS or other softwares like TOAD, SQL Developer etc.
    Regards,
    Manu.

  • Double clicking on an Icon to display a frame....

    Hi! I have an icon whereby when double clicked on should display a frame. To display the icon, I have it as an ImageIcon placed on a label, which works fine. But my problem now is what kind of listener can I add to this label, if any that will cause this frame to be displayed? OR if you have an idea of going about or around this, I'll really appreciate it!! Thanks a lot in advance!!
    Cheers,
    Bolo

    Thanks a lot again Radish! It worked fine. I got another question, which I hope you'll be willing to answer. Hope I'm not being a pain in the butt?
    After the user double clicks on an icon to display a window(step by step wizard), the panel on the frame contains "back" and "next" buttons. And of course the button on the last panel will say finish instead of next. All of this is working fine. My problem is that whenever I re-launch the wizard, it displays the last panel which contains the finish button instead of the first panel. Do you have any ideas of how I can fix this? Thanks a lot in advance!!
    Cheers,
    Bolo

  • In my Iphone 5, Nothing on my App Store is working its displaying blank (Except for Genius section). I've tried to uninstall and install itunes and all its component but still it doen't fix. Not sure if its problem with apple servers. Someone help please!

    In my Iphone 5, Nothing on my App Store is working,  its displaying blank (Except for Genius section). I've tried to uninstall and install itunes and all its component in my desktop but still it doesn't fix the app store issue. Not sure if its problem with apple servers. Someone help please!

    settigns>itunes and app store to make sure you are signed in.. If  you are, you will see your account name..... anyhow, click your account name, sign out and sign back in
    also go to to settings>general>reset and reset network settings... if that doesnt work settings>general>reset and reset all settings!
    one of those shall work. The last step would be to restore your device (apple.com/support) HT1414

  • How to display a frame at the upper left corner of each screen?

    hi,
    below are 2 ways to display a frame at the upper left corner of each screen (i have 2 monitors).
    both work but the 2nd way is much slower. which, if any, of the 2 approaches is "more" correct?
    import java.awt.Canvas;
    import java.awt.Color;
    import java.awt.Dimension;
    import java.awt.DisplayMode;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseAdapter;
    import java.awt.GraphicsConfiguration;
    import java.awt.GraphicsDevice;
    import java.awt.GraphicsEnvironment;
    import java.awt.Point;
    import java.awt.Rectangle;
    import java.awt.Toolkit;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    // the thing that matters in here is setting the frame's location: xCoord
    // is incremented in each iteration by the current screen's width and
    // is used to set the frame's x-coordinate.
    public static void main(String args[])
          GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
          GraphicsDevice[]    gDevices = gEnviron.getScreenDevices();
          Color colors[] = {Color.blue, Color.red};
          for(int i = 0, xCoord = 0; i < gDevices.length; i++)
             // set panel's size and frame's size to take up the whole screen
             DisplayMode didsplayMode = gDevices.getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame.
    frame.setLocation(xCoord, 0);
    xCoord += screenWidth;
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    // this is a lot slower and may not be correct: it sets the frame's location by calling
    // getConfigurations() on each screen device but using only the 1st configuration
    // (it returns 6 on my computer) to get the bounds (for the frame's x-coord).
    // a screen device has 1 or more configuration objects but do all the objects
    // of the device report the same bounds? if the anwser is yes, then the code
    // is correct, but i'm not sure.
    public static void main1(String args[])
    GraphicsEnvironment gEnviron = GraphicsEnvironment.getLocalGraphicsEnvironment();
    GraphicsDevice[] gDevices = gEnviron.getScreenDevices();
    Color colors[] = {Color.blue, Color.red};
    for(int i = 0; i < gDevices.length; i++)
    // set panel's size and frame's size to take up the whole screen
    DisplayMode didsplayMode = gDevices[i].getDisplayMode();
    int screenWidth = didsplayMode.getWidth();
    int screenHeight = didsplayMode.getHeight();
    JPanel panel = new JPanel();
    panel.setBackground(colors[i % colors.length]);
    JFrame frame = new JFrame();
    frame.setSize(new Dimension(screenWidth, screenHeight));
    frame.setContentPane(panel);
    frame.setUndecorated(true);
    // set location of frame: getConfigurations() is very time consuming
    GraphicsConfiguration[] gConfig = gDevices[i].getConfigurations();
    // on my computer: gConfig.length == 6. using the 1st from each set of configs
    Rectangle gConfigBounds = gConfig[0].getBounds();
    frame.setLocation(gConfigBounds.x, gConfigBounds.y);
    frame.addMouseListener
    new MouseAdapter()
    public void mousePressed(MouseEvent event) {System.exit(1);}
    frame.setVisible(true);
    thank you.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Darryl.Burke wrote:
    Blocked one abusive post.
    @flounder
    Please watch your language.
    dbDude - I just looked at your profile. WTF are you doing in India??

  • Remove blank frame in swf file?

    Hi. I made a simple swf file in flash lite 1.1 with clock. But when i open it after publishing, it has that ''blank frame'', which is refreshing constantly and flikrers between my image and white background. Does anyone know how to remove it, and/or how to insert my image into the stage without being that blank frame visible? I use macromedia flash 8... In case someone wants to look at it, heres the code i used to create the clock, and my swf:                                                                                                                                                                                                                                                                                                

    Ok, i'll try to explain. When you open Macromedia Flash, it automatically creates white stage/document. But i dont need it, so i import my own image to the stage, then i make that clock and publish swf file. Then when i open swf it blinks between white frame and my image. So im pretty sure this white frame is that white stage, created at the beginning. I just dont know how to get rid of that whit stage before i open my image, or maybe i just import my image in the wrong way, i dont know. And, no, it doesnt affect the clock, its working fine, except that it never shows the right font (if i create clock with lets say Verdana, when i open swf its always Arial). About code, i found tutorial by google, that tutorial gives me that code. I have no idea how its made and whats wrong with it, im just a beginner and trying to learn all that stuff. I attached swf in my first post. Thank You.

  • Email received on BT email display blank content

    Hi,
    The email received fron certain domain on BT internet mail display blank content. Has anyone come across the problem? Let me know how to solve.

    I am getting the same thing - going to post about it shortly as I don't know the solution either.

  • My nokia N-70 Music Edition Screen displayed blank...

    Hi
    nokia N-70 Music Edition Screen displayed blank after few hours.After Removing battery,put again & start it becomes ok for few hours.I have already updated the Software Nokia N-70 but no advantage.
    Wht should i do?

    strange enough some of the pre-installed apps on the N70 are on the memory card and not the phone memory. which means formatting the memory card will remove everything. it's difficult to get everything back but try these :
    1- try to find what you need on the n70 support page
    http://europe.nokia.com/A4144775
    check phone software.
    2- if you have the download app installed on your phone , run it and check for the app there.if not check the nokia download store. http://www.download.nokia.com/
    3- if your mamory card is not the original provided with the phone, locate your old memory card. using a computer copy and paste the following folders from the old original one to the new one:
    * resource
    * sys
    * private (copy the subdirectories only and not the whole folder)
    4- if something is still missing after all this, i guess it's gone for good
    Fear not those who argue but those who dodge

  • Problem displaying 2 Frames

    So, I've got a little problem with the display.
    I've mage a GUI with a frame and all is ok.
    The main calls a methods which does a lot of things and after calls an other class which has to display a frame where I draw some lines thanks to paint.
    the problem is that in the second frame, the content of the first is shown and on the content there are my paints. Does anyone know how to solve this problem in order that in the second frame , there is just my paint. (Because in the second frame, we see just the content, the buttons and all the things aren't ok.... and if I change the size of the second frame, there are a lot of stange things with the display of this frame...)
    Thanks..
    Kanaweb

    So here is some parts of my code.
    My main class is UWB( )
    It's like that :
    package uwbrelease2;
    import javax.swing.UIManager;
    import java.awt.*;
    import java.util.*;
    public class Uwb
      //declaration d'une variable de test pour lancer cadre
      boolean packFrame = false;
      // debut du constructeur
      public Uwb()
        Frame1 frame = new Frame1();
        if (packFrame) {frame.pack();}
        else {frame.validate();}
        //Centrer la fen?tre
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        Dimension frameSize = frame.getSize();
        if (frameSize.height > screenSize.height) {
          frameSize.height = screenSize.height;
        if (frameSize.width > screenSize.width) {
          frameSize.width = screenSize.width;
        frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
        frame.setVisible(true);
      }  // fin du constructeur
      //m?thode principale
      public static void main(String[] args)
        try {UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());}
        catch (Exception e) { e.printStackTrace(); }
        new Uwb();
        Simulation simu = new Simulation();
        }//fin m?thode principale
    }//fin class uwb[\code]
    Here are some parts of Frame1( ) :[\b]
    package uwbrelease2;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.io.*;
    public class Frame1 extends JFrame {
      //Main UI panel
      JPanel contentPane;
      //Radio buttons that control the current panel
      JRadioButton Panel1Radio = new JRadioButton();
      JRadioButton Panel2Radio = new JRadioButton();
      JRadioButton Panel3Radio = new JRadioButton();
      ButtonGroup buttonGroup1 = new ButtonGroup();
      //Combo box and list of items that control the current panel
      Object[] dataObject = {"1 cm", "10 cm", "50 cm"};
      JComboBox jComboBox1 = new JComboBox(dataObject);
      //Card layout container panel
      JPanel jPanel1 = new JPanel();
      CardLayout cardLayout1 = new CardLayout();
      //Card layout panels and layouts
      JPanel jPanel2 = new JPanel();
      JPanel jPanel3 = new JPanel();
      JPanel jPanel4 = new JPanel();
      GridBagLayout gridBagLayout1_panel3 = new GridBagLayout();
      FlowLayout flowLayout1_panel4 = new FlowLayout();
      ..............................   and so on......
    [\code]
    Here is some part of simulation( ) :[\b]
    package uwbrelease2;
    import java.util.*;
    import java.awt.*;
    import java.io.*;
    public class Simulation
    //constructeur pour cr?er un objet Simulation
      public Simulation()
        try {
          doSimulation();
        catch (IOException ex) {
    public void doSimulation() throws IOException {
        ZoneGraphique zone=new ZoneGraphique(tabMur);
        //zone.validate();
        zone.show();
    where tabMur is an ArrayList .....[\b]
    [\code]
    [b]and finally here is ZoneGraphique ( ):[\b]
    package uwbrelease2;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    public class ZoneGraphique extends JFrame {
      public ArrayList tabMur;
      public ZoneGraphique(ArrayList tabMur1) {
        super("visualisation");
        tabMur = tabMur1;
        setSize(500,500);
        try {
          DoZoneGraphique zone = new DoZoneGraphique();
          getContentPane().add(zone);
        catch (Exception e) {
          e.printStackTrace();
    class DoZoneGraphique extends JPanel {
       public void paintComponent(Graphics comp){
         Graphics2D comp2D=(Graphics2D)comp;
       comp2D.setColor(Color.RED);
        comp2D.drawString("Floride",20,20);
       for (int j=0;j<=tabMur.size()-1;j++)
        Mur mur = (Mur)tabMur.get(j);
        comp2D.drawLine((int)mur.getAbs1(),(int)mur.getOrd1(),(int)mur.getAbs2(),(int)mur.getOrd2());
    [\code]
    So if you can help me, thanks .....[\b]

  • My 6070 navigation display blanks out after 5 seco...

    My 6070 navigation display blanks out after 5 seconds. Not enough for a 'silver surfer' I am not able to find the adjustment, and it is not in the handbook. Can anyone help. Many thanks
    Solved!
    Go to Solution.

    A reply from service would indicate this a feature of the 6070, back light being turned off. The time out cannot be altered. This feature is unsatisfactory as it times out too soon for slow fingers!

  • XL Reporter Do Not Display Blank Records

    hey all,
    I've built a standard P&L Budget report in XL Reporter with parameters for each segment of the account code as made possible by patch 02.  However, when I uncheck "Do not display blank records," the generated report lists an instance of each account for each segment that I've chosen in the parameters.
    The selections for the account segmentation don't seem to filter the accounts themselves, instead they filter the balances of each account.  Does anyone know why it only filter's the balances rather than the accounts themselves and ends up repeating the accounts for each segment selected?  Is this a bug?
    thanks in advance!
    Kevin Lee

    Hi Kevin,
    Seems that noone in this forum can answer your question. Maybe this is related to the fact that the main focus here is the SAP Business One SDK?
    In case the question is still open:
    I would recommend that you try these forums - which should fit better:
    For SAP partners only there's a forum where you can discuss implementation questions etc.:
    Got a question about customization / implementation? Maybe ask it in CPSN!
    ...and here's the SAP Business One Forum in the "SAP Community" (public to anybody):
    Re: Got a question about customization / implementation? Maybe ask it in CPSN!
    ...or you might try your luck with SAP Support?
    Bugs should anyway be reported to SAP Support!
    HTH
    Frank

  • TS1382 Display blank  iPod nano 2nd gen

    Display blank  iPod nano 2nd gen

    You may get better response if you post in the iPod Nano Community forum
    or else hopefully this Apple Support Article on iPod Reset will help you.
    Have a nice day!

  • Is it possible to have the lid open on a MacBook Pro connected to a Cinema Display and have the Mac display blank with the Cinema in highest definition?

    Is it possible to have the lid open on a MacBook Pro connected to a Cinema Display and have the Mac display blank with the Cinema in highest definition?

    Hi,
    Create a play list that you wish to burn. Select playlist, the file from main menu which gives to an option to burn the playlist. A pop up box appears allowing you to select burn speed and disc format.
    Jim

  • FAGLL03 : customer and vendor columns displaying blank

    hi experts,
    In FAGLL03 tcode , customer and vendor columns are displaying blank .
    Is there any settings need to be done in SPRO for displaying the 2 columns .
    kindly give me any suggestions.
    thanks & regards,
    Raghul

    hi Radhika,
    Thanks for your prompt reply.
    I already defined table and field names as mentioned by you .
    Also i checked FAGLPOSYEXT structure the two fields were appearing as it was not there previously.
    When i checked by running FAGLL03 , the fields customer and vendor were appearing blank only.
    Also  i tried by executing the report  BALVBUFDEL - for buffer reset.
    Kindly give me any suggestions how to rectify this .
    Thansk & regards,
    Raghul

Maybe you are looking for

  • FCP doesn't open after hiding!

    Hello everyone! I got some problems with my FCP after hiding. When I hide it (command+h) and try to re-enter on the program, I do not obtain any response from it, so I have to force quit and, in consequence, lose all the unsaved changes... Any idea a

  • Mac pro 1,1 to mac pro 2,4

    helloi, I have just bought a used Mac Pro 2,4 (I think) to replace my Mac Pro 1,1. My question is what is the easiest way to migrate.  Can I simply place the drive 1 disk from the old machine in one of the slots of the new machine and use restore or

  • How can I activate Flash Player in IE 11?

    Hello, my IE 11 with Windows 8.1.1 says that FLASHPLAYER is not activated and explains how to activate it. But it doesn´t work. I opened MANAGE ADD-ONS, went to EXTENSIONS, but there is no SHOCKWAVE FLASH OBJECT which can be activated. What now? Kind

  • How do I make the UI to hold on

    My prob is I have an UI interface to add records to DB. I want to hold the UI in execution, in one of the text fields where I have made an mistake while inputing the data in the UI. for example Ui contains 19 fields to be entered. Guess I made an mis

  • Need help restoring contacts from the cloud on my iPhone 4s.

    Before I upgrade to IOS 6, I would like to restore my phone and start fresh. I've been backing up my iPhone with each upgrade I get every year and running off the same backup. I continue to get weird issues that I think could be solved by starting fr