Another issue of calculation of Date.

Hi all

OK, this is a continuation from here: http://forums.Adobe.com/thread/906583 Actually, I need to change the shape a bit and therefore need a continuation of this discussion result.

Short version - I need to take a later date that is calculated by taking the result of a menu drop-down (0-13) and using this script to find one day in the futue:

var f = this.getField ("BILLINGCYCLEDATE");

G1 var = this.getField ("DAYS");

var g = g1.value

var today = new Date();

Add var = today.valueOf ();

Add += 1000 * 60 * 60 * 24 g,

future var = new Date (add);

f.Value = util.printd ("mm/dd/yyyy", future);

Basically, it adds a number of days to today and giving a result.

What I have to do is take this result, add a different number of days (0-13 new) to give a new date... and I'm fighting to get a result at the moment.

So here's a scenario real workd:

How many days from today the contract begin?  (optional 0-13 days) RESULT = A.

How many days of RESULT-a first payment will be due (optional 0-13) = RESULT B.

Who is?

Thanks for any help you might be able to provide.


Ant

Sorry its add += 1000 * 60 * 60 * 24 *(g+n) actually... .theres 1000 milliseconds in a second, 60 seconds in a minute, 60 minutes in one hou, r 24 hours a day, expires the number of days... so the multiplication g will give you how many days until departure... and add the n days until the billing so that the total will give you the date of the invoice.  I just did the math wrong.  Hope this clears for you.  you could also turn g + n in a variable so that the add + always ends in a single variable.

Tags: Acrobat

Similar Questions

  • Calculation of date...

    I have a form that employees use to calculate payroll deductions and one of the fields is the "Hire Date". There is another area that is "Eligibility Date", which is 90 days from their date of hire. Is there a way to make the field 'Date of eligibility' to be a calculated field, to make it add 90 days of hire date and display the resulting date? Thank you!

    Hello

    in the case of calculate use a script like this.

    $.rawValue = Num2Date(Date2Num(HireDate.formattedValue, "MM/DD/YYYY") + 90, "MM/DD/YYYY")
    
  • My computer motherboard laptop disappeared. Connected my hard drive to another laptop but still, no data is found, nor my hard drives are detectable? Very depressing and need the data. Help, please

    My laptop broke down (motherboard, Gone) and is not repairable. The technician took my hard MovieFrame and there is a very important document that I need very badly. I bought a proper case and connected my hard drive to another laptop but unfortunately no data can be found, nor my hard drives are detectable? I am very depressed and need the data. Please helllllllllllllllllllllllllllllllllllllllllllppppppp

    Hi Adel Bushager,

    I suggest you contact the store local tech or the manufacturer of the system to help with recovery of data from the hard drive.

    Hope this information is useful.

  • Calculation of Dates in a form

    OK I found this article and it works: calculation of a date of end

    BUT

    How can I use it but calculate a date that is not a weekend rental.

    Example:

    No one has joined the service: that the date is in area 1:

    Track 1 is made 3 days after this date.

    Followed 2 is 7 days after following up to this day 1.

    Final followed are are 90, 60, 30, 7 days and 24 hours prior to his first post of duty which is the field of Date 2.

    Date field 1:20150801 (join Date)

    Date field 2:20150501 (Ship Date)

    F/U: added 3 days for 1 Date field 3 day but go to the first day of business (Monday) if the date falls on weekend.

    7 day F/U: Add 7 days to 3 days F/U calculated from Date of joining. If calculated from 3 days it will not fall on a weekend.

    90 days F/U: subtracts 90 2 field Date but days go to the previous working day (Friday) if the date falls on weekend.

    60 days F/U: subtracts 60 2 field Date but days go to the previous working day (Friday) if the date falls on weekend.

    30 day F/U: subtracts 30 days of 2 field Date but go to the previous working day (Friday) if the date falls on weekend.

    7 day F/U: subtracts 7 days of 2 field Date but go to the previous working day (Friday) if the date falls on weekend.

    24 HR F/U: subtract 1 day from Date field 2, but will remain a weekend if it falls on a weekend

    I found one that you wrote in 2013:

    Calculate a script customized for field Nouvelle_date

    (function () {}

    Get the date in the OrigianlDate field

    var sDate = getField("OriginalDate").valueAsString;

    Convert string to date

    var d = util.scand ("YYYYMMDD", sDate);

    Get the number of days added, as a number

    var days = getField("DaysAdded").value;

    Add days to date

    d.setDate (d.getDate () + days);

    possible setting for the weekend

    nAdj var = 0;

    Get the zero according to the day of the week starting on Sunday

    nJour var = d.getDay ();

    test for Sunday or a value of 0 days of value

    nAdj if(nDay == 0) = 1; bump on Monday

    test for Saturday or a value of 6 days

    nAdj if(nDay == 6) = 2; bump on Monday

    set the date

    d.setDate (d.getDate () + nAdj);

    set the date calculated by necessary bump

    If (sDate) {}

    Event.Value = util.printd ("YYYYMMDD", d);

    } else {}

    Event.Value = "";

    }

    })();

  • Help please - issue of calculation of execution time

    Hello

    Version of DB: database Oracle 11 g Enterprise Edition Release 11.2.0.3.0
    Previous thread (RE: help please - issue of calculation of execution time) mode lock, therefore open new thread.

    Karthick_Arp thanks for your great help with the merge code.

    I modified my code with Merge statement instead of loops and internal loops.

    PFB code and output. But still I am negitive values over time of execution because end_time < start_time is coming. Please suggest me how to solve this problem.

    1 CREATE OR REPLACE PROCEDURE my_proc
    2 EAST
    3 sql_string VARCHAR2 (4000);
    4 v_start_time TIMESTAMP;
    5 v_end_time TIMESTAMP;
    6 v_rowcnt NUMBER;
    7. START
    8 FOR c1 IN (SELECT ROWNUM tab_no, tablename, TYPE
    9 FROM stored_ddl_policies by tablename) / * mourning tablename order * /.
    10 LOOP
    11 sql_string: = q']
    12 merge into #tablename # b
    13 using (select empkey, id, dt
    14de emp_base) on (a.empkey = b.empkey)
    15when matched then update set b.id = a.id, b.dt = a.dt] ";
    16 sql_string: = REPLACE (sql_string, "#tablename #", c1.tablename);
    17 v_start_time: = SYSTIMESTAMP;
    18
    19 sql_string EXECUTE IMMEDIATE.
    20
    21 v_end_time: = SYSTIMESTAMP;
    22 v_rowcnt: = SQL % ROWCOUNT;
    23 DBMS_OUTPUT.put_line (c1.tablename); / * added for display * /.
    24 DBMS_OUTPUT.put_line (v_start_time);
    25 DBMS_OUTPUT.put_line (v_end_time);
    26 INSERT INTO exec_time (TABLE_NAME, START_TIME, END_TIME, EXCUTION_TIME, NO_OF_RECORDS_PROCESSED)
    27 VALUES (c1.tab_no |) ' ' || C1. TableName, v_start_time, v_end_time, v_end_time - v_start_time, v_rowcnt);
    28 END LOOP;
    29
    30 COMMIT;
    31EXCEPTION
    32 THEN THAN OTHERS
    33 THEN
    34 DBMS_OUTPUT.put_line (SQLERRM);
    35END;
    16 m

    OUTPUT:
    select * from exec_time by start_time desc
    TABLE_NAME START_TIME, END_TIME EXCUTION_TIME NO_OF_RECORDS_PROCESSED

    6 TAB6 31/05/2013 3:07:00.282065 AM 31/05/2013 3:06:47.103731 AM - 00 33 00:00:13.178334
    23 TAB23 31/05/2013 3:06:56.159271 AM 31/05/2013 3:06:56.342313 AM + 00 00:00:00.183042 1013
    20 TAB20 31/05/2013 3:06:47.104115 AM 31/05/2013 AM + 00 00:00:09.054770 158169 3:06:56.158885
    13 TAB13 31/05/2013 3:06:41.668578 AM 31/05/2013 3:06:31.690199 AM - 00 28 00:00:09.978379
    7 TAB7 31/05/2013 3:06:41.624134 AM 31/05/2013 3:06:41.668468 AM + 00 00:00:00.044334 0
    12 TAB12 31/05/2013 3:06:31.690582 AM 31/05/2013 3:07:00.281522 AM + 00 00:00:28.590940 240715
    3 TAB 3 31/05/2013 3:06:24.669461 AM 31/05/2013 3:06:41.623421 AM + 00 00:00:16.953960 47426
    2 TAB2 31/05/2013 3:06:24.182326 AM 31/05/2013 AM + 00 00:00:00.486723 5242 3:06:24.669049
    8 RAB8 31/05/2013 3:06:21.416823 AM 31/05/2013 3:06:24.181956 AM + 00 00:00:02.765133 28636
    1 TAB1 31/05/2013 3:06:16.320679 AM 31/05/2013 AM + 00 00:00:05.095731 132633 3:06:21.416410
    16 TAB16 31/05/2013 3:06:07.446056 AM 31/05/2013 AM + 00 00:00:08.874227 421215 3:06:16.320283
    11 TAB11 31/05/2013 3:06:07.442987 AM 31/05/2013 3:05:55.361263 AM - 00:00:12.081724-00 60273
    19 TAB19 31/05/2013 3:06:03.683463 AM 31/05/2013 3:06:07.445630 AM + 00 00:00:03.762167 77549
    15 TAB15 31/05/2013 3:06:00.291696 AM 31/05/2013 3:06:03.683017 AM + 00 00:00:03.391321 77117
    10 TAB10 31/05/2013 3:05:57.787733 AM 31/05/2013 AM + 00 00:00:09.654601 517960 3:06:07.442334
    18 TAB18 31/05/2013 3:05:56.742873 AM 31/05/2013 3:06:00.291274 AM + 00 00:00:03.548401 105630
    24 TAB24 31/05/2013 3:05:55.361707 AM 31/05/2013 3:05:56.742506 AM + 00 00:00:01.380799 15115
    4 TAB4 31/05/2013 3:05:18.873303 AM 31/05/2013 3:05:06.966972 AM - 00:00:11.906331-00 49078
    21 TAB21 31/05/2013 3:05:13.609759 AM 31/05/2013 3:05:18.872878 AM + 00 00:00:05.263119 56525
    22 TAB22 31/05/2013 3:05:09.070048 AM 31/05/2013 AM + 00 00:00:48.717139 451439 3:05:57.787187
    5 TAB5 31/05/2013 3:05:06.967411 AM 31/05/2013 3:05:09.069642 AM + 00 00:00:02.102231 773
    25 TAB25 31/05/2013 3:05:05.198282 AM 31/05/2013 AM + 00 00:00:08.410911 308670 3:05:13.609193
    14 TAB14 31/05/2013 3:04:59.575951 AM 31/05/2013 3:05:05.197701 AM + 00 00:00:05.621750 12118
    17 TAB17 31/05/2013 3:04:43.740910 AM 31/05/2013 3:04:59.575503 AM + 00 00:00:15.834593 529
    9 TAB9 31/05/2013 3:04:38.286041 AM 31/05/2013 3:04:59.011404 AM + 00 00:00:20.725363 65921

    Thanks in advance.

    Published by: 1008545 on May 31, 2013 01:40
  • Calculations on data from PDM

    Hello

    I made a program that can store data of a cRIO by FIFO at speeds of up to 50 kHz and storing data on TDMS file on my host. The data comes from two modules of NI 9237 strain with a total of 8 inputs. Due to performance issues, I can't convert the RAW data for the force and store. Instead I store the RAW in PDM data and have a low priority to force the computation to give me an indication of the current forces in RT

    After collecting data, I want to perform the conversion by force on the data stored in my PDM file. Data are gathered on the FPGA in the following way(see fpga.png): data are sent to build the array and then passed into the FIFO.
    On the host, the array is sent of the FIFO to decimate with group name "RAW data" and 8 channels-> build-> TDMS files table. As another group on the PDM file, I store the force during their stay in the RT

    What is the best way to do programming for playback of the PDM file and convert the data to the forces? I tried to use open-> TDMS TDMS content list-> TDMS read that gives me a waveform output. At this stage I don't know how to proceed. How to cut out the shape of wave in channels 1-8 so I can perform the conversions with my sub VI? Or did I read something wrong since I am getting the output of waveform of the PDM? I want to read the file 'RAW data' group and the channels 1-8.

    Kind regards.
    Christian

    I expected something more for your analysis.

  • Copy the files to a flash to another drive "after a certain date only.

    It is possible to copy all the files to a flash drive to another flash drive "after a certain date only' uses the function of 'Windows Explorer '?  In this way I would like to avoid having to delete all target flash player before updating for the latest directories and files.

    Hello

    This can be done using Windows Explorer, you will need to create a program that runs the task. I suggest you to ask your question in the MSDN forums for assistance on this issue.

    http://social.msdn.Microsoft.com/forums/en-us/categories

  • VMs migration from one to another on ESXi 5.1 data store (free license)

    I'm under ESXi in my lab (for the Cisco voice servers and a few Windows virtual machines). Virtual machines are on a datastore iSCSI hosted by a Netgear ReadyNAS Pro Business. Due to major problems with iSCSI on the ReadyNAS platform and the inability of Netgear to resolve problems (blocking NAS requiring a hard reset), I decided to buy a QNAP TS - 569 L and use it to host my ESXi data store. Now, I'm migrating my VMs from the iSCSI data store hosted on the ReadyNAS to the iSCSI data store hosted by QNAP.

    My VMs are supplied thin, and I want to preserve thin provisioning after migration. The data store Navigator ESXi can move (or copy) machines virtual data to another store, but thin-set in service virtual machines become thick-set service once they have been moved (or copied). Somebody advised Veeam to that end, I've installed and configured. Unfortunately, Veeam-error with the message that the current license does not have the migration of virtual machines from a data store to another. Just today, I learned that he must have at least the ESXi Essentials ($500) license to allow this type of migration of Veeam.

    I also tried OVFTool (the MMware command line utility), using the following syntax:

    . / ovftool - ds QNAP-iSCSI - dm = vi thin: / / vi [email protected]/CUCM-Pub: / / [email protected]

    where:

    QNAP-iSCSI is the name of the data store on the QNAP

    192.168.200.10 is the IP address of my box of ESXi that is connected to two data stores iSCSI (the one organized by the ReadyNAS and the other by the QNAP).

    CUCM-Pub is the name of the virtual machine on the ReadyNAS iSCSI data store I'm migrating to the QNAP iSCSI data store.

    However, I get the following error message:

    Error: Unexpected Option: vi: / / [email protected]/CUCM-Pub

    This is probably due to the same issue - free ESXi license does not allow this type of VM migration. So, what are my options with free ESXi license? I'm not willing to pay $500 for the license of the essential at this stage.

    Thank you!

    A few options, I can think of are:

    • export to the FVO and re - import
    • use VM explore Trilead and backup/restore virtual machines
    • Use the vmkfstools command to copy the virtual disks

    André

  • Display of the results of calculation of data provided by the user in the dynamic text field

    Hi people,

    I am trampled on this one... Sorry...

    So, I'm working on a calculator, hitting a button, will display results based on the user data. I can get all the math to work OK, and he retraces perfectly.

    Now, the question becomes it to display on the fla itself.

    (The strange thing is, I had to keep all the data in the function. If I took it out, I would get all kinds of errors NaN and others. "But keep it within the service does the job very well.)

    What I'm missing here? I tried to do a total.set_Text = refundAmt; - but no luck. (The name of the instance to the box in the FLA file is 'total')

    Here is my code:

    ------

    trace_btn.addEventListener (MouseEvent.CLICK, showStuff);

    function showStuff (evtObj:MouseEvent): void {}

    var theSalary:Number = parseFloat (this ["inputSalary"] .text);

    var theDaysYouWorked:Number = parseFloat (this ["inputDaysYouWorked"] .text);

    var theEligibleDays:Number = parseFloat (this ["inputEligibleDays"] .text);

    var refundAmt:Number = theSalary * 0.005 / theDaysYouWorked * theEligibleDays;

    var lawyerFee20:Number = refundAmt * 0.80;

    var lawyerFee25:Number = refundAmt * 0.75;

    var lawyerFee30:Number = refundAmt * 0,70;

    var lawyerFee35:Number = refundAmt * 0.65;

    trace (refundAmt, "$" refundAmt.toFixed (2), "$" + lawyerFee20.toFixed (2), "$" + lawyerFee25.toFixed (2), "$" + lawyerFee30.toFixed (2), "$" + lawyerFee35.toFixed (2));

    }

    -------

    If I try to start another function, the results are not part of the scope, so I can't access it.

    Thoughts? Thanks in advance!

    N

    large.

    Please mark this thread as answered, if you can.

  • Import/coupling of spreadsheet calculation + updated data in the form

    This is an import/formatting of the data that I'm working on. http://imgur.com/a/fr0C1 [1]

    When I sections are looking exactly how I would like it, I'm creating table styles, cell and new paragraph. When the linked spreadsheet is updated it loses formatting. When I reapply all styles, he will eventually justify the Centre 2 data columns to the right, rather than centered & left.

    Thanks for the idea!

    Answered in another forum:

    ElectricCharlie

    To do this, I'll make sure that your table style specifies "[None]" to all of your cell styles. I create a cell for each column style and create the corresponding paragraph for each paragraph style styles. Within each cell style, specify the desired paragraph style. (This should tumble down the styles correctly.)

    I don't directly apply paragraph for text styles, because that can be reset to re - import. And I'll make sure that in your desired result, that there is no overridden style. Substitutions might be getting dropped when you change the text.

    I have not mocked this scenario on my end, but I think it will solve the problem.

  • Issue of calculation Excel addins

    Hi team,
    EMP 11.1.2.2 can you please tell me what script (by default) Calc in the worksheet excel Addins? I was under the impression that (by default) calc's ALL CALC. But when I use the script to calc add-ins Excel (default) after locking/sending data of the calc does not work properly and I do not see as expected higher level data.

    But when I create a calc script, as mentioned below, and when I use it after locking and send for calculation I see expected results.

    calc_all. CSC
    =======
    SET CACHE HIGH;
    UPDATECALC OFF SET;
    CALC ALL;

    I appreciate your comments.

    Go to PARTY and do a right-click on the database and select set-> default calculation. It will show you what is on the default calc. If it just says: Calc All; or else replace it with your Calc_All script. It could be that, since by default, there is no intelligent calculation off by default, that might be your problem. My boy there are a lot of flaws, he

  • Issue of reports of data store

    Looking for a fairly simple report... I've seen reports that do what I want, but I don't have the knowledge to assemble them.

    You are looking for the following information:

    Name of data store - free space (in GB if possible) - number of virtual machines on the data store

    I found this to get the number of virtual machines on the data store:

    Get-Datastore. Sort-Object Name. Get-View | Format-Table @{Label = "Data store name"; {Expression = {$_.Info.Name}}, @{Label = 'Number of virtual machines'; Expression = {$_.} UM length}}

    That works, but I need to add a column free space.

    FreeSpace is stored in the. Property of Info.FreeSpace.

    Just add another column as

    @{Label = "FreeSpaceGB"; Expression={$_.info.FreeSpace/1gb}}

    To put it all together:

    Get-Datastore

     

     

    | Sort-Object Name | Get-View | Format-Table @{Label = "Data store name"; {Expression = {$_.Info.Name}}, @{Label = 'Number of virtual machines'; Expression = {$_.} UM length}}, @{Label = "FreeSpaceGB"; Expression={$_.info.FreeSpace/1gb}}

    See you soon,.

    Arnim

  • Interactive report - calculation of Date filter color highlight SYSDATE

    I have APEX 4.1.0.00.32. Report front right, with a field of date when the element was added. I want to create a filter to highlight (highlights of color) for items added in the last week, called items again

    When I create the filter, it allows me to specify the name, color, etc., but the condition of point date culminating of the "Added_Item >" does not provide a specific date selected in the calendar, whereas I want him ' Added_Item > sysdate-7 ' "»

    I have no luck with TO_CHAR / TO_DATE functions around the sysdate-7. The filter simply indicates that date YYYY - MON - DD HH24 is the expected format.

    date functions not authorized? an alternative?

    Published by: Alan10205659 on March 1, 2012 14:21

    Published by: Alan10205659 on March 1, 2012 14:22

    Hello

    This calculation takes place in IR itself. Click on the action button in IR then Format and calculation

    Best regards, Tony

  • Custom calculation script (date roll forward)

    I am trying to add 6 days to a date that is in a field defined by the user named PeriodBegin

    The new calculated date must b e: PeriodBegin + 6 days and must be displayed in a new field called PeriodEnd

    I tried to use some code I found on the web but can't make it work.    Help!

    See this: http://forums.adobe.com/thread/836872

  • Another issue of MySQL on averages. Remove outliers.

    I have a number of comments that I get a MySQL database.

    Let's assume the values I have, classified in increasing order:

    3, 5, 5, 6, 6, 6, 8, 9, 15.

    Simply calculate the AVG translates 63/9 = 7.00

    If I want to repeat, but leave out the minimum and maximum values, in this case both the 3 and 15, which gives the following list:

    5, 5, 6, 6, 6, 8, 9

    While the average is only 45/7 = 6.43 in order to obtain greater statistical precision, how can I change my query?

    Currently, the query is like this:

    $query_Recordset1 = ' SELECT COUNT (Graphics_card) AS Obs, Graphics_card, AVG(MPE_Off/MPE_On) Gain, AVG (MPE_On) that the speed OF 'Donnees_personnelles' WHERE MPE_On > GROUP BY Graphics_card HAVING COUNT (Graphics_card) 0 > 4 CONTROL OF speed ASC, DESC of Obs, Gain DESC LIMIT 0, 20';

    In this query, the minimum number of observations is 5 for each distinct "Graphics_card". In the future, can I change to another figure and that is easy, just change the 4 to another character "BOLD" but then, I can want to recalculate adjusted average excluding observations of two down and the top of page two observations, so the beach in the calculation is as follows:

    5, 6, 6, 6, 8

    and then the trimmed mean is only 31/5 = 6.20

    How do I address my request to achieve this?

    Or, to put it another way, how can I have everything first to exclude high X and comments background X of the request and then calculate the AVG?

    Here is the page I want to apply to: http://ppbm5.com/MPE%20Charts.php

    I solved it for the first part like this:

    SELECT COUNT (Graphics_card) AS Obs, Graphics_card, (SUM (MPE_On) - MAX (MPE_On)) / (COUNT (Graphics_card)-1) AS speed, (SUM(MPE_Off/MPE_On) - MIN (MPE_Off/MPE_On)) / (COUNT (Graphics_card)-1) AS Gain FROM 'Donnees_personnelles' WHERE MPE_On > 0 GROUP OF Graphics_card HAVING COUNT (Graphics_card) > 5 ASC LIMIT 0, 20 speed CONTROL

    Effectively, this removes the most significant outliers (MAX for speed) and MIN for the Gain and calculates the average based on the number of observations minus 1 for each category. In the same way, I could remove the outlier across the spectrum, MIN for speed and MAX for Gain, but then, to reduce the number of observations by 2 instead of 1.

    SELECT COUNT (Graphics_card) AS Obs, Graphics_card, (SUM (MPE_On) - MAX (MPE_On) - MIN (MPE_On)) / (COUNT (Graphics_card)-2) AS speed, (SUM(MPE_Off/MPE_On) - (MPE_Off/MPE_On) MIN - MAX (MPE_Off/MPE_On)) / (COUNT (Graphics_card)-2) AS Gain FROM 'Donnees_personnelles' WHERE MPE_On > 0 GROUP OF Graphics_card HAVING COUNT (Graphics_card) > 5 speed LIMIT CSA CONTROL 0 20

    I had trouble with the group function to use the suggestions in the link you gave me, and of course the different features between MySQL and Oracle SQL.

    I can't wait to have a MEDIAN function in MySQL.

Maybe you are looking for

  • I just changed my password and apple id

    I can't connect to my Apple ID has changed on my pc, but my iPhone has still old showing Apple ID.  How to refresh to be able to use my new password and ID apple iPhone.  Thank you

  • Booklet 70CT and Windows 2000

    I just installed windows 2000 on my 70CT booklet, everything went well, but the display is only 16 colors mode. In hardware devices, no driver has been recognized and it doesn't seem to be one on the Toshiba site, are there any other drivers you can

  • Control buttons not working not not on Satellite M30

    I seem to have a problem with the command buttons on my Satellite M30. They do not seem to work. I reinstalled the drivers of control on the Toshiba site, but the buttons still don't work. Can anyone help please. Thank you, Joe

  • Creation of master plan?

    Hello, Im trying to create a plan of mass for a project im working on. I saw a plan button but that gives me problems because I can't change it. I have my out buried components and all traces in place. How to create a master plan and modify it. I cou

  • Custom button WIFI lite blue top all WIFI, no!

    I have a HP Mini 110-3030nr, the WIFI button, stop working, I checked the operation of the button using a keboard diagnostic program, I intalled the pilot Athros re and I also tried a different PCI card, anyone could suggest something else I could tr