Manual creacion "report" HTML

Hola,
alguien me podria indicar donde puedo encontrar algun manual de usuario para crear reports (informes) en HTML o ejemplos???
Existe algun toolkit especifico para esto o es el propio report generation que viene con LabVIEW??
Gracias.

Hola,
Existe un toolkit especifico para generar reports con excel word y office en general, te paso el link al producto y tutorial:
http://sine.ni.com/nips/cds/view/p/lang/es/nid/5769
Tutorial para Excel muy completo:
http://zone.ni.com/devzone/cda/tut/p/id/3178
Con el toolkit vienen más ejemplos.
El report HTML se puede generar con Labview. Tienes ejemplos con labview. Busca en:
C:\Documents and Settings\SPCabreJ\Escritorio\Jaime\afsdaf\examples\reports\withHTML.llb
Por ejemplo el Example HTML Report.vi
Saludos,
Regards,
Jaime Cabrera
NI Applications Engineering Spain

Similar Messages

  • Formatting OBPM Process Report HTML Format

    Hi All,
    We have developed few processes in Business Process Composer and generated the Process Report HTML format. We found these reports need to be formatted as per our business need and are looking a way to alter/modify the format/layout for these HTML reports. Can any one please suggest how do we configure/alter/format the HTML at source level.
    Can any one suggest how to save the generated HTML report.
    --- Murthy

    Hi,
    When I run report( over 28000 pages) with same data set in linux environment then report still run normally.
    I can run this report in win2k3 env developer, but my customer can't run it(my customer also use application server 10gr2 in win2k3), number user of my customer is about 150 user.
    It isn't still work if I redirect report to another output. And I view Application Server -> Report Server then I see one job is running for a long time.
    Report Engine:
    Initial Engines (initEngine)     2
    Maximum Engines (maxEngine)     2
    Minimum Engines (minEngine)     1
    Maximum Jobs Before Shutdown (engLife)     50
    Maximum Idle Before Shutdown (maxIdle) (minutes)     30
    Cache Size (MB)     150
    Idle Timeout (minutes)     20
    Maximum Connections     20
    Maximum Queue Size     1000
    Trace Options: none
    Trace Mode: trace_replace
    Best regards
    Thanks.

  • Perfmon report.html missing

    Hello Guys,
    I've configured perfmon to run for an hour with the memory and cpu counters,
    Workflow,
    1.The perfmon is scheduled to run from 10 to 11 GMT.
    2.Once the run completes it calls a Scheduled Task "\MICROSOFT\WINDOWS\sendMail" and this script would compress the files generated and sends a mail to users as requested.
    3.The script works fine and sends the mail with zip'd  content.
    The problem is sometimes the report.html gets generated and sometimes not.
    There is no problem with the script and perfmon schedule as report.html is defined in reports tab.
    Is there any lag in creating this? I have already enabled a 5 min wait period in my script just in case., but even that isn't helping.
    I am planning to do some more random runs and see if it might take time and if so I would see if this report can be delayed by a day.
    But I would like to understand if this is a common thing.
    Regards,
    V.
    Venu

    Hi,
    Which operating system do you run? If you run Perfmon.exe with the Active Directory Diagnostics template to generate a report on a Windows Server 2008-based domain controller, the process may stop responding.
    For more detailed information, you could refer to the article below:
    Issues with Perfmon reporting - Turning ETL into HTML
    http://blogs.msdn.com/b/canberrapfe/archive/2012/07/06/issues-with-perfmon-reporting-turning-etl-into-html.aspx
    There is a similar thread, please go through it to help troubleshoot this issue:
    Perfmon Report
    https://social.technet.microsoft.com/forums/windowsserver/en-US/57bd2397-7ca1-48e8-9824-1d6ad761558d/perfmon-report
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Firefox can't find the file at jar:file:///C:/Program Files/Mozilla Firefox/omni.ja!/chrome/browser/content/browser/report.html.

    Report is stored in eclipse project directory, when function sets window.location.href='report.html' getting above error. this is for a project very near deadline! any help would be great ,cheers

    btw , program been ran is a firefox add-on

  • IE opens during Print Report (HTML)

    I am using Labview 8.5, "Print Report" with HTML type. When I execute the VI, Internet Explorer (I have IE 7.0 installed under Win XP)  opens up and stays open until I manually close it, even after the Print Report VI completes.
    Has anyone else had this behaviour? 
    I am using <Table style="page-break-before: always"> <TR><TD></TD></TR></Table> tags to build a formatted report.
    Is it possible that I have a bogus HTML tag?
    I use Print Report with HTML (Labview 8.0) with Internet Explorer (IE 6.0 under WinXP) and it just prints silently. I much prefer that type of opearation.
    Is there a known difference between Labview 8.0 and 8.5 for this behavior? Could IE 7.0 operate differently than IE 6.0?
    I would appreciate any help here.
    Solved!
    Go to Solution.

    Hello EdH,
    Are you using the same code in 8.5 that you had in 8.0?
    Andy Chang
    National Instruments
    LabVIEW Control Design and Simulation

  • Minor glitch with manually created report form

    I don't know if this is "as designed" or not, but it seems like a minor glitch. If I create a report form manually, using htmldb_item syntax and have a column or two using the hidden construct (htmldb_item.hidden) and subsequently go back into the report source to make a change, the hidden columns suddenly become visible again so that I have to go into the report attributes and unlick the show button, even though the field is still defined as hidden.
    Like I said, it's a minor issue, but something that should be probably be cleaned up someday.

    Hi,
    I am also very new in HTML DB and i got lot of help from HTML DB.
    So please try this may it will solve your problem.
    SELECT xy.proj_stat_no, xy.proj_no, xy.stat_dt, xy.in_pgrs_stat_dsc,
    xy.stat_dsc, xy.proj_id
    FROM (SELECT htmldb_item.hidden (31, proj_stat_no) proj_stat_no,
    htmldb_item.text (32, proj_no, 42) proj_no,
    htmldb_item.text (33, stat_dt, 43) stat_dt,
    htmldb_item.select_list_from_query
    (34,
    in_pgrs_stat_dsc,
    'select distinct STAT_DSC, STAT_DSC from PROJECT_STATUS_REF'
    ) in_pgrs_stat_dsc,
    htmldb_item.select_list_from_query
    (35,
    stat_dsc,
    'select distinct STAT_DSC, STAT_DSC from PROJECT_STATUS_REF'
    ) stat_dsc,
    htmldb_item.text (36, proj_id, 46) proj_id
    FROM project_status
    WHERE proj_no = :p3_proj_no) xy
    WHERE 1 = 1
    UNION ALL
    SELECT htmldb_item.hidden (31, NULL) proj_stat_no,
    htmldb_item.text (32, NULL, NULL) proj_no,
    htmldb_item.text (33, NULL, NULL) stat_dt,
    htmldb_item.select_list_from_query (34, NULL, NULL) in_pgrs_stat_dsc,
    htmldb_item.select_list_from_query (35, NULL, NULL) stat_dsc,
    htmldb_item.text (36, NULL, NULL) proj_id
    FROM DUAL
    For more Details regarding Tabular form see the link below:
    http://www.oracle.com/technology/products/database/application_express/howtos/tabular_form.html
    Thank You,
    Amit

  • Delete chackbox for manually create report region

    Hi guys,
    First of all I want to say you're providing excellent support. I did research the topic but didn't come accross anything that worked (not to say I couldn't have missed something either). My challenge for the moment is that I've manually created a couple of multi-row report regions which appear on the same page & need to flag records for deletion. As I'm sure you know - I used the htmldb_item package to accomplish this - but the htmldb_item package doesn't support chekboxes. Is there a workaround?
    Kind Regards,
    Sabrina

    Okay - here is one example of something I tried. You're right it's not necessarily a "bug", but as this note is made from the following how-to link "not supported".
    http://www.oracle.com/technology/products/database/htmldb/howtos/tabular_form.html
    Note: Checkbox, popup calendar, and popup key LOV
    are not supported under updateable column attributes in report attributes section.
    Example:
    Select
    x.address_line1,
    x.address_line2,
    x.town,
    x.postal_code,
    x.cntry_code
    from
    (Select
    htmldb_item.text(1,address_line1,10) address_line1,
    htmldb_item.text(2,address_line2,10) address_line2,
    htmldb_item.text(3,town,10) town,
    htmldb_item.text(4,postal_code,10)postal_code,
    htmldb_item.text(4,cntry_code,10) cntry_code,
    htmldb_item.checkbox(5,del_flag,decode( del_flag, 'Y', 'CHECKED', NULL )) del_flag
    from addresses
    where a_pid = :P7_PID
    union all
    Select
    htmldb_item.text(1,null,10) address_line1,
    htmldb_item.text(2,null,10) address_line2,
    htmldb_item.text(3,null,10) town,
    htmldb_item.text(4,null,10) postal_code,
    htmldb_item.text(4,null,10) cntry_code,
    htmldb_item.checkbox(5,null) del_flag
    from all_objects where rownum < nvl(:P7_ROWS,2)) x

  • How to Display Page Numbers in ALV Report HTML End of page Event

    hai Gurus
    Greetings
    Please tell me how to get current page noumber and total number of pages in ALV Report (in HTML End of Page Event)
    i tried with sy-pagno system field but it is not working
    so please guide me
    Thanks
    Ramesh

    check below code....
    *Work area for Layout
         gf_layout       type  slis_layout_alv,
    *Work area for HEADER FOOTER    
         gf_header type slis_listheader,
    *Work area for Field catalogue    
         gf_fieldcat     type  slis_fieldcat_alv.
         it_top_page type slis_t_listheader,
    *Internal table for Field catalogue    
         it_fcat      type slis_t_fieldcat_alv.
    perform:fill_layout,
                  prepare_header,
                  field_catlog,
                  display_report.
         Form  fill_layout
    form fill_layout .
      gf_layout-colwidth_optimize = 'X'.
    endform.                    " fill_layout
         Form  field_catlog
    form field_catlog .
      data : lf_fcat type line of slis_t_fieldcat_alv,
             l_cnt type i.
      clear : lf_fcat, l_cnt.
    Employee Number
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'EMPLID'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 8.
      lf_fcat-seltext_l   = text-003.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Last Name
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'USERNAME'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 20.
      lf_fcat-seltext_l   = text-004.
      append lf_fcat to it_fcat.
    *First Name
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'EMPMAIL'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 40.
      lf_fcat-seltext_l   = text-005.
      append lf_fcat to it_fcat.
    *Known As
      clear  lf_fcat.
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'EMPSTATUS'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-006.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *System UserID
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'COSTCENTER'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-007.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *EMail ID
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'DEPTDESC'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 8.
      lf_fcat-seltext_l   = text-008.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Employment Status
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'LOC'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 20.
      lf_fcat-seltext_l   = text-009.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Personnel Area
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'TITLE'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 40.
      lf_fcat-seltext_l   = text-010.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Personnel Area Text
      clear  lf_fcat.
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'HDATE'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-011.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Country Grouping text
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'MGRID'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 10.
      lf_fcat-seltext_l   = text-012.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Cost Center
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'MGRNAME'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 20.
      lf_fcat-seltext_l   = text-013.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Employee Group
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'MGMAIL'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 40.
      lf_fcat-seltext_l   = text-014.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Organizational Unit
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'DIV'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 25.
      lf_fcat-seltext_l   = text-015.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    *Supervisor
      add 1 to l_cnt.
      lf_fcat-fieldname   = 'BUSUNIT'.
      lf_fcat-tabname     = 'IT_EMPLOYEE'.
      lf_fcat-col_pos     = l_cnt.
      lf_fcat-emphasize   = 'X'.
      lf_fcat-outputlen   = 25.
      lf_fcat-seltext_l   = text-016.
      append lf_fcat to it_fcat.
      clear  lf_fcat.
    endform.                    " field_catlog
         Form  display_report
    form display_report .
      data : l_repid type sy-repid.
      clear l_repid.
      l_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
        exporting
          i_callback_program          = l_repid
          is_layout                   = gf_layout
          it_fieldcat                 = it_fcat
          i_callback_top_of_page      = 'TOP-OF-PAGE'
        tables
          t_outtab           = it_employee
        exceptions
          program_error      = 1
          others             = 2.
    endform.                    " display_report
         Form  PREPARE_HEADER
    form prepare_header.
      data:l_header1(20),
           l_header2(60).
      data:l_header3(20),
         l_header4(60).
      l_header1       = 'Met Life Census Data'.
      l_header2+40(8) = 'Run Date'.
      write sy-datum to l_header2+50(10).
    header
      gf_header-typ  = 'S'.
      gf_header-key  = l_header1.
      gf_header-info = l_header2.
      append gf_header to it_top_page.
      clear gf_header.
    endform.                    " PREPARE_HEADER
    form top-of-page.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = it_top_page.
    endform.                    "TOP-OF-PAGE
    *& Form end_of_list_html
    output at the end of the list - not in printed output *
    FORM END_OF_LIST_HTML USING END TYPE REF TO CL_DD_DOCUMENT.
    DATA: LS_TEXT TYPE SDYDO_TEXT_ELEMENT,
    L_GRID TYPE REF TO CL_GUI_ALV_GRID,
    F(14) TYPE C VALUE 'SET_ROW_HEIGHT'.
    LS_TEXT+0(20) = 'Total Employees'.
    LS_TEXT+40(10) = g_count.
    CALL METHOD END->ADD_TEXT
    EXPORTING
    TEXT = LS_TEXT
    SAP_EMPHASIS = 'STRONG'.
    *adds new line (start new line)
    CALL METHOD END->NEW_LINE.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    e_grid = l_grid.
    CALL METHOD l_grid->parent->parent->(f)
    EXPORTING
    id = 3
    height = 10.
    ENDFORM.

  • Freeze Spreadsheet header in Web Analysis Report (HTML format)

    Hello,
    I want to know if there is any way to freeze the spreadsheet header in Web Analysis. I know it can be done if the report is opened through Web Analysis Studio. However, when the user opens it in HTML format, the header will not be freeze.
    We are using 9.3.1
    Thanks,
    Andy
    Edited by: user642800 on Jun 4, 2009 1:22 PM

    I don't believe you can do this. We ran into the same issue last summer and it left our long scrolling dashboards useless as you couldn't see what row you were looking at once the row headers had left the screen. We talked about having some dashboards launch from workspace and others from Web Analysis but this was messy and we wanted them to one-stop shop in Workspace.
    The answer for us was to put a Check Box on the right hand side and the users only select the amount of members that fill up their screen. For instance, if we had 20 columns of data (accounts or scenarios) and only 5 were visible at one time, they would only select 5 to view at any given time.
    As far as column headers, we haven't had any complaints when those leave the screen.
    This was a huge issue for us but luckily we came up with a workaround that seems to have worked for all of our users thus far.
    Mike

  • How to open a jasper report (html URL)

    Hello,
    currently we are testing the jasper report engine. We are already able to open such a report from forms by a forms personalization.
    Now we want to run a concurrent report where the output should be a link to a jasper report.
    For example:
    I start the request "open jasper report" with parameter "001". After successful finishing the request should give me a link like "http://jasper/myreport&parameter=001" which will be opened in a new browser tab.
    Well, is it possible to open a URL by using a concurrent request?
    Regards,
    Josef

    Hi Josef;
    Please check
    How to open an URL with PLSQL FUNCTION?
    http://oracle.ittoolbox.com/groups/technical-functional/oracle-apps-l/fnd_utilitiesopen_url-in-forms-personalization-2256431
    http://easyapps.blogspot.com/2008/03/image-file-attachment-in-oracle-apps.html
    http://www.scribd.com/doc/47603/Form-Personalization-for-R12
    Hope it helps
    Regard
    Helios

  • Passing Parameter to report (html) from html page

    Hi
    I have a html page use web application server as tool, this page
    link to report, I want to pass the parameter to report
    paramform.
    This is my PL/SQL
    procedure eqp_form(ceqp in out mms_eqp_master.eqp_code%type) is
    htp.tableData(htf.anchor(report.print('msr_eqp_group'),'<font
    color=ffffff>Eqp Group
    Report</font>',cAttributes=>'target=target_blank'));
    How can I do to pass 'ceqp' into report parameter form, before
    running report?

    <p>In the scenario you described the report that connects to the stored procedure will automatically require parameters so they can be passed to the stored procedure.</p><p>Here is a link to a sample that passes a parameter to a report at runtime using BusinessObjects Enterprise XI R2:</p><p>http://diamond.businessobjects.com/node/1018 </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Delete records manually from report

    Hi,
    I am having an issue implementing delete process manually in a report.
    Report Query: select apex_item.checkbox(1,customer_id) as del, cust_first_name, cust_last_name from
    oehr_customers
    In the above query except checkbox, all other columns are standard report coulmns.
    I have created process to execute on a button click.
    BEGIN
    FOR i in 1..APEX_APPLICATION.G_F01.count
    LOOP
    DELETE FROM oehr_customers
    WHERE customer_id = APEX_APPLICATION.G_F01(i);
    END LOOP;
    END;
    When I select the checkbox and hit the delete button that I created is giving me this error.
    ORA-01407: cannot update ("SCHEMA1"."OEHR_ORDERS"."CUSTOMER_ID") to NULL
         Error
    Please let me know where I am doing wrong. Thanks in advance..

    Hi,
    There is a dedicated Reports forum, you may have more luck in there
    Reports
    Regards
    Peter

  • Adding custom buttons to crystal reports html viewer

    Hello,
    I'm using crystal reports for eclipse and I have a time chart in my report that is displayed with html viewer. I need a button bar to navigate on this chart e.g. the button which adds values to chart for the next month.
    Is it possible to add custom buttons to the button bar of crystal reports viewer ?
    Thanks in advance.
    Greetings,
    Nikolas

    Dear Shashidhar,
    regarding your request I have to inform you that the ECL Viewer is developed by a third-party vendor company and so from SAP point of view there is no chance to enlarge the buttons for redlining in the ECL Viewer.
    Best regards,
    Christoph

  • Reports, HTML vs CSV formatting...

    Hi,
    I have a report that in its response has one field which includes many values, like "roles"...
    when the report is visible in the browser, it looks good when one adds a br-tag between the different roles, but this is not a good "look" for it when you press the "export to CSV".
    So my query is... is there some way to format the "output" differently in CSV vs HTML output for the same report?
    OIM 9.x
    Edited by: Dhurgan on Jan 14, 2011 3:20 PM

    As far as I know there is no way to do this within the OIM reporting framework.
    On the other hand it is not very hard to get the information and format it yourself but to get that approach user friendly you would have to create a custom menu item.
    Best regards
    /Martin

  • Blank Page at the end of report(html output)

    Hi,
    I have created a paper layout report using report 10g.
    DESFORMAT for the report is html.
    when i take a print out of the report from internet explorer its printing a blank page at the end.
    I tried with BLANKPAGES=NO it didn't help me and even unchecked the Blank Pages property in Report Builder tool.
    Please help me in resolving this issue.
    Regards
    Srinivas.

    Many thanks. That works

Maybe you are looking for

  • Iphone4 stuck in recovery mode

    Toshiba Satellite C55A laptop, with genuine Windows 8.1 , fully updated. With  the latest version of Itunes installed, my  Iphone 4 is not recognised using USB cable. At the device manager: The Apple Mobile Device (Recovery Mode) is present, but with

  • Need to Add field EKET-EINDT and EKET-SLFDT to ME2M Report output in ALV

    Hi All, I need to add fields EKET-EINDT and EKET-SLFDT to the output of program ME2M Transaction. I have appended the structure MEREP_OUTTAB_PURCHDOC with these fields. and it is coming in the ALV output field catalog. I need these fields output only

  • Why can't I see the Final Cut Studio icon after installation?

    All the installation process went fine and it even displayed "Installation Successful!" And now I can't find it anywhere

  • Zen Micro Battery Wont Cha

    I recently bought a Zen Micro for a 2 week long vacation I was going on. I got it home and fully charged it like everyone says to do the first to you charge, and during the vacation i tried to charge it with my dad's laptop via the usb ports. I notic

  • What are normal operating temperatures of the i7-2620 in the X220, using TPFanControl?

    So I finally got TPFanControl working on my X220 after I really started noticing the fan spinning up and producing high-pitched whine. The fan had begun to remain on all the time, even while on battery with the CPU sitting at 800MHz. I could have swo