How to use a signal of true/false dynamics with a business structure?

Hey everybody-

Is it possible to enter a case structure dynamic data of true/false?  We try to generate a waveform and want our structure case to run when the wave exceeds a certain threshold value and freeze execution when it drops below the threshold (If false).  However, we want the case structure to run continuous - i.e. If the structure of the deal for the 'real' case running while the waveform is above the threshold, we next want to deal for 'false' structure to run when the wave goes below the threshold, and so on until we stop our program.

Any suggestions would be much appreciated!

Rachel

Remove the loop around your DAQ Assistant vi express (I hate express screws).  There is already a big loop around all of the code in the lower part.  As has been pointed out by Ravens Fan, don't assign continuous acquisition.  Set a finite number of acquisitions.  Then the rest of the code can run and the loop can travel again.

Get rid of the stop sign at the top.  When the code is finished, Labview will stop on its own.

You have two stop buttons.  Only one is necessary.  Look at my example posted a few messages back.  A STOP with local variables.

Shrink your block diagram.  It takes more than one monitor space.  It is difficult to read when you have to scroll all over the place.

Tags: NI Software

Similar Questions

  • How to use swivel to cross a tabular report with external business logic

    Hello gurus,

    I have it here is the Emp_Hist table, which is usually audit table for the Emp table.

    For each record, we maintain version whenever it updated there.

    ENo EName Sal job DOB Version Tstamp

    ---------- ---------- ---------- ---------- ----------    ----------  ----------------------

    1 Sanjiv 1000 committed 12/10/89 1 02/03/12 13:00

    1 Sanjiv 1000 committed 12/10/89 2 02/03/12 14:00

    1 Sanjeev 1900 committed 12/10/89 3 02/03/12 15:00

    2 Scott 2000 analyst 22/10/85 1 02/05/12 13:00

    2 Scott 2000 analyst 22/10/85 2 02/05/12 14:00

    2 Scott 3000 lead 22/10/85 3 02/05/12 15:00

    Smith 4000 lead 13/11/81 1 3 06/02/12 13:00

    Smith 5000 lead 13/11/81 2 3 02/06/12 14:00

    3 Smith 5500 lead 13/11/81 3 06/02/12 16:00

    3 Smith 8000 CTO 13/11/81 5 02/06/12 17:00

    4 Tom 4000 lead 13/11/81 1 02/07/12-13:00

    4 Tom 5000 lead 13/11/81 2 07/02/12 14:00

    4 Tom 5500 lead 13/11/81 3 02/07/12 15:00

    Tom 4 8000 CTO 13/11/81 4 02/07/12-16:00

    CREATE

    TABLE Emp_Hist

    (

    ENo NUMBER,

    EName VARCHAR2 (20).

    SAL NUMBER,

    Use VARCHAR2 (20).

    DATE OF BIRTH,

    Version NUMBER,

    Tstamp DATE

    );

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (1, 'Sanjiv', 1000, 'Clerk', to_date (December 10, 1989 "," DD-MON-RRRR'), 1, to_date (March 2, 2012 13:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (1, 'Sanjiv', 1000, 'Clerk', to_date (December 10, 1989 "," DD-MON-RRRR'), 2, to_date (March 2, 2012 14:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (1, 'Sanjeev', 1900, 'Clerk', to_date (December 10, 1989 "," DD-MON-RRRR'), 3, to_date (March 2, 2012 15:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (2, 'Scott', 2000, 'Analyst', to_date (October 22, 1985 "," DD-MON-RRRR'), 1, to_date (May 2, 2012 13:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (2, 'Scott', 2000, 'Analyst', to_date (October 22, 1985 "," DD-MON-RRRR'), 2, to_date (May 2, 2012 14:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (2, 'Scott', 3000, 'Lead', to_date (October 22, 1985 "," DD-MON-RRRR'), 3, to_date (May 2, 2012 15:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (3, 'Smith', 4000, 'Lead', to_date (22 October 1981 "," DD-MON-RRRR'), 1, to_date (June 2, 2012 13:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (3, 'Smith', 5000, 'Lead', to_date (22 October 1981 "," DD-MON-RRRR'), 2, to_date (June 2, 2012 14:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (3, 'Smith', 5500, 'Lead', to_date (22 October 1981 "," DD-MON-RRRR'), 3, to_date (June 2, 2012 15:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (3, 'Smith', 8000, 'CTO', to_date (22 October 1981 "," DD-MON-RRRR'), 5, to_date (June 2, 2012 17:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (4, 'Tom', 4000, 'Lead', to_date (22 October 1981 "," DD-MON-RRRR'), 1, to_date (July 2, 2012 13:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (4, 'Tom', 5000, 'Lead', to_date (22 October 1981 "," DD-MON-RRRR'), 2, to_date (2 July 2012 14:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (4, 'Tom', 5500, 'Lead', to_date (22 October 1981 "," DD-MON-RRRR'), 3, to_date (July 2, 2012 15:00 ',' DD-MON-RRRR hh24:mm'));

    Insert into EMP_HIST (ENO, ENAME, SAL, JOB, DOB, VERSION)

    values (4, 'Tom', 8000, 'CTO', to_date (22 October 1981 "," DD-MON-RRRR'), 4, to_date (July 2, 2012 16:00 ',' DD-MON-RRRR hh24:mm'));

    I want to display changes (current value and previous value)

    for each column as below.

    PK_Value Column_Name Previous_value Current_Value

    -------------- -------------------------- --------------------  --------------------

    1         ENo                1                        1

    1 Ename Sanjiv Sanjeev

    1 1000 1900 sal

    1 committed post clerk

    1 DATE OF BIRTH 12/10/89-12/10/89

    2         ENo                2                        2

    2 Ename Scott Scott

    2 sal 2000 3000

    2 senior analyst job

    2 DATE OF BIRTH 12/10/89-12/10/89

    3         ENo                3                        3

    3 Ename Smith Smith

    3 5500 8000 sal

    3         Job                         Lead                  CTO

    3 DATE OF BIRTH 12/10/89-12/10/89

    Solution for above requirement is query below.

    WITH

    got_r_num AS

    (

    SELECT

    Eno,

    Ename,

    To_char (sal) AS sal,

    employment,

    To_char (dob, 'DD-MON-YYYY') AS date of birth,

    ROW_NUMBER () OVER (PARTITION BY eno ORDER BY version DESC) AS r_num

    Of

    emp_hist

    )

    SELECT

    *

    Of

    (got_r_num) PIVOT UNPIVOT (str FOR column_name IN (ename, sal, job, birth date))

    MIN (str) FOR r_num IN (2 AS previous_val, 1 AS)

    current_val))

    ORDER BY

    Eno,

    Column;

    But there are a few changes to the rquirement as below

    There is a table that maintains the version the most recent/maximum for each employee.

    Table EMP_AUD_LOOKUP have structure below

    CREATE

    TABLE emp_aud_lookup

    (

    ENo NUMBER,

    Version NUMBER

    );

    Insert into emp_aud_lookup (ENO, VERSION) values (1.3);

    Insert into emp_aud_lookup (ENO, VERSION) values (2,3);

    Insert into emp_aud_lookup (ENO, VERSION) values (3.6);

    Insert into emp_aud_lookup (ENO, VERSION) values (4.6);

    version of Eno

    ------  -----------

    1 3

    2 3

    3 6

    4 6

    maximum/later in the EMP_AUD_LOOKUP table.

    For emp = 1, version the most recent/maximum is 3

    For emp = 2, version the most recent/maximum is 3

    For emp = 3, version the most recent/maximum is 6, if it's 5 emp_hist table but the matching record in

    Table 6 (since it can be changed in other tables to load of the EMP_AUD_LOOKUP

    that is the case has changed in child table thats why he is 6)

    For emp = 4, version the most recent/maximum is 6, if it is 4 emp_hist table but the matching record in

    Table 6 (since it can be changed in other tables to load of the EMP_AUD_LOOKUP

    that is the case has changed in child table thats why he is 6)

    Updated the result will be like

    PK_Value Column_Name Previous_value Current_Value

    -------------- -------------------------- --------------------  --------------------

    1         ENo                1                        1

    1 Ename Sanjiv Sanjeev

    1 1000 1900 sal

    1 committed post clerk

    1 DATE OF BIRTH 12/10/89-12/10/89

    2         ENo                2                        2

    2 Ename Scott Scott

    2 sal 2000 3000

    2 senior analyst job

    2 DATE OF BIRTH 12/10/89-12/10/89

    3         ENo                3                        3

    3 Ename Smith Smith

    3 8000 8000 sal

    3         Job                         CTO                   CTO

    3 DATE OF BIRTH 12/10/89-12/10/89

    4         ENo                4                        4

    4 Tom Tom Ename

    4 8000 8000 sal

    4         Job                         CTO                   CTO

    4 DATE OF BIRTH 12/10/89-12/10/89

    In the case of ENo = 1, will be later

    SELECT version in v_latest OF EMP_AUD_LOOKUP where Eno = 1;

    v_latest = 3

    Latest = > max (version) of emp_hist < = v_latest or 3 < = 3 so 3

    Previous = > max (version) of emp_hist < v_latest-1 or 2 < = 2 so 2

    In the case of ENo = 2, will be later

    SELECT version in v_latest OF EMP_AUD_LOOKUP where Eno = 2;

    v_latest = 3

    Latest = > max (version) of emp_hist < = v_latest or 3 < = 3 so 3

    Previous = > max (version) of emp_hist < v_latest-1 or 2 < = 2 so 2

    In the case of ENo = 3, will be later

    SELECT version in v_latest OF EMP_AUD_LOOKUP where Eno = 3;

    v_latest = 6

    Latest = > max (version) of emp_hist < = v_latest or 5 < = 6 so 5

    Previous = > max (version) of emp_hist < v_latest-1 is 5 < = 5 so 5

    In the case of ENo = 4, will be later

    SELECT version in v_latest OF EMP_AUD_LOOKUP where Eno = 4;

    v_latest = 6

    Latest = > max (version) of emp_hist < = v_latest or 4 < = 6 so 4

    Previous = > max (version) of emp_hist < v_latest - 1 = 4 < = 5 so 4

    Can we make changes above with a modified respect logic based on the id of the most recent version of the other table.

    either we can manipulate in row_number() function.

    Hello.. Try the below...

    WITH qry1 AS (SELECT eno,

    Ename,

    SAL,

    employment,

    Date of birth

    Version

    Max (version) OVER (PARTITION BY eno) mx_ver

    Of emp_hist).

    qry2 AS

    (SELECT eno1,

    To_char (Eno) eno,

    Ename,

    To_char (SAL) sal,

    employment,

    Date of birth to_char(DOB,'DD-mon-YYYY'),

    To_char (ld_eno) ld_eno,

    ld_ename,

    To_char (ld_sal) ld_sal,

    ld_job,

    To_char(DOB,'DD-mon-YYYY') ld_dob

    FROM (SELECT q1.eno, eno1,

    Q1. Nwe eno,

    Ename,

    SAL,

    employment,

    Date of birth

    INF. ROW_NUMBER() over (PARTITION BY q1.eno ORDER BY q1.version),

    Lead (Q1. Eno, 1, Q1. ENO) OVER (PARTITION BY q1.eno ORDER BY q1.version) ld_eno,.

    Lead(Ename,1,Ename) OVER (PARTITION BY q1.eno ORDER BY q1.version) ld_ename,

    Lead(SAL,1,SAL) OVER (PARTITION BY q1.eno ORDER BY q1.version) ld_sal,

    Lead(Job,1,Job) OVER (PARTITION BY q1.eno ORDER BY q1.version) ld_job,

    Lead(DOB,1,DOB) OVER (PARTITION BY q1.eno ORDER BY q1.version) ld_dob,

    version Q1.version

    OF qry1 q1 emp_aud_lookup eal

    WHERE q1.eno = eal.eno

    AND (q1.mx_ver = eal.version AND (q1.version = q1.mx_ver OR q1.version = q1.mx_ver - 1))

    OR(Q1.mx_ver <> EAL.version and Q1.version = Q1.mx_ver)))

    WHERE rn = 1)

    SELECT eno1 eno,

    CASE WHEN lvl = 1 THEN 'ENO '.

    ONCE lvl = 2 THEN 'ENAME '.

    ONCE lvl = 3 THEN 'SAL '.

    ONCE lvl = 4 THEN "JOB."

    ONCE lvl = 5 THEN 'DOB '.

    ELSE 'N/A '.

    END as col_name,

    CASE WHEN lvl = 1 THEN eno

    ONCE lvl = 2 THEN ename

    ONCE lvl = 3 sal THEN

    ONCE lvl = 4 THEN employment

    ONCE lvl = 5 THEN dob

    END as previous_value,

    CASE WHEN lvl = 1 THEN ld_eno

    ONCE lvl = 2 THEN ld_ename

    ONCE lvl = 3 THEN ld_sal

    ONCE lvl = 4 THEN ld_job

    ONCE lvl = 5 THEN ld_dob

    END AS current_value

    OF qry2, (lvl SELECT LEVEL FROM dual CONNECT BY LEVEL<=>

    ORDER BY eno, lvl;

    OUTPUT:-

    -------

    ENO COL_N PREVIOUS_VALUE CURRENT_VALUE

    ---- ----- --------------- ---------------

    1 1 1 ENO

    1 ENAME Sanjiv Sanjeev

    1 1000 1900 SAL

    1 committed POST clerk

    1 DOB DECEMBER 10, 1989 10 DECEMBER 1989

    2 2 2 ENO

    2 ENAME Scott Scott

    2 SAL 2000 3000

    2 senior analyst JOB

    2 DATE OF BIRTH 22 OCTOBER 1985 OCTOBER 22, 1985

    3 3 3 ENO

    3 ENAME Smith Smith

    3 8000 8000 SAL

    3 USE CTO CTO

    3 DATE OF BIRTH 22 OCTOBER 1981 OCTOBER 22, 1981

    ENO 4 4 4

    4 Tom Tom ENAME

    4 8000 8000 SAL

    4 JOB CTO CTO

    4 DATE OF BIRTH 22 OCTOBER 1981 OCTOBER 22, 1981

    20 selected lines.

  • kindly tell how to use the unique value of a table with the index 0

    kindly tell how to use the unique value of a table with the index 0

    Hi
     
    Yep, use Index Array as Gerd says. Also, using the context help ( + h) and looking through the array palette will help you get an understanding of what each VI does.
     
    This is fundamental LabVIEW stuff, perhaps you'd be better spending some time going through the basics.
     
    -CC
  • How to use the scanner Canon of my computer with Windows Vista?

    How to use the Canon Scanner of my Toshiba with Windows Vista computer? Need help, tq.

    How to use the Canon Scanner

    http://www.ehow.com/how_5796443_use-Canon-flatbed-scanner.html

    I would propose Canon Support and the knowledge base for information and manuals

    http://www.USA.Canon.com/Cusa/consumer/standard_display/support

  • How to use mode live view in Dreamweaver CC with protect pages.

    Sorry I'm french how to use mode live view in Dreamweaver CC with a protect page. display live, tell me it's unable to connect. So I need to protect my pages

    Thank you

    Ok.  Keep .htaccess on your remote server.

    In the site local files Panel, F2 (rename) to the old.htacess.htacess.

    Which will disable the file .htacess on your local computer only.

    Nancy O.

  • How to get the lov value(true/false) that is running by pressing the F3 function key

    Hello

    I mapped key F3 function for list of values (lov), pressing F3 on the element of text (with associated lov) poster lov, but here the lov is implicitly run, so I am unable to get the value of lov(true/false), how to get the true or false value from the lov.

    I use Oracle forms 11 GR 2.

    What exactly do you mean by "the true or false value of the lov? Want to know if the user chose something from the lov. If so, you can create a KEY-LISTVAL-trigger on your textitem with something like

    IF SHOW_LOV('THE_NAME_OF_THE_LOV') THEN
      -- do something here
    END IF;
    
  • How to use references from web third party service with service Cloud Computing to Oracle database schema

    APEX 5.0

    Cloud Computing service for the Oracle database schema


    I'm in the middle of do a proof of concept.  Basically, I need an application with security of the stored data, UI, user, data loading, and able to post data via an external web service said.  It seems that with the database schema Oracle cloud service, it is not possible to use web service references that are not in the field.

    If I try to use a service via http reference, I get:

    ORA-20987: APEX - the requested URL was forbidden. Contact your administrator. -Contact your administrator of the application.

    If I try to use the same reference service via https, I get:

    ORA-29273: HTTP request failed

    ORA-06512: at & quot; SYS. UTL_HTTP & quot; line 1130

    ORA-29259: end-of-input reached

    I read somewhere that cloud services only https can be used.  Is this true?

    And then I read somewhere to use the protocol https, the portfolio must be configured to store certificates, etc.  However, I read somewhere else that the portfolio cannot be configured because there is no access to the instance database with the Oracle Cloud Computing database schema service.  Is this true?

    If both are true, how can I make a call to post data to an external web service?  Or do I need to use a different Cloud Computing service?  Or do I need my own instance of Oracle DB?

    Any help would be great.  Thank you!

    It turns out there was a problem with the remote rest service.  After successfully calling a rest service that was created using SQL Workshop, I tried different remote rest services and they all work.  Sorry for the confusion.  I thought it was very strange that the schema of database service wouldn't be able to do it easily.

  • How is used to monitor two ASA (active/stby) with modules IPS Cisco MARCH?

    Hello

    The two ASA with IPS modules are in Active mode / standby. When I try to add both the two IP (active / standby) in MARCH, the MARCH will complain of duplicate names.

    How set up in MARCH to monitor the ASA with IPS with topology standby active?

    Thank you!

    Hello

    The fundamental problem with this scenario is that you have modules able non-basculement in a tipping chassis - think of the pair of failover ASA as a device and modules IPS as two completely separate devices.

    Then, as we have already mentioned, add only the ASA elementary school. (High school will never be passing traffic in standby mode so it is not really necessary in MARCH) Then, with the first IPS module you can add it as a module of ASA or as a standalone device (MARCH doesn't care). With the second module IPS, the only option is to add it as a separate unit anyway.

    In a failover scenario of the SAA swap IP but SPI considering you'll ever messages from ASA active you will get messages from the intellectual property of these two IPS depending on whether you are in the ASA active at the time.

    Remember that you must manually reproduce all IPS configuration whenever you make a change.

    HTH

    Andrew.

  • How to use the values acquired by different treatments with 9188 OR cDAQ

    Hi guys, I'm trying to use NI DAQ 9188 chasis with temperature measurement module 9214. I plugged in 3 modules to the module and split signals. But I'm not sure that I can easily these values in functions. I'm trying to convert them into table 1 d, but when I converted the table 1 d I can't see the values and use separately from each other. For example, I simply multiply the first value of 1 thermocouple. How could I do that. In addition, the signals in the waveform table 1 is not smooth. What is the reason for this? Thanks in advance.

    Hi James-D,

    Thank you. Now, it is clear to me.

  • How to use the menu in a canvas shaped with 3 canvas

    Hi I have situation where I form with four canvas I just what to use my menu, I two canvas I have no what to display my menu in my first attack of Web page I just what to say [was my menu in my second painting and my third Web page how can I work around this am in form 11 GR 2]

    Hello

    PLS, try SHOW_MENU & HIDE_MENU alternately.

    You can use...

    HIDE_VIEW ('CANVAS_NAME');

    GO_BLOCK ('BLOCK_NAME');

    GO_ITEM ('ITEM_NAME'); -Visible & navigable

    SHOW_VIEW ('CANVAS_NAME');

    Amatu Allah.

  • How to use the NVL function to a parameter with comma delimited values

    Gurus,

    It is confusing to me.  I am trying to use the NVL function, but the setting that I'm passing in my cursor contains multiple values with commas.  The NVL function is confused when analyzing the values.

    'Where' cursor clause...

    and nvl (sn.c_attribute1,'x@#$%') in nvl (p_desig,'x@#$%'( )

    translated parameter values...

    and nvl (sn.c_attribute1,'x@#$%') in nvl ('SPRT''GOOD' 'BAD' 'x@#$%') -NVL does not parse the value correctly

    Any idea on how to get NVL recognize 'x@#$%' , if p_desig is null?

    Thank you

    Scott

    HI, Scott.

    Whenever you have a problem, please post a small example data (CREATE TABLE and only relevant columns, INSERT statements) of all the tables involved, so that people who want to help you can recreate the problem and test their ideas.

    Also post the results you want from this data, as well as an explanation of how you get these results from these data, with specific examples.

    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: https://forums.oracle.com/message/9362002#9362002

    My best guess, based on what you posted bone is present, that your problem is discussed in the following:

    http://tkyte.blogspot.com/2006/06/varying-in-lists.html

    http://www.Oracle-base.com/articles/Misc/DynamicInLists.php

  • How to use the Shell of the user interface with multiple applications (ear)

    I use 11.1.1.6 JDeveloper.

    I want to modularize the functionality in applications (ears) and use the Shell of the user interface as a navigation mechanism between applications and single entry.

    Is this good?

    What is the use of Shell of the user interface best practices.

    What about security (2 AA)? Security of the ADF?

    Thank you

    Hi user,

    You can use the shared library ADF function if you would like more information

    http://andrejusb.blogspot.AE/2010/07/deploying-ADF-applications-as-shared.html

    use the adf security

  • How to use Outlook 2007 instead of Palm Desktop with TX

    How can I get my TX hot sync with Outlook 2007 instead of the Palm Desktop program?  There must be tons of info on this, but my search does not usable results.

    Thank you

    Andy

    You need Outlook 2007 lines.

    Click on the following link to the support page for your device on the kb.palm.com Web page.
    http://www.Palm.com/us/support/TX/

    There are links on the page the user Troubleshooting Guide, how to, downloads, etc.

    You will find the Outlook 2007 update on this page.

    Message relates to: Palm i705

  • How to use APEX views in a DB work with persistence

    In order to collect information on the existing ir subscritions I use a pl/sql block like that

    for r as (select *
    from APEX_040200.APEX_APPLICATION_PAGE_IR_SUB subs where ...any filter) loop
         ..do something..
    end loop;
    

    regularly by the DBMS Scheduler

    In the next update of the Summit will be installed, the schema name will probably change to "apex_05xxxx", so my report will not work any longer. (And I won't forget to update the code )

    is there a cheat to overcome this problem?

    a synonym won't help, I have to recreate it in after the update in order to use the schema name correct

    I tried 'apex_public_user' schema, but is not owner of the db objects.

    Thank you

    Peter

    There is a public synonym for APEX_APPLICATION_PAGE_IR_SUB:

    OWNER SYNONYM_NAME TABLE_OWNER TABLE_NAME DB_LINK
    PUBLIC APEX_APPLICATION_PAGE_IR_SUB APEX_040200 APEX_APPLICATION_PAGE_IR_SUB -

    You should be able to use the name of the view in your code without schema qualifier:

    for r as (select *
    from APEX_APPLICATION_PAGE_IR_SUB subs where ...any filter) loop
         ..do something..
    end loop;
    
  • How to use the Facebook like widget that comes with the muse?

    I can't for the life of make me it work! What url should we use?

    Hi Chris

    This should work, I need the exact code you use in the page.

    Please pm me.

    I also tried to use the generated code that works on my end, have created a short video for your reference, you can download it here:

    https://www.dropbox.com/s/zztkx28emakau4k/FB.swf

    Thank you

    Sanjit

Maybe you are looking for

  • Location information of photos

    I went to a concert at Wembley Stadium.  Some of these photos I took were correctly located in London, but some have been civic in Coventry (different Stadium - next date of the tour!). Can I change the location information or delete it in the photos

  • Weird display on my Satellite P200 - 1 g 8 problem

    I bought my new laptop Satellite P200 - 1 g 8. I had some problems with the display cable.After that switch on and work for a few hours, the display is corrupted, or you can say distort.It is very difficult to explain in words. But when I restart or

  • Power on the L750D Satellite problem

    A problem with the power. Computer is turned off. Tried to restart, but the screen flashes.Battery power ran good until told to look for the ALT powerAfter plugging it back into the wall started to blink.

  • Satellite U400-183 lower upgrade to XP - driver for the SATA controller

    Hello There is a blue screen during the installation of xp because the missing drivers (SATA controller).Could not find the driver, nor on the toshiba Web site on intels. Someone who can help? Thank you very much. Stefan

  • HP Pavilion XE763 BIOS update Release Notes?

    Work on the following machine: HP Pavilion XE763 with Phoenix BIOS revision of Basic 4.06 2.02 07/14/00 ... and considering the BIOS firmware with this update: