Conditional logic box

Hello!

I use in the form of two checkboxes cb1 and cb2.
field name: selected
data type: Boolean

I wrote inside a function of audit:

If ((cb1.data = false) & & (cb2.data = false)) {}
do something
}
If ((cb1.data = true) & & (cb2.data = false)) {}
do something
}
If ((cb1.data = false) & & (cb2.data = true)) {}
do something
}
If ((cb1.data = true) & & (cb2.data = true)) {}
do something
}

It does not work...
Go straight ahead until the last 'if' even if, for example, it should be limited to the second "If" as cb1 and cb2 is verified is not.
What is the problem in my script?

Thank you very much in advance for your help!

To check if a checkbox is enabled or not you just check the selected checkbox instance property.

Also when you're verified something, you must make sure you use 'is' who is for comparisons instead of '=', which is for the assignment of a value.

And, because the selected property of a control checkbox is a Boolean value, you can simply use the value selected as the 'check', for example:

and (ie. both):
If (cb1.selected & cb2.selected) {do something}

or:
If (cb1.selected: cb2.selected) {do something}

first and not the other:
If (cb1.selected &! cb2.selected) {do something}

You'd often such verification on the basis of event listener.

Tags: Adobe Animate

Similar Questions

  • Need help with different types of conditional logic in a custom PDF

    Oh the life of a developer - get handed something a non-geek thinks is 'easy' with an unrealistic calendar, and you've never done before :-)

    Asked me to take a PDF custom built by a member of my group and make some changes.  I am running Win7 and using Adobe Acrobat Pro DC.

    What I have to do is essentially variations around a conditional logic; for example:

    If Renseignez Checkbox1, Checkbox2 becomes locked

    If Checkbox1 is filled, ComboBox2 becomes mandatory

    If the user has completed the PDF saved as 'Customer_0123' and goes back in to make changes, may I point out what has changed?

    I'm (very very) new to JavaScript and so I was confuse through some documents, but the "most recent" document, found at Adobe is 10 years old, and I'm not sure that it is always topical.

    Any help would be appreciated...

    Thank you

    Chris

    The best way to associate scripts with boxes is to use the MouseUp event. In this case you can access the value of the new field via event.target. value.

    And Yes, it is correct re the JS Console.

  • When you partition the HD (VISTA), Manager of disk logic box says access denied

    Vista Home Basic operating system

    I'm trying to partition the HD to install Windows XP and run a dual boot on the existing Vista.

    Using administration tools - disk management computer management

    Right-click on the C: drive to shrink, and the dialog box logic handler says 'Access denied'

    All suggestions will be welcome.

    Thank you.

    TC

    Hello

    Appropriating the C drive:

    a. right click on the folder you want to take control and then click Properties.

    b. click the Security tab, click Advancedand then click the owner tab.

    c. click change. Need administrator permission if you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    d. click on the name of the person for the property.

    e. If you want that this person is the owner of the files and subfolders in this folder, select the check box Replace owner of subcontainers and objects.

    f. click OK.

    See also: http://windows.microsoft.com/en-US/windows-vista/Can-I-repartition-my-hard-disk

  • conditional logic with vmware tools status

    Hi Guy,

    I am after a few tips here. I try to get a VMware tools State guests. I wrote the below which I think is logical, but doesn't seem to work lol. Maybe I think about this all wrong but any advice is appreciated.

    $VMS = get-VM-name 'some-vm1', 'some-vm2.

    foreach ($objitem to $VMS)

    {

    If ($objitem. PowerState - eq 'Receptor' - and $objitem. (- eq "guestToolsRunning") {Shutdown-VMGuest - VM $objitem - confirm: $false}

    ElseIf ($objitem. PowerState - eq 'Receptor' - and $objitem. ExtensionData.ToolsRunningStatus - eq "guestToolsNotRunning") {stop-VM - $objitem VM - confirm: $false}

    }

    Thank you very much

    Because I think he was part of the code is missing (I added it in red).

    In fact your 2nd condition is a bad property as far as I know. I think we should $objitem. ExtensionData.Guest.ToolsRunningStatus

    The script should be something like this

    $VMS = Get-VM -Name "vm1","vm2" foreach ($objitem in $VMS)
    {
        if ($objitem.PowerState -eq "PoweredOn" -and $objitem.ExtensionData.Guest.ToolsRunningStatus -eq "guestToolsRunning"){
            Shutdown-VMGuest -VM $objitem -WhatIf -Confirm:$false    }
        elseif ($objitem.PowerState -eq "PoweredOn" -and $objitem.ExtensionData.Guest.ToolsRunningStatus -eq "guestToolsNotRunning") {
            Stop-VM -VM $objitem -WhatIf -Confirm:$false    }
    }
    
  • Customization of the OA framework supports conditional logic?

    I want to make a non editable field according to the value of another field of recording even in forms HTML Installed Base (self-service).  I don't see anything in the documentation or on the form of customization under functional administrator that would allow me to do.

    apps version 11.4.10

    Yes, you can do the same thing. Your condition is not met by using only the customizations. You will need to extend the View object and use SPEL.

    Reference:

    http://Oracle.anilpassi.com/SPEL-in-OA-framework-with-audio-visual-Demo-2.html

  • I know by logic box to get the output using the regular expression?

    Hello

    I am now only study the notion of Regexp. I had seen the best of Mr. Blus. Can I know how it works. I need this logic of the functionality of wildcards in sting matching Regexp (wildcard string Matching).
    SQL> ed
    Wrote file afiedt.buf
     
      1  WITH test_data AS (
      2  SELECT 'c:\temp\folderA\fileA.txt' t FROM DUAL UNION ALL
      3  SELECT 'c:\temp\fileA.txt' t FROM DUAL UNION ALL
      4  SELECT '\\mymachine\A\fileB.txt' t FROM DUAL UNION ALL
      5  SELECT '\\mymachine\A\B\fileB.txt' t FROM DUAL UNION ALL
      6  SELECT '\\mymachine\A\B\C\image.jpg' t FROM DUAL UNION ALL
      7  SELECT '\\mymachine\A\B\C\D\music.mpg' t FROM DUAL UNION ALL
      8  SELECT 'c:\myfolder\folderD\folderE\4969-A.txt' t FROM DUAL
      9  )
     10  select regexp_replace(t, '^.*[\]([^\]*)[\][^\]*$','\1')
     11* from test_data
    SQL> / 
     
    REGEXP_REPLACE(T,'^.*[\]([^\]*)[\][^\]*$','\1')
    ------------------------------------------------------------------
    folderA
    temp
    A
    B
    C
    D
    folderE
     
    7 rows selected.
     
    SQL>
    Please help me in this matter.

    Iqbal

    Sabrina wrote:
    One last question what is the average of

    The final "\1" in

     select regexp_replace(t, '^.*[\]([^\]*)[\][^\]*$','\1') 
    

    Iqbal

    It is a reference.

    See here:
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14251/adfns_regexp.htm#CHDHCIGH

    and in the middle of the table here:
    http://download.Oracle.com/docs/CD/B19306_01/AppDev.102/b14251/adfns_regexp.htm#CHDIEGEI

    Matches the nth previous subexpression, in other words, either grouped in parentheses, where n is an integer between 1 and 9. The parentheses cause > an expression be remembered; a backreference refers to him. A backreference account subexpressions from left to right, starting with the opening > bracket of each subexpression preceding. The expression is not valid if the source string contains less than n subexpressions preceding the \n.

    Oracle supports the expression of backreference in the regular expression pattern and the replacement of the REGEXP_REPLACE function string.
    The expression (abc: def) matches the strings abcxyabc and defxydef xy\1, but does not abcxydef or abcxy.

    A backreference allows you to search for a string repeated without knowing the actual string advance. For example, the expression ^(.*) \1$ > matches a line consisting of two adjacent instances of the same string.

    As explained in table 4-2, backreferences store sub-expressions matched in a temporary buffer, which allows to reposition the characters. You access the pads with the notation \n, where \n is a number between 1 and 9. Each subexpression brackets and is numbered from left to right.

  • Problem of conditional logic!

    Hello

    Recently, I've been making a Flash game, and I'm to the point where I need counters to move according to what the roll of. However, I can't make it work!

    Here is my code so far. It's about 100 lines!

    import flash.utils.Timer;
    import flash.events.TimerEvent;
    import flash.text.TextField;
    import flash.events.MouseEvent;


    This stops the animation.
    Stop();
    This ends the current game being played and takes you back to the Welcome screen.
    closeButton.addEventListener (MouseEvent.CLICK, myClosingHandler)
    function myClosingHandler (evt) {}
    gotoAndStop ("WelcomeScreen")
    }
    The code below allows you to "fullScreenButton" activate / disable Mode full-screen.
    this.fullScreenButton.addEventListener (MouseEvent.MOUSE_UP, toggleFullScreenPlay);
    function toggleFullScreenPlay(event:MouseEvent) {}
    If (stage.displayState == "fullscreen") {}
    stage.displayState = "normal";
    } else {}
    stage.displayState = "fullscreen";
    }
    }
    / * Determines the following code, with a bit of code in the next block.
    whose turn it is. Some of the other code is VERY dependent on this.* /
    var WhoseTurn:Number = 1;

    player1Turn.visible = false;
    player2Turn.Visible = true;

    playDie.rollButton.addEventListener (MouseEvent.CLICK, myWhoseTurnHandler);
    function myWhoseTurnHandler(event:MouseEvent):void
    {
    trace ("the die has been laminated.");
    If (player1Turn.visible == false) {}
    player1Turn.Visible = true;
    player2Turn.visible = false;
    WhoseTurn = 1;
    } else {}
    player1Turn.visible = false;
    player2Turn.Visible = true;
    WhoseTurn = 2;
    }
    }
    / Following components of code activate the counters to move along, the Commission
    According to what the die rolled.*.
    playDie.rollButton.addEventListener (MouseEvent.CLICK, myRollOneHandler);
    function myRollOneHandler(event:MouseEvent):void
    {

    If (playDie.frame == "rollOne" & & WhoseTurn == 1) {}
    Counter1.y = 184;
    } Else if (playDie.frame == "rollOne" & & WhoseTurn == 2) {}
    Counter2.y = 184;
    }
    }

    playDie.rollButton.addEventListener (MouseEvent.CLICK, myRollTwoHandler);
    function myRollTwoHandler(event:MouseEvent):void
    {
    If (playDie.frame == "rollTwo" & & WhoseTurn == 1) {}
    Counter1.y = 288;
    } Else if (playDie.frame == "rollTwo" & & WhoseTurn == 2) {}
    Counter2.y = 288;
    }
    }

    playDie.rollButton.addEventListener (MouseEvent.CLICK, myRollThreeHandler);
    function myRollThreeHandler(event:MouseEvent):void
    {
    If (playDie.frame == "rollThree" & & WhoseTurn == 1) {}
    Counter1.y = 385;
    } Else if (playDie.frame == "rollThree" & & WhoseTurn == 2) {}
    Counter2.y = 385;
    }
    }

    playDie.rollButton.addEventListener (MouseEvent.CLICK, myRollFourHandler);
    function myRollFourHandler(event:MouseEvent):void
    {
    If (playDie.frame == "rollFour" & & WhoseTurn == 1) {}
    Counter1.y = 490;
    } Else if (playDie.frame == "rollFour" & & WhoseTurn == 2) {}
    Counter2.y = 490;
    }
    }

    playDie.rollButton.addEventListener (MouseEvent.CLICK, myRollFiveHandler);
    function myRollFiveHandler(event:MouseEvent):void
    {
    If (playDie.frame == "rollFive" & & WhoseTurn == 1) {}
    Counter1.y = 590;
    } Else if (playDie.frame == "rollFive" & & WhoseTurn == 2) {}
    Counter2.y = 590;
    }
    }

    playDie.rollButton.addEventListener (MouseEvent.CLICK, myRollSixHandler);
    function myRollSixHandler(event:MouseEvent):void
    {
    If (playDie.frame == "rollSix" & & WhoseTurn == 1) {}
    Counter1.y = 700;
    } Else if (playDie.frame == "rollSix" & & WhoseTurn == 2) {}
    Counter2.y = 700;
    }
    }

    I did a variable that determines whose turn it's a button that lets you switch to fullscreen the Flash drive, blah, blah, blah. Now it there is no error in the compiler or something like that, but will not spend my counter!

    An example of code that seems to be miss you somehow is below:

    playDie.rollButton.addEventListener (MouseEvent.CLICK, myRollTwoHandler);
    function myRollTwoHandler(event:MouseEvent):void
    {
    If (playDie.frame == "rollTwo" & & WhoseTurn == 1) {}
    Counter1.y = 288;
    } Else if (playDie.frame == "rollTwo" & & WhoseTurn == 2) {}
    Counter2.y = 288;
    }
    }

    So can you Please help me! I think that I pretty much tried everything, but nothing seems to work!

    Di Kun <><

    here: www.kglad.com/Files/forums/game.fla

  • Make a zone of necessary text using conditional formulas

    Can what code I use to make a required text based on conditional logic box? For example, I have a currency type and dollar amount. One of my logical arguments would be: "If the currency is the PLN and the amount is greater than or equal to 50,000, check this text box a required field.» In otherwise, make this hidden field.

    Since it depends on two fields you will be needing to apply a script for both these fields, or (maybe a better option) use custom calculation event of a field in hidden text to check the two fields and then change the third.

    The code should look like this:

    var f = this.getField("Text1"); // Replace with actual field name
    if (this.getField("Currency").value=="PLN" && Number(this.getField("Amount").value)>=50000) {
        f.display = display.visible;
        f.required = true;
    } else {
        f.display = display.hidden;
        f.required = false;
        f.value = "";
    }
    
  • JavaScript: box always invalid after the page

    Hello

    In a region, I have a check box that must be disabled by default. After clicking on a button that applies a MRU/present (and verification of certain conditions) the box should switch to on.

    What I did:
    -The Javascript of the enableCheckbox() and disableCheckbox() functions are defined in the HTML page header (they work).
    -In the foot of the region with the box I call the function disableCheckbox ('myCheckbox'); to get the default value.
    -The optional URL redirection of the button says:
    JavaScript:doSubmit('SUBMIT'); to submit
    JavaScript:enableCheckbox('myCheckbox'); to activate the checkbox

    The problem is that the box will switch on, because submit/reload the page to disable the checkbox through the foot of the region. Think of other solutions, I realized that each top up will set the default again...

    How can that be resolved?
    Thanks in advance,

    Roger

    Hi Roger,

    You must have somewhere a logic that determines if the checkbox should be disabled/enabled.

    Generally speaking, it would be the value of one or more fields and the box should be checked whenever the field related (s) is / are updated using the onchange event.

    There are several ways to check for this, but the principles would be the same. For example:

    function check()
    {
     var x = document.getElementById("P1_PAGEITEM");
     var c = document.getElementById("P1_CHECKBOX");
     if (x.value == 'XXX')
     {
      c.disabled = false;
     }
     else
     {
      c.disabled = true;
     }
    }
    

    This function can be used on the page loading - by adding a call to it in Footer region region - and the attributes of the P1_PAGEITEM using:

    onchange="javascript:check();"
    

    Andy

  • Dynamic action - two types of options of "condition"?

    I would like to create a dynamic action that runs when a SQL condition exists is met.  If this is the case, then it will run several true Actions.  If this isn't the case, it will run several wrong Actions.

    I see there is an option of Condition in the when section of her DA, however, seems to be limited to static value comparisons or Javascript.  There is also another section of Condition where you can select SQL exists or various other PL/SQL expressions.  What is the difference between these options two condition?

    Also, when I set the status section to Exists and in the SQL query include an equivalence to an element of the page it does not seem to recognize the value of the page element. For example:

    Select * from my_table

    where PARTY_NUMBER =: MY_PARTY_NUMBER

    It still fails the condition even when a valid part number is entered on the page (him DA is run when MY_PARTY_NUMBER is changed).  I should be able to enter a reference point of page here, Yes?

    Thank you

    Steve

    P.S. I use 5 APEX

    Steve. 1234555 - Oracle wrote:

    I would like to create a dynamic action that runs when a SQL condition exists is met.  If this is the case, then it will run several true Actions.  If this isn't the case, it will run several wrong Actions.

    I see there is an option of Condition in the when section of her DA, however, seems to be limited to static value comparisons or Javascript.  There is also another section of Condition where you can select SQL exists or various other PL/SQL expressions.  What is the difference between these options two condition?

    Also, when I set the status section to Exists and in the SQL query include an equivalence to an element of the page it does not seem to recognize the value of the page element. For example:

    Select * from my_table

    where PARTY_NUMBER =: MY_PARTY_NUMBER

    It still fails the condition even when a valid part number is entered on the page (him DA is run when MY_PARTY_NUMBER is changed).  I should be able to enter a reference point of page here, Yes?

    N ° you won't achieve what you're trying to do. The standard Condition section in dynamic action controls if the code of the dynamic action is rendered the see page. It has no impact on the question of whether the actions of true or false are performed during the intervention of the user. Control conditions which are those defined in the when the properties of the dynamic action. As they are evaluated in the browser, they must be specified as JavaScript.

    To perform actions conditionally based on the existence of rows in a table requires DA type body of the PL/SQL function or SQL, submitting the values of the requested page, runs the necessary query and returns a value to an element of [probably hidden] page, followed by either an action to run Javascript Code containing conditional logic , or another DA triggered by a change on the hidden element event.

  • DEFAULT CONSTRAINT with the INSTRUCTION BOX - Oracle 11.2.0.3

    Is it possible to create a default constraint on a table based on conditional logic.

    For example:

    CREATE TABLE TEST_T (NUMBER OF DEPT_NO,

    GRANT_FL CHAR (1)

    );

    GRANT_FL DEPT_NO

    10             Y

    10             Y

    0               N

    I want the DEPT_NO to be filled with a default value of 10 only when GRANT_FL = 'Y' otherwise the value to 0.

    I can do that with an after Insert trigger, but would be better if this can be done via the case statement that sets a default value.

    Thank you very much!

    Kevin

    Hi, Kevin,

    Sorry, I don't think that there is a way to do it with the DEFAULT options.

    Kevin_K wrote:

    ... I can do this with an after Insert trigger...

    I think that a trigger is your best bet, but a BEFORE INSERT trigger would be much simpler and more effective?  An INSTEAD OF trigger is another possibility.

  • "conditional" checkbox in the General/console/process design of a process definition tab

    Hello

    According to Oracle® Fusion Middleware for Oracle Identity Manager 11 g Release 2 (11.1.2.2.0) Developer Guide, section 5.3.3.1 ('general tab'), the conditional check box has the following meaning:

    "This checkbox determines if a condition is met to add the task of current process to the process.

    Select this check box to prevent the process task to be added to the process, unless a condition has been met.

    "Clear this checkbox require is not the condition must be met for the task process be added to the procedure.

    Please clearify the following questions:

    (1) where exactly define these conditions?

    (2) what conditions are possible? (Complete list or link to documentation)

    (3) where exactly (link, document, chapter) is it is documented in detail?

    Thank you and BR,

    Max

    Hello

    1) its a check box available in the console Design-> Process Management-> process definition-> task-> task-> conditional box properties

    (2) two types of conditions are possible. Otherwise-> task will be call by default whenever the resource is currently in use.

    If verified--> the task will not be called unless its being triggered by an action. (Thanks to a reaction-> success, or using the code)

    (3) I think that the link you share has everything what is necessary.

    Let me know if in doubt.

    ~ J

  • creating YES NO label on top of boxes

    Hello

    I have a point of the box


    SPACE SPACE SPACE Need YES NO Label here
    1 yo accepts the conditions * 2 boxes *.

    I tried several ways but could not get the YES NO Label check right above these boxes.appreciate comments

    Thank you
    KP

    Published by: user8612301 on March 14, 2013 09:15

    Hello

    As Paul said, it seems one would use a group of Radio buttons for this with Yes / No selection. Regarding the alignment of the label, how do you do this:

    I made these declaritively. In the Label attributes I used the following to the Label - which is, put that in the attribute Label:

        YES NO
    Do you agree?

    Then you can change the color, the font size, weight, etc. Whites in front of 'YES' are produced by as '& nbsp; '. & nbsp; & nbsp; "you want to - but omit the space between"&"and"nbsp;" -include the ';' in each case. "support support BR" between no. and occur at a line break.

    And then for the horizontal / Vertical alignment attribute select 'Before' in the menu dropdown.

    That should do it!

    Kind regards
    Howard

  • If a conditional or unconditional else statement

    I need to write conditional logic in Business Catalyst, which shows the different lines of code in function if the value 'image' or 'video' is returned since. {tag_detailpage_image_or_video}

    The name of the returned value is {tag_detailpage_image_or_video} which returns either image or video.

    Code to display a video is:

    <div class="shift-to-hero"> <p>{tag_left_video_detailpage_embed}</p> </div>

    The code for displaying an image is:

    <figure class="article-image">{tag_left_detail_image_01}<br /> </figure>

    I don't know how this code in British Colombia

    This happens usually if you use a tag twice - sometimes you can't use twice, so check your source and make sure that you have not used this tag already.  If this does not work, make sure that the name of your tag is right.  If you need to insert it again from the bc module Manager I would try it, but its usually because you call the incorrect tag.

  • Conditional "updates" to a method...?

    Well, I am just learning Java... My goal is to learn enough java to convert server of the pattern (in fact dtksh) scripts. My first experience is an example of code of "gui" of "head first Java - Sierra/Bates. The code of the book works fine, but in order to understand how 'classes', 'methods' and 'Listeners' work, I tried to add a Boolean logic for the button.

    The code displays a simple graphical user interface that draws a filled in circle in the central region. Pressing any key causes the circle is redesigned with new colors (random). The second button changes the label text in the Western region. What I want to do is to update the label in the Western region based on the value of the variable 'msg '.

    Because I don't really understand the components, I don't know which code to include, why I included it all the!

    I commented parts I added do not have ' work. In fact, mine works... but not as I want.

    Goal: If 'msg' = 'true', and then change the text of the label of 'REAL' value 'false '.
    If 'msg' = 'false' then change the text of the label of 'FALSE' and the value of msg to ' true
    (Sofare so good... If I change my 'msg' is true or false... it works right exacltly).

    What it does not change the value so the next time the button is pressed, it should be the opposite. Sense repeatidly clicking the button should change the text of Labé of ti true false and false to true.

    Here's the full text... Sorry if this is too long!

    Thank you

    Kevin
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.Vector.*;
    public class TestGui2 {
         JFrame frame;
         JLabel label;
         boolean msg = false;  
    public static void main (String[] args) {
         TestGui2 gui = new TestGui2();
         gui.go();
         }
    public void go() {
         frame = new JFrame();
         frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
         JButton labelButton = new JButton(“Change Label”);
         if (msg) {
              labelButton.addActionListener(new LabelListener()); 
              } else {
              labelButton.addActionListener2(new LabelListener2());
              }
    JButton colorButton = new JButton(“Change Circle”);
         colorButton.addActionListener(new ColorListener());
         label new JLabel(“I’m a label”);
         MyDrawPanel drawPanel = new MyDrawPanel();
         frame.getContentPane().add(BorderLayout.SOUTH, colorButton);
         frame.getContentPane().add(BorderLayout.CENTER, drawPanel);
         frame.getContentPane().add(BorderLayout.EAST, labelButton);
         frame.getContentPane().add(BorderLayout.WEST, label);
         frame.setSize(500,300);
         frame.setVisible(true);
         }
    class LabelListener implements ActionListener {
         public void actionPerformed(ActionEvent event) {
              label.setText(“TRUE!”);
              msg = false;
              }
         }
    
    class LabelListener2 implements ActionListener {
         public void actionPerformed(ActionEvent event) {
              label.setText(“FALSE!”);
              msg = true;
              }
         }
    class ColorListener implements ActionListerner {
         Public void actionPerformed(ActionEvent event) {
         Frame.repaint();
              }
         }
    }
    Published by: leonhardtk on June 30, 2011 11:22

    Because it is not formatting properly, I have surround my suspicious code in asterisks.

    Thank you.

    Good. You have two separate listeners, but in the initialization of your treatment, you choose one of them and use it forever afterwards. The solution to this is to have only one earphone. And this listener must have a conditional logic that decides what text in the label, based on the State of the program at this time.

Maybe you are looking for

  • DVD Super Multi Drive problem - cannot access any CD - Satellite A100

    Hi, 1st post: My Satellite A100 features a DVD Super Multi drive, which worked very well. However I cannot now access any CD - error message ' D: / is not accessible. The request could not be performed because of an i/o device error."is displayed. Ho

  • Tab 2 A10-70 - create a new user

    Need to create a new user account but can't find this sub settings according to manual I should have a PERSONAL option? Mod edit: System model added to the front of the subject line to improve visibility / clarity.

  • Integral in the calculation Manager

    Hello I am trying to create a named calculation in the computation of Manager which includes an integral. I don't know how to include the channel alias (something like ChnIntegrate("","A","B") call) in the script. So far, I have had this (see picture

  • M570dw: HP Pro 500 questions

    Hello I have several printers HP Color Laser Jet Pro 500 (M570dw) with a few questions. -It is capable of printing, copying and scanning, but it keeps showing the error "the product is impossible to calibrate" - I have recheck glass, ADF, open it, cl

  • Explorer Windows has stopped working. Name of the damaged file: wmp.dll

    Original title: Windows Explorer has stopped working There seems to be a lot of discussion on this issue.  I tired some of the patches, but some of my numbers seem different from what other people have.  The problem is on my laptop.  I try to connect