help with code

I'm trying to get the code to run after that he completed the film at the end and display results on a map of contours. The problem is that I can't seem to end. It restarts the film after reaching 4000ms. can I change the last loop to loop for?

Reggie, my man, your code is off-the-line graphs and unscaleable. Maybe you agree with this, however.

Your last while that the loop will not stop until you press the Stop button. If you want to stop once the verification in the range displays False, you can add an Or operator in there (with a Not operator too probably) to get your loop to stop.

And what happens with your first loop? You have a time VI which stops the loop, but you use it by checking if target time is less than the time elapsed. Why not just release the Boolean value of elapsed time for that? You also have the default set to 1,000 seconds, which is long... I hope that you can hear 1000ms.

Tags: NI Software

Similar Questions

  • AJAX - multiple values - help with code

    Hi all

    My code is probably wrong, however, I don't know where is the problem. I'm not good with programming and copied the example of oracle.com and changed... I hope you guys can help me. Here's what I have:

    A selection list: P4_DOBJ1_NR (the user selects something in the DataObject table DOBJ_NR)
    A screen as text element: P4_NAMSP1
    Another exhibit as part of text: P4_DOBJ_NAME1


    Here is my code:



    Header HTML for my select list attribute setting:

    OnChange = "JavaScript:getDOBJ1Info (this); »



    The header of my page HTML:

    < script type = "text/javascript" >
    function getDOBJ1Info (filter)
    {
    var xml = null;
    get var = new htmldb_Get (null, $v ('pFlowId'), 'APPLICATION_PROCESS is GETDOBJ1Info', 0);
    Get.Add ('GOBJ1NO', filter.value);
    RET = get.get ('XML');
    If (ret)
    {
    var oneItems = ret.getElementsByTagName ("NAMSP");
    If (oneItems)
    {
    var onedisplay = document.getElementById ("P4_NAMSP1");
    onedisplay.innerHTML = oneItems [0] .getAttribute ("VALUE");
    }
    var twoItems = ret.getElementsByTagName ("DOBJ_NAME");
    If (twoItems)
    {
    var twodisplay = document.getElementById ("P4_DOBJ_NAME1");
    twodisplay.innerHTML = twoItems [0] .getAttribute ("VALUE");
    }
    }
    get = null;
    }
    < /script >


    An application object, called: GOBJ1NO



    And the application process:

    DECLARE
    Emmanuel VARCHAR2 (100);
    vTWO VARCHAR2 (100);
    BEGIN
    owa_util.mime_header ("text/xml", FALSE ");
    HTP.p ('Cache-Control: non-cache');
    HTP.p ('Pragma: non-cache');
    owa_util.http_header_close;
    HTP. PRN ("< DATA > '");
    SELECT NAMSP, DOBJ_NAME IN Emmanuel, vTWO OF DATAOBJECT WHERE DOBJ_NR =: GOBJ1NO;
    HTP. PRN ("< a VALUE ="' |) Emmanuel | ("" > < / ONE > ');
    HTP. PRN ("< TWO VALUE ="' | vTWO |) ("" > < / TWO > ');
    HTP. PRN ("< / DATA > '");
    EXCEPTION WHEN OTHERS THEN
    HTP. PRN ("< a VALUE =" error"> < / ONE > ');
    HTP. PRN ("< TWO VALUE =" error"> < / TWO > ');
    END;

    Your process returns an XML document with the structure

    
        value one 
        value two 
    
    

    but you try to retrieve the item named "NAMSP".

    so try to chang to:

    var oneItems = ret.getElementsByTagName("ONE");
    

    You will find fantastic examples on the web site of Denes Kubicek:
    Try this url:
    http://Apex.Oracle.com/pls/OTN/f?p=31517:106:1074750275898234:no

    HTH
    Thomas

  • Help with code to insert, and then update the form table.

    I have a form where a user can add a new record in a table. Here is the procedure for recording button that works very well. But I call another procedure for updating the table with an "if" statement "The SQL code that I use works fine to get the data I'm looking for when I run it in SQL, but the 'if' statement updates all records in the table to ' n ' when some should be"Y". I am new to Oracle forms development (3 months) so it's probably very simple, but I'm stuck and need to get this finished form. Any help is greatly appreciated.


    SAVE BUTTON TRIGGER PROCEDURE:*.

    PROCEDURE SAVE_MM_1099_ADD IS

    MM1099_NO NUMBER (10);
    NUMBER OF THE YEAR (4);
    NUMBER OF NOTICE_SEQ_NO (10);
    NOTICE_NAME VARCHAR2 (30);
    TIN_FROM_DB VARCHAR2 (23);
    TSDI_DB VARCHAR2 (1);
    IRS_NTYPE VARCHAR2 (10);
    IRS_NDATE VARCHAR2 (10);
    BU_WH VARCHAR2 (1);
    NO_TIN_NAME VARCHAR2 (1);
    DUP_IRS_NOTICE VARCHAR2 (1);
    G1_IRS_NOTICE_3YR_2BS VARCHAR2 (1);

    B_SAVE_ADD boolean;

    Start

    IF MM1099_NO IS NOT NULL THEN

    insert into MM_1099
    (
    MM1099_NO,
    YEAR,
    NOTICE_SEQ_NO,
    NOTICE_NAME,
    TIN_FROM_DB,
    TSDI_DB,
    IRS_NTYPE,
    IRS_NDATE,
    BU_WH,
    NO_TIN_NAME,
    DUP_IRS_NOTICE,
    G1_IRS_NOTICE_3YR_2BS
    )
    values
    (
    MM1099_NO,
    YEAR,
    NOTICE_SEQ_NO,
    NOTICE_NAME,
    TIN_FROM_DB,
    TSDI_DB,
    IRS_NTYPE,
    IRS_NDATE,
    BU_WH,
    NO_TIN_NAME,
    DUP_IRS_NOTICE,
    G1_IRS_NOTICE_3YR_2BS
    );


    : system.message_level: = '5';
    Commit_FORM;
    : system.message_level: = '0';

    END IF;

    UPDATE_NUMOCCURTIN;

    END;

    PROCEDURE CALLED:*.

    PROCEDURE UPDATE_NUMOCCURTIN IS

    CURSOR c1 (NUMBER NUMOCCURTIN) IS
    SELECT THE YEAR, TIN_FROM_DB, COUNT (TIN_FROM_DB) AS NUMOCCURTIN
    OF MM_1099
    TIN_FROM_DB GROUP, YEAR
    SEEN (COUNT (TIN_FROM_DB) > 0);

    CR1 c1% ROWTYPE;
    number of v_recs;
    NUMBER OF NUMOCCURTIN;

    BEGIN
    v_recs: = 0;

    OPEN c1 (NUMOCCURTIN);

    loop

    Fetch c1 into cr1;
    When the % notfound c1 or c1% rowcount output > v_recs;

    IF cr1. NUMOCCURTIN > 1 THEN

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'Y ';

    ON THE OTHER

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'N';

    : system.message_level: = '5';
    commit;
    : system.message_level: = '0';

    END IF;

    v_recs: = v_recs + 1;

    END LOOP;

    CLOSE c1;

    END;

    For any help or suggestion will be greatly appreciated.

    IF cr1. NUMOCCURTIN > 1 THEN

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'Y ';

    ON THE OTHER

    UPDATE MM_1099
    SET DUP_IRS_NOTICE = 'N';

    : system.message_level: = '5';
    commit;
    : system.message_level: = '0';

    END IF;

    There is no WHERE condition in your update, so always update you all THE RECORDS in your table. I guess it must be something like:

    UPDATE MM_1099 SET
      DUP_IRS_NOTICE = 'Y';
     WHERE TIN_FROM_DB=cr1.TIN_FROM_DB
       AND YEAR=cr1.YEAR
    

    Some general order questions about your code:
    Where your variables for your insert statement are filled? looking at your code they will always be NULL.
    Be careful when using the variable exactly as the names of column names. This may cause unexpected behavior (for example when it is used in the UPDATE statements).
    Why engage in the other branch, but not in the branch so?

  • Help with code 800401154

    I can't get my updates? all I get is error code 800401154 Please HELP

    Hi, Ray MrJoesmokeyBailey,.

    1. the updates you are trying to install?

    Step 1:

    You can read the following article and try to reset the Windows Update components and check.

    How to reset the Windows Update components?

    Step 2:

    If you're still having problems, then try to run you can also try running the system update readiness tool and check if you can install the update.

    What is system update readiness tool?

    Hope this information is useful.

  • Need help with code signing.

    Hello

    I did an application that requires a code signature because I use the function 'Automatic Execution at startup' (this is what I was told).  I use not all restricted classes.

    So, I asked for a key to the RIM and received.

    I have received only a single file named "customer-CPR-# .csi" (the e-mail talked about three files however: RBB, CPR, RRT).  Nevertheless, I followed the instructions and managed to install this .csi without error (I received a confirmation e-mail).

    Now, I want to sign my code...

    I tried using "build - request Signatures ' in my Blackberry JDE and this displayed:

    javaw.exe - jar "C:\Program research in Motion\BlackBerry JDE 4.2.1\bin\SignatureTool.jar" f d "C:\Documents and Settings\johndoe\Local Settings\Temp\RIMSigTool65120.tmp"

    However, nothing happens (this jar file is there though).

    I looked beyond and found a 'Signature tool' under "Component of the Blackberry JDE 4.2.1 Package" in the "Programs" menu

    When I run this, I get invited to one. COD file.  I select my and then I see a window that shows six times my. File of COD that says that my COD file does not require a signature.

    Also, looking around this forum, I have seen some people saying a. CSL file is necessary... but I do not have this file in my project directory.

    So to make a long story short, I'm a bit confused on what do I do next for my application run at startup on the Blackberry.  How should I sign it?

    Thanks for your help!

    Please ensure that you have a current project, when you select apply Signatures from the Build menu.  The only assets of signs SignatureTool projects, so if no project is active, nothing will happen.

  • need help with code 43 windows7 hp all-in-one2050 j510

    Code 43 felmeddelande

    Windows 7 har stangt av printern.

    Tell me WHY "?"

    Var snall och help till att fixa felet.

    Tack

    Hello

    Please select your language from the drop-down menu above to post your question in the language of your choice. The forum in which you've posted is for English only. If you can't find your language above, support for additional international sites options are by following the link below:

    http://support.Microsoft.com/common/international.aspx

    Hope this information helps.

  • Help with code for counting

    Hi I am new to coding and, at school, they give us builders of the project before assignment, they are usually much more difficult but for the practice and trial and error. This one I'm completely lost. They provide a code for counting MEAC, a load of cookie that was reversed when you press on and the user needs to count spilled cookies and enter the number. The wrong number does not work so it has a loop function in I think. Here's the code that provided things needs added.

    Stop();

    var numberOfCookies:Number = 0;

    startBtn.addEventListener (MouseEvent.CLICK, getCookies);

    function getCookies(Event:MouseEvent)

    {

    numberOfCookies = (Math.floor (Math.random () * (10)) + 1);

    var n: Number = 0;

    }

    Now the long instructions on what needs to be done.

    1. Complete the getCookies function by typing the following code before the closing brace on the right:
      1. Add a line under the last line of the code and before the right fence reinforcement to create a while loop that loops while n is less than numberOfCookies.
      2. Define all looped as follows and place the code inside the left and right hooks:
        • Type a line that creates a variable named cookieInstance that has a cookieMC data type. Create a new instance of the cookieMC.

    Note: cookieMC is the video clip that contains an image of the cookie.

    • Add another line of code that uses the method addChild to add cookieInstance to the display list and places it in a random place.

    Hint : Your text contains an illustration that represents the format of line addChild . The values of x must be 200 and 20, and values there must be 150 and 220. This will ensure that the cookies will be overlapping with the cookie jar!

    • Add another line of code that increments n to 1.
    • Check both the time watching the block of code and the function block getCookies end of code with right brace (}).
    • After the right brace for functions getCookies, typed an event listener that calls a function when it is clicked on the goBtn object. Name of the function checkNumberTyped.
    • Definition of the function as an if-else statement. If the number entered by the user in the input box (checkBox.text) equals the number of cookies (numberOfCookies) generated by the random function, have the playhead go and play frame 2; or else have the playhead go and play frame 3.
    • Check the format of syntax and code auto.
    • Click on frame 2 in the timeline. Click on the area of dynamic text under the heading on the stage and give it an instance name of right.
    • Click on the image on the layer 2 actions. Then view the Actions Panel.

    Note : The code in line 2 adds an event listener that "listens" for an event ENTER_FRAME and appoints a (correct) function. The causes of event frame enter the named function correct to run when the playhead moves to frame 2

    1. Type the line of code between the braces ({}) left and right which takes the value in the numberOfCookies variable and it changes to string data type and then assigns it to the dynamic text box named right.

    Hint : the format to change a digital var to a string is: Textboxname.text = String (var);

    1. Check the format of syntax and code auto.
    2. Click on the image 3 on the Timeline and click on the area of dynamic text on the stage and give it an instance name of the lot.
    3. Click on the image on the layer 2 shares and copy the code for the listener of events and the called function OK. Click on the image on the layer 3 actions and paste the code on a new line after stop();
    4. Change the code pasted into the image 3 on the layer actions so the function name is incorrect and does not name text box.
    5. Check the format of syntax and code auto.
    6. Test the animation several times by entering the correct and incorrect numbers for the number of cookies displayed.

    Now, it's my first Flash class, and I've been in 7 weeks, I feel it is a lot to know already, but if anyone could tell me what I need to add and why would I have a great understanding until the project that happens I need this practice will last.

    the following code fills the coding part of your task.  you will need to pick up line "check the syntax and the auto format code".

    ///////////////////

    Stop();

    var numberOfCookies:Number = 0;

    startBtn.addEventListener (MouseEvent.CLICK, getCookies);

    function getCookies(Event:MouseEvent)

    {

    numberOfCookies = (Math.floor (Math.random () * (10)) + 1);

    var n: Number = 0;

    While (n<>

    var cookieInstance:cookieMC = new cookieMC();

    addChild (cookieInstance);

    cookieInstance.x = 20 + Math.floor (181 * Math.random ());

    cookieInstance.y = 150 + Math.floor (71 * Math.random ())

    n ++ ;

    }

    }

    goBtn.addEventListener (MouseEvent.CLICK, checkNumberTyped);

    function checkNumberTyped(e:MouseEvent):void {}

    {if (Number (CheckBox.Text) == numberOfCookies)}

    gotoAndPlay (2);

    } else {}

    gotoAndPlay (3)

    }

    }

  • help with code of favicon does not

    I can't get my favicon to work here is my current website www.sqtlimited.com

    I had the record for PS and made my favicon 16 x 16 saved as favicon.ico in the same folder as all my other stuff site Web

    not downloaded to the server all in the same place no subfolder.

    Here's my course last line of code is favicon

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; Charset = UTF-8 "/ >"

    < title > SQUARE Limited < /title >

    < style type = "text/css" media = "screen" >

    @import url ("menu bar - 1.css");

    < / style >

    < script language = "JavaScript1.2" type = "text/javascript" src = "mm_css_menu.js" > < / script >

    < link rel = "shortcut icon" href = "' / favicon.ico" type = "image/x-icon" / > "

    < / head >

    What works on my site is

    I have not a / at the end and my ico file is located in the root with the index.htm file

    Yes, you must sometimes do a 'reload' or clear history of cache for the changes to appear

  • Need help with Code

    Hi, I need help in answering this question...

    1. to list separate them that visit many of the sites.

    The code that I currently displays holidays and sites, but I need if it will show the top 3 holidays than most visit sites.

    Select 'IT220_DETAILS_SITES_VISITED '. "' SITE_NAME ' as 'SITE_NAME ',.
    'IT220_HOLIDAY_DETAILS '. "' DESCRIPTION_OF_HOLIDAY ' as 'DESCRIPTION_OF_HOLIDAY '.
    of "IT220_SITES_VISITED" "IT220_SITES_VISITED"
    "IT220_DETAILS_SITES_VISITED" "IT220_DETAILS_SITES_VISITED"
    "IT220_HOLIDAY_DETAILS" "IT220_HOLIDAY_DETAILS".
    where 'IT220_SITES_VISITED '. "" CODE_OF_HOLIDAY_PACKAGE "=" IT220_HOLIDAY_DETAILS. " "" CODE_OF_HOLIDAY_PACKAGE ".
    and "IT220_DETAILS_SITES_VISITED". "" CODE_OF_SITE "=" IT220_SITES_VISITED. " "" CODE_OF_SITE ".
    order by 'SITE_NAME '.

    813948 wrote:
    I realize the question is actually just holidays to appear that the sites the most.

    select  "DESCRIPTION_OF_HOLIDAY"
      from  (
             select  "IT220_HOLIDAY_DETAILS"."DESCRIPTION_OF_HOLIDAY" as "DESCRIPTION_OF_HOLIDAY"
               from  "IT220_SITES_VISITED" "IT220_SITES_VISITED",
                     "IT220_DETAILS_SITES_VISITED" "IT220_DETAILS_SITES_VISITED",
                     "IT220_HOLIDAY_DETAILS" "IT220_HOLIDAY_DETAILS"
               where "IT220_SITES_VISITED"."CODE_OF_HOLIDAY_PACKAGE"="IT220_HOLIDAY_DETAILS"."CODE_OF_HOLIDAY_PACKAGE"
                 and "IT220_DETAILS_SITES_VISITED"."CODE_OF_SITE"="IT220_SITES_VISITED"."CODE_OF_SITE"
               group by "IT220_HOLIDAY_DETAILS"."DESCRIPTION_OF_HOLIDAY"
               order by COUNT(*) DESC
            )
      where ROWNUM <= 3
      order by "DESCRIPTION_OF_HOLIDAY"
    /
    

    SY.

  • Laptop HP 2000: Please help with code

    I have a hp and asked power on password or password administartion. The disabled system code is 55614723

    Try entering the following unlock code:

    40772305

  • Help with Code to wireless printer. I have a HP Deskjet F4580

    Does anyone know how do I reprint my wireless HP Deskjet F4580 code?

    Thank you

    abcfun32

    To enable web services or reprint the code of the printer, you need to enter the printer EWS. To get the IP address of the printer you need to hold the scan button and it prints the network configuration to get the IP address of the printer.

    1. Enter the printer's IP address in a browser.
    2. Select the Web Services tab.
    3. on the left side, select print info page.

    Let me know how it goes.

  • Help with code EAN-13 barcode

    I make a label of product in InDesign and have to put in a bar code. These guidelines meet the code bar:

    http://www.gs1au.org/assets/documents/info/technical/fact_sheets_2014/Fact_Sheet_1_EAN_13 _ Bar_Code_Symbol_Specifications.pdf

    Essentially, the figure should be 22,85 mm in height and 31,35 mm wide.

    Because it is not possible to generate barcodes internally in InDesign and specialized plugins are expensive, I decided to use a web service to generate the figure. I settled on this one:

    http://barcode.TEC-it.com/?group=BCGroup_EAN & Barcode = EAN13

    The height of the figure is not standard, but if all goes well, to use past practice.


    My problem is: when I place the figure in InDesign, I can't ever be sure, it would print to the appropriate size. I know that if I go to file > Place and do a simple click , I get the image at 100%. But even in this case, the results are all over the place. I guess I could manually change the sovereign (in the mode of a millimetre), but it's tedious and generally does not seem the way forward. Is there an easier way, I've been away?

    If I read the link you posted barcode dimensions must be w = 37.29 mm x h = 25,93 mm. It was actually an extension in Indesign that generates bar codes. You can go to the window/Extensions/Adobe Exchange (I use Indesign CC 2014) and research of EAN bar codes generator. What exactly do you mean by "the results are all over the place."

  • Help!  Get pop-ups with CODE of ERROR: sec_error_X1X510_A

    I have an iMAC end of 2012, 3.4 GHz Intel Core i7, 16 GB 1600 MHz DDR3. NVIDIA GeForce GTX 680MX 2048 MB, El Capitan iOS

    When you use Safari, Google home page, I type a domain and it goes to what I believe is a pop-up fake Apple Support with CODE of ERROR: sec_error_X1X510_A.

    Need help solving this. THX

    You have probably installed some adware. Please post a report of EtreCheckof your system. We then look for obvious problems. Please click on the link, download the application and run the report. Once you have the report, please copy and paste into your response to this post.

    If you would like more information on what is EtreCheck, just click on the link and you will find a description of the application.

  • Need help with the launching track pack for forza code 4

    Bought new Forza 4 and the lancer Track Pack code does not work, how do I get a code that is generated in the form I've already paid for it. Rank of loads of numbers and sent 10 s of emails but cant seem to get help.

    This is the help I get when the cat to an Ambassador xbox on xbox.com

    Terry wrote:
    Need help with the launching track pack for forza code 4
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Location of Ambassador of the community...
    The Xbox Ambassador says:
    Your question will be answered by an Ambassador of the Xbox. You have been connected to the Ambassador as a user Xbox [3]
    The Xbox Ambassador says:
    Hello
    Terry wrote:
    Hello
    The Xbox Ambassador says:
    Hey
    Terry wrote:
    just to be on the phone to xbox live support and was told to come here
    The Xbox Ambassador says:
    ok\
    The Xbox Ambassador says:
    What is your problem?
    Terry wrote:
    I bought the 4 for forza ansd 360 new sealed Christmas...
    Terry wrote:
    has got 2 codes that accompanies the game but the pack track code does not work
    The Xbox Ambassador says:
    Wow good
    Terry wrote:
    whenever I put in the code it says code redeemed
    The Xbox Ambassador says:
    I think the code is used. You must return to the retailer
    Terry wrote:
    I tried to, but since I already opened the case they will not accept
    The Xbox Ambassador says:
    Oh. No,
    Terry wrote:
    the code had been used or defective as I am the only person who has touched the game once opened, tried to enter the code when it is open
    The Xbox Ambassador says:
    Maybe it was auto bought?
    Terry wrote:
    so, how do I get another code generated track Pack if defective?
    The Xbox Ambassador says:
    I do not know.
    Terry wrote:
    bought the game new, so I get the track pack
    The Xbox Ambassador says:
    Oh. It's bad.
    The Xbox Ambassador says:
    I think that if you Exchange 1 code it will buy it
    Terry wrote:
    car pack code worked, starter pack did not work
    The Xbox Ambassador says:
    Oh.
    The Xbox Ambassador says:
    It's a bad
    The Xbox Ambassador says:
    BTW you have an evolution of the tests?
    Terry wrote:
    Yes, I want to? but more anxious to get a code object generated for this pack
    The Xbox Ambassador says:
    Hey if I help can u give me this game too?
    Terry wrote:
    ?????????????????
    Terry wrote:
    So is it possible to get a code for that time?
    The Xbox Ambassador says:
    Hey
    The Xbox Ambassador says:
    Yes.
    The Xbox Ambassador says:
    you need to contact them
    The Xbox Ambassador says:
    and tell them that the code is used.
    Terry wrote:
    I was told to come here? where can I go to get the code?

    Hi Terryg76,

    ·         What version of the operating system is installed on the computer?

    I suggest you to contact the game manufacturer for more help and information.

  • I have a new computer with vista home, I also have 20 updates failed with code 80072EFD. I tried everything I can think of others then do a full restore. Help.__Thanks, __Wally

    I have 20 windows updates failed on my new computer with code 80072EFD and tried everything I know. Its still new with few programs on it so I could do another full system restore if I have to. I also have a free windows 7 for this computer that is always on its way. If I fix this now I will do all that again?
    Wally

    You may encounter temporary connection related errors when you use Windows Update or Microsoft Update to install updates
    http://support.Microsoft.com/kb/836941

    Windows Update error 80072efd
    http://windowshelp.Microsoft.com/Windows/en-us/help/93b6ab71-8B21-4B50-B40E-abb80eba29271033.mspx

    I guess you're running Vista.

    As for your 2nd question about the updates of Windows - Win 7 If you run Norton, you might have a problem. It can accept updates for Vista, but when you upgrade to Windows 7 it does not updates allow.

    TaurArian [MVP] 2005-2010 - Update Services

Maybe you are looking for

  • How to get apple id lost blocked n

    Bro im e-mail is blocked How the issue is resolved? < personal information under the direction of the host >

  • Windows 7 drivers for Satellite L550D

    Hello are there drivers available for Windows7 - 64 bit laptop Satellite L550D? If this is not the case, there will be some available in the next few days?Can I try to install the drivers for Windows Vista - 64 bit on my Windows7 system? Thank you ve

  • ReadyNAS online (disconnected VPN)

    ReadyNAS Remote app only works in LAN, when I log off VPN site located in the SIN, and then disconnects. Can someone help me, THANKS

  • Reminder app

    Hello I am not unionized and little motivated. I want to try a reminder for my Mac or iPhone 5 c application to help me form the habit of sticking to my schedule in writing. I would like suggestions for a useful application. Thank you.

  • How to interface ADAM 4060 in Labview 7.0?

    I had difficulties in interfacing ADAM 4060 with Labview 7.0. I tested the device by using the utility software of Advantech ADAM and it works properly. So, its not the hardware error or failure. However, when I want the interface using Labview, I co