How to pack an imac for shipping

hello
my question is how do I pack an imac for shipping? what precautins should I take?
thanks nadine1104

If you have the original box, great.  Even if you do, I'd strongly recommend that you do one of two things:
1.  Call a nearby Apple Store and see if they can re-pack the computer so that it can be shipped safely.  If they can't then,
2.  Bring it to a "pack and ship" store and have them do it.
In either event, when you do the shipping, be sure to insure the computer for what you'd have to pay to replace it.  And, ship it by a method that gives you a tracking number so that you can follow it's progress to the destination.
Personally, I would not try to package the computer myself.  I'd leave it to the "experts".

Similar Messages

  • How to Created custom report for Ship not Billed (SD/FI)?

    Hi all,
    I am anticipating  to write some abap reports..Here is one of them..
    Anyone can help  me with writing a Report , how to do 'Custom Report for shipped not Billed(SD/FI)' ..But since I am new to Abap , if you wish to reply, please use a little more detail and simple explanation, step by step so I can understand what is the idea, how it can be acheived...what kind of report should be used , techniques, tables etc...:)
    Appreciate your help!
    Regards,
    Boby

    Hi Boby,
    You need to create custom transaction to achive these results.
    you will have selection-screen ,it would be :
    Date : Here date would be mandatory  - Ranges Option
    Customer  - Optional field - Ranges
    Order #  Sales Order (Optional) Ranges
    Invoice #  - Invoice # (Optional) Ranges
    You will get the data based on ur selection-screen criteria ...
    First you will have customer order details from diffrent table
    VBAK,
    VBAP,
    LIKP
    LIPS
    VBRK,
    VBRP
    KNA1,
    VBFA Tables ( See the my sample program )
    Output would be :
    Customer #   Custome Name    Order #   Delivery #   Invoice #   Netpr, Netquantity ,
    Check the condition  whether invoice table has VBRK-RFBSK  = ''.
    See the my sample program : This is sales report by monthly..
    REPORT ZFDSALES_REPORT no standard page heading
                           message-id zwave.
    Data Declaration Part
    TYPE-POOLS
    type-pools : slis.
    Tables
    tables : VBAK,
             VBAP.
    Internal table for VBAK Table
    data : begin of i_vbak occurs 0,
           vbeln like vbak-vbeln,
           bstnk like vbak-bstnk,
           vdatu like vbak-vdatu,
           end of i_vbak.
    Internal table for VBAP and MATNR
    data : begin of i_vbap occurs 0,
           vbeln like vbap-vbeln,
           matnr like vbap-matnr,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr like vbap-netpr,
           maktx like makt-maktx,
           end of i_vbap.
    Internal tables
    data : begin of i_sales occurs 0,
           vdatu like vbak-vdatu,
           bstnk like vbak-bstnk,
           matnr like vbap-matnr,
           maktx like makt-maktx,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr  like vbap-netpr,
           end of i_sales.
    Variable for ALV
    data : v_repid like sy-repid,
           gt_fieldcat    type slis_t_fieldcat_alv.
    Selection-screen
    selection-screen : begin of block blk with frame title text-001.
    select-options : s_vbeln for vbak-vbeln,
                     s_erdat for vbak-erdat,
                     s_ernam for vbak-ernam,
                     s_vdatu for vbak-vdatu obligatory,
                     s_BSTNK for vbak-BSTNK,
                     s_KUNNR for vbak-kunnr,
                     s_matnr for vbap-matnr,
                     s_KDMAT for vbap-KDMAT.
    selection-screen : end of block blk.
    Initilization
    initialization.
      v_repid = sy-repid.
    S T A R T  -  O F  -  S E L E C T I O N ****************
    start-of-selection.
    Get the data from VBAK and VBAP Tables
      perform get_vbak_vbap.
    E N D  -  O F  -  S E L E C T I O N *****************
    end-of-selection.
    Display the data
      perform dispolay_data.
    *&      Form  get_vbak_vbap
          Get the data from VBAK and VBAP Table
    FORM get_vbak_vbap.
    Get the data from VBAK Table
      select vbeln bstnk vdatu from vbak into table i_vbak
                         where vbeln in s_vbeln
                         and   bstnk in s_bstnk
                         and   vdatu in s_vdatu
                         and   kunnr in s_kunnr
                         and   erdat in s_erdat
                         and   ernam in s_ernam.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
    Get the data from VBAP Table
      select avbeln amatnr akdmat akwmeng a~netpr
             b~maktx into table i_vbap
             from vbap as a inner join makt as b on bmatnr = amatnr
             for all entries in i_vbak
             where a~vbeln in s_vbeln
             and   a~kdmat in s_kdmat
             and   a~abgru = space
             and   a~matnr in s_matnr
             and   a~matnr ne '000000000000009999'
             and   a~matnr ne '000000000000004444'
             and   a~matnr ne '000000000000008888'
             and   a~matnr ne '000000000000001111'
             and   a~werks = '1000'
             and   b~spras = 'E'
             and   a~vbeln = i_vbak-vbeln.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
      sort i_vbak by vbeln.
      sort i_vbap by vbeln matnr.
      loop at i_vbap.
        read table i_vbak with key vbeln = i_vbap-vbeln
                                binary search.
        if sy-subrc eq 0.
          i_sales-bstnk = i_vbak-bstnk.
          i_sales-vdatu = i_vbak-vdatu.
          i_sales-matnr = i_vbap-matnr.
          i_sales-kdmat = i_vbap-kdmat.
          i_sales-maktx = i_vbap-maktx.
          i_sales-netpr = i_vbap-netpr.
          i_sales-kwmeng = i_vbap-kwmeng.
          append i_sales.
        else.
          continue.
        endif.
        clear : i_sales,
                i_vbap,
                i_vbak.
      endloop.
      sort i_sales by vdatu bstnk matnr.
      refresh : i_vbap,
                i_vbak.
    ENDFORM.                    " get_vbak_vbap
    *&      Form  dispolay_data
          Display the data
    FORM dispolay_data.
    Fill the Fiedlcat
      PERFORM fieldcat_init  using gt_fieldcat[].
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                =
      I_BUFFER_ACTIVE                   = ' '
          I_CALLBACK_PROGRAM                = v_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
          IT_FIELDCAT                       = gt_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_ADD_FIELDCAT                   =
      IT_HYPERLINK                      =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
      IT_EXCEPT_QINFO                   =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = i_sales
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    ENDFORM.                    " dispolay_data
    *&      Form  fieldcat_init
          text
         -->P_GT_FIELDCAT[]  text
    FORM fieldcat_init USING  e01_lt_fieldcat type slis_t_fieldcat_alv.
      DATA: LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    Delivery Date
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'VDATU'.
      LS_FIELDCAT-OUTPUTLEN    = 12.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Delivery Date'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Purchase Order #Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'BSTNK'.
      LS_FIELDCAT-OUTPUTLEN    = 25.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Purchase Order #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-REF_FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-REF_TABNAME    = 'MARA'.
      LS_FIELDCAT-FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material #'.
      ls_fieldcat-seltext_M = 'Material #'.
      ls_fieldcat-seltext_S = 'Material #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'MAKTX'.
      LS_FIELDCAT-OUTPUTLEN    = 40.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material Description'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Customer Material #
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KDMAT'.
      LS_FIELDCAT-OUTPUTLEN    = 35.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Customer material no.'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Quantity
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KWMENG'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Quantity'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Net Price
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'NETPR'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Net Price'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    ENDFORM.                    " fieldcat_init
    Reward Points if it is helpful
    Thanks
    Seshu

  • How do I pack my Ipod for shipping for repair?

    So I got the box today for shipping my Ipod nano back to get it repaired, and in the box was a little sheet that had instructions for me to follow. However, when it got to the part about packing the Ipod, it just said "see the included picture" which was unfortunately not included. Does anyone know what I'm supposed to do or where I can find those directions online? Thanks a bunch!

    So I got the box today for shipping my Ipod nano back
    to get it repaired, and in the box was a little sheet
    that had instructions for me to follow. However,
    when it got to the part about packing the Ipod, it
    just said "see the included picture" which was
    unfortunately not included. Does anyone know what
    I'm supposed to do or where I can find those
    directions online? Thanks a bunch!
    Suggestion: Crumple up a bunch of newspaper as filler...

  • How to "Packing Deployment Template for Offline Intantiation " Mview side

    Please help me. (sorry for my english )
    When Create a Deployment Template in master side I have error at "Packing Deployment Template for Offline Intantiation " step.
    I am in master side; TINTC/TINTC@TINTC . TINTC is replication administrator at TINTC side.
    -- 1 Create a Deployment template
    DECLARE
    a NUMBER;
    BEGIN
    a := DBMS_REPCAT_RGT.CREATE_REFRESH_TEMPLATE (
    owner => 'TINTC',
    refresh_group_name => 'OFFLINE_REP',
    refresh_template_name => 'OFFLINE_REP_DT',
    template_comment => 'Offline Rep Deployment Template',
    public_template => 'N');
    END;
    -- => OK
    --2 add objects to tmplate
    DECLARE
    tempstring VARCHAR2(3000);
    a NUMBER;
    BEGIN
    tempstring := 'CREATE MATERIALIZED VIEW tct_owner.offline_rep
    REFRESH FAST WITH PRIMARY KEY FOR UPDATE AS
    select offline_rep.id,offline_rep.name
    from tintc.offline_rep@tintc offline_rep ';
    a := DBMS_REPCAT_RGT.CREATE_TEMPLATE_OBJECT (
    refresh_template_name => 'OFFLINE_REP_DT',
    object_name => 'OFFLINE_REP',
    object_type => 'SNAPSHOT',
    ddl_text => tempstring);
    END;
    -- => OK
    -- 3 Authorize users for private template
    DECLARE
    a NUMBER;
    BEGIN
    a := DBMS_REPCAT_RGT.CREATE_USER_AUTHORIZATION (
    user_name => 'TINTC',
    refresh_template_name => 'OFFLINE_REP_DT');
    END;
    -- => OK
    -- Packing Deployment Template for Offline Intantiation
    DECLARE
    dt_num NUMBER;
    BEGIN
    dt_num := DBMS_REPCAT_RGT.INSTANTIATE_OFFLINE(
    user_name => 'TINTC',
    refresh_template_name => 'OFFLINE_REP_DT',
    site_name => 'EXTGDT',
    next_date => SYSDATE,
    interval => 'SYSDATE + (1/144)');
    DBMS_OUTPUT.PUT_LINE('Template ID = ' || dt_num);
    END;
    =>(Error): ORA-01917: user or role '' does not exist ORA-06512: at "SYS.DBMS_REPCAT_RGT_CUST", line 1988 ORA-06512: at "SYS.DBMS_REPCAT_RGT", line 1331 ORA-06512: at line 4
    please help me . thankyou very much

    Toan thang ngu

  • How to authorize my iMac for those purchased apps?

    When I try to sync my iPad apps to my new iMac, it prompted me to authorise my computer before it allows syncing... nevertheless, i'm unable to find that function / option at the app store as per its instruction. Anyone able to help?
    Thanks!

    I think i found my answer... thanks.

  • I have an IMac and opened an email that may have been infected with a virus. How do I check my IMac for a possible virus?

    I have an IMac and opened an email that may have been infected with a virus. How do I check my IMac for a possible virus? What does PPC mean?

    You would be better posting this in the Lion forum.
    https://discussions.apple.com/community/mac_os/mac_os_x_v10.7_lion?view=discussi ons
    It's possible you email contained a virus, but unlikely.  There haven't been any reports of email viruses effecting the mac. 
    My understanding is the Apple provides security updates for all malware including viruses.
    There have been reports of a --
    -- Phoney virus checking program
    -- flash malware.
    ppc -- Power PC.   An older computer processor used by Apple.  Last Mac shipped with PPC was in 2006.
    I've read about two virus checking programs for the mac. One is clamav.  The rest are either junk or malware.
    http://www.clamav.net/lang/en/
    Security update.
    http://support.apple.com/kb/HT1222

  • TS2756 How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )

    How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )
    i know its not a problem whit my carrier o data plan or sharing preferences on the ipone because when i use it un my laptop it works perfectly through
    the usb and even works on the Imac through wifi and bluethood tethering but NOT through usb!!.
    the problem is that trying to make it work i deleted the "profile" usb iphone on the network prefereces panel. Now i only have 3 options: ethernet / wifi / bluetooth
    but not the usb iPhone i used to have.
    And when i try to add a new one i dont get a USB option.
    can some one help me please??
    this is how it looks (after the bluetooth PAN i used to have USB iPhone option)

    The question would be more appropriate in the Mac forums as it is not really related to the iPhone.

  • How can I connect my TV sony bravia to Imac for display !

    How can I connect my TV sony bravia to Imac for display ! I did it before but a week ago crash my sistem and been to apple store london to fix it and wend I come home I can not reconnect the tv to imac ! please help !!!!!!!!!!!

    I BUY A CABLE FROM AMAZON.CO.UK AND MY iMAC WAS WORKING WITH THIS CABLE BUT AFTER THEY (APPLE STORE REGENT STREET ) REPARIT NOW IS NOT RECONICE THE DISPLAY !!!!!

  • HT201209 How to get an itunes gift card code, no need to wait for shipping

    Good day to all,
    I want to get an itunes gift card just to download whatsapp on my iphone 3gs. I have my credit card but the billing address is in Haiti, unfortunately Haiti is not in your list of  countries. How can I get itunes gift card code immediately in order to download that application? No need to wait for shipping, just want to have the code to add it to my apple account.
    If you have a better solution, it's welcome.
    Thank you in advance for your reply

    Sorry, but you can't, if you live in Haiti. As you say yourself, there is no iTunes Store for Haiti and you are not allowed to use the iTunes Store of any other country.
    If you live in a country where there is an iTunes Store, check to see if Apple sells physical gift cards in your country and if so purchase and redeem one of those. There is no way to purchase an electronic gift certificate from Apple without a credit card from the country whose iTunes Store you wish to use.
    Regards.

  • I have an external hard drive that was formatted by a PC and has files and directories etc. I want to format it and use it on my IMAC for backup but I can't seem to write to it nor can I delete current content. How do I initialize it for use with the MAC?

    I have an external hard drive that was formatted by a PC and has files and directories copied to it etc. I want to use it on my IMAC for backup. I see it on my my IMAC . I can open files etc.  But I can't seem to write to it nor can I delete current content. I don't care if I lose current content. How do I initialize it for use with the MAC?

    You can't write to it because it's formatted as NTFS which OS X will read but not write to. If you want to continue using the drive with both a PC and OS X you will need to download and install NTFS-3G so you can then write to it from your Mac. You can get NTFS-3G at:
    http://www.macupdate.com/app/mac/24481/ntfs-3g
    If you want to use the drive exclusively with your Mac then move the data off it and reformat it in Disk Utility (Applications - Utilities - Disk Utilities) as Mac OS Extended (Journaled.)

  • I received a new IMac for Christmas and set up a new .me account and I'm using this on my IMac and IPhone4S.  how do I transfer my music from my old Windows iTunes account to my new Mac account?

    I received a new IMac for Christmas and set up a new .me account and I'm using this on my IMac and IPhone4S.  how do I transfer my music from my old Windows iTunes account to my new Mac account?

    You can red this article about transfering your tunes - http://www.myfirstmac.com/index.php/mac/articles/how-do-i-move-my-itunes-library -from-pc-to-mac-and-keep-my-settings-intact
    MJ

  • I have used Airport Time Capsule with my iMac for several years. I recently purchased a MacBook Air and when it tried to backup to Time Capsule it couldn't because Time Capsule is full. How can I now use the 3TB Airport Time Capsule to back up both?

    I have used Airport Time Capsule with my iMac for a couple years. I recently purchased a MacBook Air and when it tried to backup to Time Capsule it couldn't because Time Capsule is full. How can I now use the 3TB Airport Time Capsule to back up both the iMac and MacBook Air? I don't mind losing earlier backups. I have excluded some items from backing up, but since the Airport Time Capsule is full, I can't even begin to back up the MacBook Air.

    On your Mac.......
    Open Finder > Applications > Utilities > AirPort Utility
    Click on the Time Capsule icon, then click Edit in the smaller window that appears
    Click on the Disks tab at the top of the window
    Click Erase Disk
    On the next window that appears, select the Quick Erase option, then click Erase
    The operation will only take a few minutes.
    Now you are ready to start new backups of both Macs.  Back up one Mac first, then back up the other.  Do not try to back up both Macs as the same time.

  • How do I connect my drive to iMac for best transfer speeds using an adapter

    Hi,
    My question is: which port on my "old" LaCie hard drive should I use to connect to my iMac for optimum speed transfer? Should I use an adapter?
    I am a pro music producer/songwriter & sound designer. I use large audio files in my AVID DAW Pro Tools 11 application both to read and write constantly.
    For this I have dedicated hard drives such as a 6TB Promise Peagasus with Thunderbolt 1. But it's starting to run a little slow due to all the information residing only on this 1 unit.
    I want to spread out my audio files on other hard drives as well. The one I MAYBE want to use, is a LaCie hard drive I have had for a couple of years.
    Important: I only have 1 Thunderbolt port left to use on my iMac and 1 Ethernet port.
    So do I need an adapter and what would be the speed then?
    My question is how do I connect it for optimum speed transfer?
    It is a LaCie D2 Quadra V2 E hard disk with 32mb cache.
    It has:
    1 FW 400,
    2 FW 800,
    1 High-Speed USB 2.0,
    1 eSATA 3Gb/s.
    I have an iMac 27" Mid 2011, 3.4 GHz Intel Core i7 with 16 GB 1333 MHz DDR3 running OS X 10.9.4.
    I look forward to your replies.
    Kind regards,
    Michael

    Thanks. Yes it is nice. Sounds interesting with your G force. I think I did put the Raid to 5, but cannot really remember. All I know is that when I did use Raid 5, I agreed to use 1 of the 6TB for some backup or security stuff that it takes care of on it's own. I thought it sounded good and safe when I installed it.
    Am unsure how to check it.
    I just read about the Raid block size which can be set to higher than my 32k in the Disk Doctor app to work faster with large amounts of continues data transfers. But it means that I should perform a new Raid. Not happy at all about this as I am very careful about my audio files.
    Yes, I'll definitely go for the Thunderbolt/FireWire adaptor!

  • How to allocate disk size for each user in iMac?

    Hi folks,
    I have iMac (Mac OS X, version 10.7.5) for Family, and each of my family member has account on it.
    Now, kids download many large files (several GB size files) and HD is getting full.
    So, I'd like to set maximum disk size for each user.
    Could you prvide instruction how to configure disk size for each user?
    Regards,
    Hiro

    I don't know of any way to do that by user.
    I used to partition my HD and that sets a hard limit by partition, but by user? I don't think it can be done.

  • I cannot shu down my iMac (for days) as I get the following message:Photos are being imported to the photo library.  Now as far as I know there are no photos being imported and even if there were 5 days is crazy.  How can I resolve this please?

    I cannot shut down my iMac (for days now) as I get the following message: "Photos are being imported to the photo library."
    Now as far as I know there are no photos being imported and even if there were 5 days is crazy.  How can I resolve this please?
    JLB284

    Open Activity monitor in Utilities, go to the CPU tab>All Processes, and note any process that would appear to be related to importing photos, such as iPhoto, and use Force Quit. This may only be a temporary fix, as it may start all over again when you reboot. If that happens, we need to do some more investigating.
    Also, close all open Applications, then open Terminal in Utilities and copy/paste and hit return, then post the output of this command.
    lsof -l +L -R -V | grep /

Maybe you are looking for

  • Disk I/O error

    This error comes every time i open a PDF in Preview. It also often occurs when starting (several) Adobe programs. - The mac runs perfect when i move the startup disk to a sata/usb adapter. - The mainboard was replaced last week. This had no effect.

  • How to connect SAP-BW with DataSul via ODBC

    Hi Experts, does anyone know the steps to be performed to connect a DataSul-ERP with SAP-BW to extract data. I just know that it should work with ODBC, but honestly I do not know the driver which I need to install nor further details (complete setup)

  • I am beginer to LabVIEW, I want help from people who knows LabVIEW, to complete my Project, if anybody interested, please send your mail id.

    Hello people, I am doing my final year Project on Acceleration Measurement system for Automobiles. For that i need to know more about LabVIEW. i request all of you to help me in my project, I got sturcked in the LabVIEW part of our Project. so, if yo

  • Can anyone tell me abt the cube 0ucsa_c01

    I want some information on this cube. Is it still existing or  its name is changed?

  • Iphone 6 brightnese problem

    Hi,i  got the brightnese problem on my iphone 6, im not sure is a ios8 bug or hardware problem, i turn off the auto brightness of and i turn the brightness to 100%. and every now and then when the phone get warm up the screen seem to reduce the brigh