Help with a custom calculation for rounding up/down in Adobe Pro

Hello!  I've never written a custom calculation, so I'm lost; could someone help me please write one round to high-low a.50/.49 with this field name:

CreditedTotalLocal + OtherHE

For example, if the value of this field, which is the result of the function "value is the sum of the (+) of the following fields" on two fields named CreditedXXXXLocalHE and CreditedOtherHE - between 3.0 and 3.49, this field should be 3.0.  If the value is 3.50 to 3.99, the field should show 4.0.

I'm sure it's very simple, but I've tried some things from this and other forums without success.  Help, please!

Thanks in advance,

Kim

Instead of using the "field is the sum of the following fields:" or him simplified "Field Notation" you need a custom as a calculation script

function myRound (n, d)
{
/ * By d. P. story
http://Math.uakron.edu/~dpstory/acrotex/elementary/rounding.PDF
*/
n = String(n).replace(/^,$/g,""); "
d =-1 * d
var m = Math.pow(10,d);
n * = m;
n = Math.round (n);
n / m =;
d = ( d > 0 ) ? d: 0;
n = n.toFixed (d);
return n;
}

var nResult = this.getField("CreditedXXXXLocalHE").value + this.getField("CreditedOtherHE").value;
Event.Value = myRound (nResult, 0);

or

function DoubleRound (nValue, nDec)
{
var nResult = Math.round (value * Math.pow (10, nDec + 1)) / Math.pow (10, nDec + 1);
return Math.round (nResult * Math.pow (10, nDec)) / Math.pow (10, nDec);
}

var nResult = this.getField("CreditedXXXXLocalHE").value + this.getField("CreditedOtherHE").value;
Event.Value = DoubleRound (nResult, 0);

The above two functions to round the values decimal, myRound use - Dec for the decimal value to be rounded so that the DobuleRound use the positive value for the decimal number or powers of 10 as the 1,000 with the 3 myRound and -3 for DoubleRound.

Tags: Acrobat

Similar Questions

  • Need help with SQL/PL/SQL for Dates

    Hi Experts - need help with a SQL query.

    I need to insert some date fields in a table called CALENDAR_PERIOD.

    Current data in CALENDAR_PERIOD table with their data types:

    STARTPERIOD (DATE) YEAR (NUMBER) PERIOD_LABEL (Varchar2 255)

    02/11/2014 2014 2014/02/11 SUN

    03/11/2014 2014 14/03/11 MON

    04/11/2014 2014 11/04/14 MAR

    I have to increment above values up to the year 2025. I don't know how to write SQL and increment of these values.

    Ex: My next value should insert: 05/11/2015 2014 11/05/14 WED like that I need to insert data until 12 31, 2025.

    Can you please help me with PL/SQL block?

    Really appreciate your help!

    DB version:

    Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    PL/SQL Release 11.2.0.3.0 - Production

    CORE Production 11.2.0.3.0

    AMT for IBM/AIX RISC System/6000: Version 11.2.0.3.0 - Production

    NLSRTL Version 11.2.0.3.0 - Production

    Thank you
    Sandy

    Hello Sandy,

    Maybe something like

    INSERT INTO calendar_period (startperiod, year, period_label)

    SELECT DATE '' 2014-11-04 + LEVEL

    , TO_NUMBER (TO_CHAR (DATE '' 2014-11-04 + LEVEL, "YYYY"))

    , TO_CHAR (DATE '' 2014-11-04 + LEVEL, "MM/DD/YY DY")

    OF the double

    CONNECT BY LEVEL<= date="" '2025-12-314="" -="" date="">

    ;

    ((mais je ne comprends pas pourquoi nous créons une telle table "année" et "period_label" peuvent être calculé à partir de startperiod))

    Best regards

    Bruno Vroman.

  • Help with a complex calculation of Acrobat Javascript

    I am trying to establish an if / then calculation for an Acrobat form and it is difficult.

    The premise is that when a customer enters a quantity of 3 and checked a box indicating a different package type, then apply a different price.

    I am trying to automate that in the area of totals.

    The Qty fields are labels: pre1, pre2. ... pre6

    Box is: pre_keg

    Total amount: Texte28

    the total cost is: pre_cost

    field reg price is: pre_bottle_cost

    field of different packaging: pre_keg_cost

    Guidance on how to get this working? Must it be done differently?

    There is not many or comparison of value, you have to test each value individually.

    var nSubTotal = this.getField("Text28").value;

    var bMember = this.getField("pre_keg").isBoxChecked (0);

    If ((nSubTotal == 3 || nSubTotal == 6 || nSubTotal == 9) & (bMember)) event.value = nSubTotal * 66.6666667;

    of other if(!bMember) nSubTotal = event.value * 75.

    You might also want to round the value of the event as it is financial and amounts of finance Word calculations are not performed in mils.

  • Help with PDF form calculation

    OK, so I don't know if it's even possible, but what I'm wanting is for customers to enter their income in the small "income", and then to the small 'contribution' pre-fill with how they may have contributed...

    If the value is less than $31 920 then it is equal to $1000 - that works

    If the value is more than $61 920 then it is equal to $0, which also works

    If the value is between $31 920 and $61 920 to apply the following formula:

    1000. (0.0333*(Income-31920)) -c' is where I am confused!

    I used the following code which works for the lesser than / more requests... However when I ask him to really take the value in the box and use it to make a calculation, that I have no idea where to start (or even if it is possible) so (as you can probably) I just made up some kind of code that is not working well...

    If (this.getField("income").value < 31920) {}
    event.value = 1000
      } else {}
    if (this.getField("income").value > 61920) {}
    event.value = 0
      } else {}
    event.value = 1000-(0.03333* ((this.getFeild ("income"))-31920))
      }
    }

    Notice to lovers?

    You were very close. Try something like the following in the custom calculation of the calculated field script:

    (function () {}

    Get the value of the field
    var v = getField("income").value;

    If (v< 31920)="">
    Event.Value = 1000;
    return;
    }

    If (v > 61920) {}
    Event.Value = 0;
    return;
    }

    v is > = 31920 and =<>
    Event.Value = 1000 - (0.03333 * (v - 31920));

    })();

  • Need help with the port forwarding for a XBox remote Streaming

    I have a router R6200v2 and need help with port forwarding.

    I came across this set of instructions for setting up stream port forwarding XBox remotely from anywhere

    http://kinkeadtech.com/2015/07/how-to-stream-Xbox-one-to-Windows-10-from-anywhere-with-Internet/

    I have no idea when it comes to such things and I want to make sure I do it correctly without messing up my existing home network.

    Port Forwarding and triggering Port pages setup look very different from what the guy uses. Can someone walk me through what I do to set up please?

    Hi @varxtis,

    You must enter them in the field for a start external Port and external completion Port. You will need to send individually except for the range of 49000-65000. The steps are as follows.

    1. create a Service name (it could be something else that you cannot use the same service name twice. Ex. XBOX1, XBOX2 and so forth.)

    2. Select the type of service (TCP, UDP or both)

    3 entry 5050 times a start external Port and external endpoints.

    4. Select the IP address of your XBOX.

    5. Select apply.

    6 do the same for other port numbers. To the beach, use 49000 for the external departure Port and for the external completion Port 65000.

    Kind regards

    Dexter

    The community team

  • HP laptop: need help with internet and search for things

    whenever I'm on chrome internet explore google ect and go to tab it is says unknown error or no internet connection or anything and just takes me chrome ect. I need help with this im involved in a byod class and my computer won't let me on what whatever usually it just starts out black and white and the seeds I my search request

    Yes it's a Windows 10 and it arrived already installed I'll take the other info now

  • Script / calculation for rounding decimal numbers?

    Hi all

    I am building a form an aspect at the expense of replacing the bulbs over time, based on average annual operating hours and the average lifetime of the bulb. Normally, I can find it by dividing the length of the bulb on the use of the bulb and multiply that by the cost, replacement that works very well for our use, if you replace light bulbs at least once a year. However, we have blisters that can burn continuously for 5 years, and since you can't 20% of a light bulb, I really can't go out with on average the cost because he is not spending real money.

    So what I'm looking for is a script or a calculation that will be 'X' (field) round to an integer lowest . When X = 1, which would mean the bulb burned his life hours and must be replaced. In this case I can multiply this result rounded by the price and I should be ok.

    Basically;

    If 'X' is greater than 0 or 1, it might round down to 0, is even x is effectivement.95.

    ANY help, I can get to this would be much appreciated! Thank you

    You can use the Math.floor method. For example:

    var x = 0.95;

    var y = Math.floor (x);

    App.Alert (y);  Poster 0

    If you need assistance with the creation of a custom script format/calculate/validate that does this, post again an inclusion more details on how you want the form to behave.

  • Need help with HP8050 custom made size

    I would like to print photos of 8 x 12 inch on my Photosmart Hp8050.  Pls tell how to set up the printer for this custom setting. I'm on Mac OS10.6.8.

    Thank you.

    With your help, I now understand the "custom" option and provided a custom option 8x12in. "."

    Ive tried to test this custom functionality by inserting a sheet of A4 (different size than 8 x 12)... and get the following error message:

    Paper size error: the custom paper size specified is not supported in the selected tray.

     
  • Need help with a query complex for the production database

    Hello again,

    I need your help once again, for a query how to show me how long each stage of production is by order.
    See examples of data and what I expect.
    Thank you all for your help.

    We use Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production

    Here the example data tables:
    CREATE      TABLE      TABLE_2
       
    (     "ORDER_NR"      VARCHAR2 (12)
    ,      "PRIORITY"      VARCHAR2 (2)
    ,      "WO_STEP"      VARCHAR2 (1)
    ,      "STEP_DATE"      DATE
    );
    
    CREATE      TABLE      TABLE_1
    (     "ORDER_NR"           VARCHAR2     (12) PRIMARY KEY
    ,      "PRIORITY"           VARCHAR2      (2)
    ,      "CREATE_DATE"      DATE
    ,     "ACT_STEP"          VARCHAR2     (2)
    ,     "STEP_DATE"          DATE
    ,     "EMPLOYEE"          VARCHAR2     (5)
    ,     "DESCRIPTION"     VARCHAR2     (20)
    );
    
    INSERT      INTO      TABLE_1      (ORDER_NR,               PRIORITY,      CREATE_DATE,                                                        ACT_STEP,     STEP_DATE,                                                            EMPLOYEE,     DESCRIPTION) 
                        VALUES           ('1KKA1T205634',     '12',          TO_DATE('10-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'),     'U',          TO_DATE('28-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'),     'W0010',     'CLEAN HOUSE');
    INSERT      INTO      TABLE_1      (ORDER_NR,               PRIORITY,     CREATE_DATE,                                                        ACT_STEP,     STEP_DATE,                                                            EMPLOYEE,     DESCRIPTION)
                        VALUES           ('1KKA1Z300612',     '12',          TO_DATE('08-FEB-13 14:00:00','DD-MON-RR HH24:MI:SS'),     'F',          TO_DATE('20-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'),     'K0052',     'REPAIR CAR');
    
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'A',          TO_DATE('12-FEB-13 13:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          '5',          TO_DATE('13-FEB-13 09:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'K',          TO_DATE('13-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          '5',          TO_DATE('13-FEB-13 11:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'K',          TO_DATE('13-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          '5',          TO_DATE('13-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'C',          TO_DATE('14-FEB-13 08:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'B',          TO_DATE('14-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'E',          TO_DATE('18-FEB-13 13:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'F',          TO_DATE('20-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'S',          TO_DATE('21-FEB-13 08:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'R',          TO_DATE('21-FEB-13 09:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1T205634',     '12',          'U',          TO_DATE('28-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'A',          TO_DATE('12-FEB-13 13:52:42','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          '5',          TO_DATE('13-FEB-13 09:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'K',          TO_DATE('13-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          '5',          TO_DATE('13-FEB-13 11:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'K',          TO_DATE('13-FEB-13 12:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          '5',          TO_DATE('13-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'C',          TO_DATE('14-FEB-13 08:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'B',          TO_DATE('14-FEB-13 10:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'E',          TO_DATE('18-FEB-13 13:00:00','DD-MON-RR HH24:MI:SS'));
    INSERT     INTO      TABLE_2      (ORDER_NR,               PRIORITY,     WO_STEP,     STEP_DATE)
                        VALUES           ('1KKA1Z300612',     '12',          'F',          TO_DATE('20-FEB-13 16:00:00','DD-MON-RR HH24:MI:SS'));
    COMMIT;
    And here's what I expect of my request:
    SYSDATE     28.Feb.13 14:00                                                                                     
                                                                                              
    ORDER_NR     PRIORITYCREATE_DATE     STATUS     STATUS_DATE     DESCRIPTION     AGE_1     AGE_2     WAITNG     STEP_A     STEP_B     STEP_C     STEP_5     STEP_K     STEP_E     STEP_F     STEP_S     STEP_R     
    1KKA1T205634     12     10.Feb.13 10:00     U     28.Feb.13 12:00     CLEAN HOUSE     18,083     8,833     2,125     0,833     4,125     0,083     0,750     0,208     2,125     0,666     0,042     7,125     
    1KKA1Z300612     12     08.Feb.13 14:00     F     20.Feb.13 16:00     REPAIR CAR     20,000     16,042     2,125     0,833     4,125     0,083     0,750     0,208     2,125     0,666          
    And now the explanation for the result of the query:
    The AGE_1 is the difference in days between the "CREATE_DATE" and if EXSIST L'ETAPE 'U' then STEP_DATE or if the STEP 'U' is not found in TABLE_2 then it should show the difference in days between the "CREATE_DATE' and the 'SYSDATE.
    The AGE_2 is the difference in days between the STEP "A" STEP_DATE and IF EXSIST L'ETAPE 'R' then STEP_DATE or if the STEP 'R' is not in TABLE_2 then it should show the difference in days between the "CREATE_DATE' and the 'SYSDATE.
    The EXPECTATION is the difference in days between CREATE_DATE and STEP 'A' STEP_DATE
    The following columns indicate the days, how long the ORDER_NR remains in these TIMES, if an ORDER_NR comes in the same STEP should be calculated together more than once.
    If the ORDER_NR jump a step, it should show a zero in the specific field.

    I hope that my explanation is good enough, my English skills are far from good.

    Thank you for all your help.

    Hosts Reinhard W.

    Solomon Yakobson says:
    Just add the amounts:

    In fact, you could edit all CASES:

    with t2 as (
                select  t.*,
                        lead(step_date) over(partition by order_nr order by step_date) next_step_date
                  from  table_2 t
               )
    select  t1.*,
            nvl(
                max(
                    case t2.wo_step
                      when 'U' then t2.step_date
                    end
                   ),
               sysdate
              ) - t1.create_date age_1,
            nvl(
                max(
                    case t2.wo_step
                      when 'R' then t2.step_date
                    end
                   ),
               sysdate
              ) - t1.create_date age_2,
            sum(
                case
                  when t2.wo_step in ('B','5') then t2.next_step_date - t2.step_date
                end
               ) step_b_5,
            sum(
                case t2.wo_step
                  when 'C' then t2.next_step_date - t2.step_date
                end
               ) step_c,
            sum(
                case t2.wo_step
                  when 'K' then t2.next_step_date - t2.step_date
                end
               ) step_k,
            sum(
                case t2.wo_step
                  when 'E' then t2.next_step_date - t2.step_date
                end
               ) step_e,
            sum(
                case t2.wo_step
                  when 'F' then t2.next_step_date - t2.step_date
                end
               ) step_f,
            sum(
                case t2.wo_step
                  when 'S' then t2.next_step_date - t2.step_date
                end
               ) step_s,
            sum(
                case t2.wo_step
                  when 'R' then t2.next_step_date - t2.step_date
                end
               ) step_r
      from  table_1 t1,
            t2
      where t2.order_nr = t1.order_nr
      group by t1.order_nr,
               t1.priority,
               t1.create_date,
               t1.act_step,
               t1.step_date,
               t1.employee,
               t1.description
    /
    
    ORDER_NR     PR CREATE_DA AC STEP_DATE EMPLO DESCRIPTION      AGE_1      AGE_2   STEP_B_5     STEP_C  STEP_K     STEP_E     STEP_F        STEP_S     STEP_R
    ------------ -- --------- -- --------- ----- ----------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------
    1KKA1T205634 12 10-FEB-13 U  28-FEB-13 W0010 CLEAN HOUSE 18.0833333 10.9583333      4.875 .083333333 .208333333      2.125 .666666667 .041666667      7.125
    1KKA1Z300612 12 08-FEB-13 F  20-FEB-13 K0052 REPAIR CAR   44.252338  44.252338      4.875 .083333333 .208333333      2.125
    
    SQL>
    

    SY.

  • Need help with a simple calculation.

    I will apologize to the front. I have no knowledge of writing Javascripts. I can use them if someone writes to me, but that's all. I created a simple form with money dealing. I have boxes of different text for the user to enter a number based on what type of coin it is.Currency.jpg

    In the left column, they will enter a number. I would like for the right column counting from that. However, the quantity of money (ie. 100, 50, 20, etc.) is not a text field. It is simply the text entered in another program. I'm looking for is a way to do this without having to do the amounts in currency a text field. Something along the lines of X * 100 is.

    If you can give any help or suggestion, I'd be very happy.

    Thank you.

    You will have to hard code the quantity of money in the script.

    In the first line, create 2 text, Text1 and Text2 fields. Use what the calculation script personalized to Text2:

    If (this.getField ("Text1") ".value! == ' ') {}
    This.getField("Text1").value = Event.Value * 100;
    }

    Clears Text2 if nothing is in Text1
    else event.value = «»

    The second pair of text fields would be "50" instead of "100" in line 2, etc.

  • need help with 'ifs' field calculation

    Hello

    I am trying to create a field in a form that adds 20% for a cost base according to which of these options is selected in a drop down list which forms the title of the form

    This is a form of new/used vehicle and requires 20% VAT to be added to the basic price if the vehicle is "new".

    If the "vehicle" then no VAT should be added

    Is this possible?

    If this can help I could use radio buttons to determine whether the vehicle is 'New' or 'Used' in the upper part of the form?

    I'm out of my depth here with java - I'm a humble designer more usually responsible to make things just look pretty on the page!

    You can you "techies" help?

    Yes, and it is even possible to do it without an 'if' statement and without writing any JavaScript.

    You need to know about domain names. Using the field names, types, and properties:

    Subtotal - amount to calculate the tax on - field digital - read-write - visible

    TaxRate - tax rate applies if taxable - digital field - read-only - hidden

    Taxable - check 2 boxes eponymous - an export value of 1 (default is checked), the other export value 0

    TaxAmount - amount of tax to be applied - field digital - read only - visible - calculation: "field is the product of the following fields: ', subtotal, TaxRate, taxable.

    -Sum of the subtotal and TaxAmount - GrandTotal numeric field, read-only, visible - calculation "field is the sum of the following fields:" TaxAmount and GrandTotal

  • Need help with the Support Assistant for TouchSmart 310

    I tried to install the latest version of HP Support Assistant manually by searching on the HP customer service and it removed the previous version first. Nothing happened thereafter. I thought it would open HP Support Assistant after agreeing to terms and policies, but he did nothing. When I click on the HP Support Assistant icon, I get "year error occurred" on the very top of the page.  I am not in a position to make changes within the program - everything is gray.

    I tried unistalling tune but I get a message stating: Error 1316 - a network error has occurred trying to read from the file c:\windows\installer\hp support assistant.msi. I tried to look for this file and have not found. I even typed in the search and was not able to find it so I am not able to uninstall it.

    I've had this computer for a year now and have never been able to upgrade to the latest version of HP Support Assistant within the program. I'd get what your computer does not meet the minimum requirements and so I left it alone. The reason why I decided to manually update was because I have problems with the E: drive. And from what I read on HP, to see if I have a hard drive failed, I would need to run tests using HP Support Assistant, but unfortunately, I am not able to do this since I can't access HP Support Assistant.

    I have HP TouchSmart 310-1125f. Windows 7 64-bit.

    Hello

    It is good to hear than the detected "Fixit" and was able to remove the existing installation of HPSA such as what can many fixed some of the problems that can prevent a new version installation correctly.

    First, even if you always have the latest installer HPSA, download it again from the following link and save it in your downloads folder.

    HP Support Assistant.

    One when you're done, open your download folder, click with the right button on the Setup, select Extract 7 - zip, select the files and then click Ok.  Open the new folder sp58919 snippet and see you another installer called Setup - this right click and select new, 7-zip, select extract files and then click Ok.  Open the new installation folder, the installation application ( 4th down with a size of 249KO ) right-click and select "Run as Administrator" to launch the installation.

    Did the full install now and if so, HPSA does work properly?

    Kind regards

    DP - K

  • Need help with downloading driver WLAN for Satellite A100 (PSAA9)

    Hello!

    I should update the drivers for my Satellite A100 (PSAA9) according to the last email received by Toshiba. Check it HERE

    However, I am not sure they are the right ones for my Intel(r) PRO/Wireless 3945ABG. The download page includes not 3945ABG, but only Wireless 3945.

    Any help? I'll download them anyway? Thank you

    Hello

    you know that you can use the drivers, because they are for this series of w - lan cards. Moreover, intel drivers for the lan cards are almost the same won´t then you have problems with the installation again. Don t worry, just download and install them, they are the right ones for your machine/w-lan card.

    If you have additional questions just ask their...
    Welcome them

  • Need help with Windows 7 drivers for Radeon HD 7670 m on a preinstalled Windows Pavilion g6-2300sy 8

    Hey, I recently bought a HP Pavilion g6-2300sy with Windows preinstalled 8 and decided to install Windows 7 on it instead, as I'm rates more familiar with it. Now I seem to be running into issues with the Radeon HD 7670 m laptop graphics card, since I can't find a driver that works for her. I tried several generic drivers AMD HD 7000 series, but none of them is not working - Windows continues to give the error code 43.

    How can I fix without going back to Windows 8? Any help would be really appreciated.

    Hello:

    For the g6-2300sy, use the W7 x 64 drivers and software for this model:

    For the graphics, you install only the AMD graphics driver. Do NOT install the Intel driver.  The AMD driver has the graphics for two video cards.

    DO NOT USE ANY BIOS OR FIRMWARE FROM THIS LINK FILES

    http://h10025.www1.HP.com/ewfrf/wc/softwareCategory?cc=us&DLC=en&LC=en&OS=4063&product=5278311&softw... =&

  • Help with Husqvana transfer 3D for Windows 7 XP

    Husqvarna 3d will not be copied in windows 7, you can tell me how I can do this. I want to transfer my embroidery on my Windows 7 and can not. Help!

    I've heard XP did put at day end October so need to do very soon.

    It is unclear what you mean by "won't copy.  If you're having trouble installing the software 3D of Husqvarna on a Windows 7 system, see--> http://www.joeldare.com/wiki/installing_husqavarna_3d_embroidery_on_windows_vista

    Download the files directly from the page with instructions, or the following:

    Here's where you get the upgrade patch 7.25 and the "patch Vista dongle"--> http://www.vsmsoftware.net/Registration/3D/Updates.htm

    And it is the site of "Other useful software" for the "the Hasp dongle driver'--> http://www.husqvarnaviking.com/ko/8588_4197.htm

    Also, see--> http://www.secretsof.com/wp/?p=1433 and note that:

    If you bought your professional Husqvarna Viking 3D embroidery system after April 1, 2006, you will be entitled to a free upgrade to the Husqvarna Viking 4 d professional embroidery system; Check your details in the VSM software product registration database. Please ensure that the details of your authorized dealer are also correct, as in most of the cases your free update will be delivered to your favorite retailer.

    Finally, Windows XP support must end on April 8, in order to have a little more time than the end of October.

Maybe you are looking for