Change XControl direction: changing direction of child VIs

Hi,
I'm writing an XControl containing several booleans, with a numert output based on which button is True, but I cannot change the direction of the Buttons when the direction of the XControl is changed in the VI using it:
In the owning VI, in Edit mode, I change the direction of the XControl via the drop-down menu.
In the XControl, the Direction Change event is triggerd, with {Indicator=True/False; RunMode=False}
I then set the Indicator property of the VIs in the XControl, but recieve an error (see below)
I also noticed this bug: wiring the error to an Error indicator on the XControl Facade yields:
Code: 1073
Source: Property Node (arg 1) in ControlSystem.lvlib:Filtermodes.xctl:FilterModes Facade.vi:31->ControlSystem.lvlib:Filtermodes.xctl:FilterModes Facade.vi.ProxyCaller
<APPEND>
Property Name: <b>Indicator</b>
Whereas a probe shows:
Error 1073 occurred at Property Node (arg 1) in ControlSystem.lvlib:Filtermodes.xctl:FilterModes Facade.vi:31->ControlSystem.lvlib:Filtermodes.xctl:FilterModes Facade.vi.ProxyCaller
Possible reason(s):
LabVIEW: This property is writable only when the VI is in edit mode, or this method is available only when the VI is in edit mode.
Property Name: Indicator
Also, one cannot call 'Explain error/warning' on Error indicators in XControls form the using VIs
How can I change the
direction of the buttons in my XControl to match the direction of the XControl?
TIA,
Jonathan

An
XControl dropped on a front panel (whether the FP is in an XControl or
not) is ALWAYS in run-mode.  It is essentially a parallel process to the
VI in which it is contained.
So even if the VI is not running, all the XControls
on it's FP are running?
I think this is the problem
when you are trying to set the direction in your code.
 This 'code' is the direction change handler in the XControl Facade, if the above is true, then I'm out of luck I guess
You want to set the direction of other
XControls contained within your XControl? Is this right?
Not exactly, I want to set the direction of normal control (Customized, but not an XControl), contained in the FP of my XControl, although it seems like that won't change much
Based on the comments LabView adds to XControls, it seems that the Facade is not running in between processing events, so maybe one could change the direction of the controls after the event handling is done (Some kind of callback)?
My current work-around is to disable my controls in indicator mode, since disabled Modern OKButton controls look identical to their indicator
Thanks,
Jonathan

Similar Messages

  • How to change the billing qty directly during VF01 in AFS?

    Dear experts:
       Can anyone advise how we can change the billing qty directly during VF01 in AFS? Can anybody tell me why i can modify the billing qty in SAP R/3 ECC6.0, but it fail to in AFS, why?
    The operation was:
    1、I have  to done one customising, in VOV7 for my Item category change the Billing Relevance to "K";
    2、We setting up as Delivery note  related billing and would like to change the qty at the point of billing;
    3、Enter the Delivery note number Do not Press Enter, Then Click on u201Cselection listu201D, however , the field of "open quantity"  is in greyed out mode !
    In SAP R/3 ECC6.0 ,In transaction VF01 put the Delivery note NO. and before entering or executing go to "selection list" and we will find the quantities in editable mode and we can change there and then execute billing,but in AFS,the field of "open quantity"  is in greyed out mode ! I asked a lot of friends in AFS, they also  have this problem!
    Thanks
    Peter.lee
    Edited by: peter.lee on Nov 19, 2011 3:05 AM

    Hi Guys,
    Contrary to others IS (retail, oil etc...), AFS has been almost fully redesigned in some areas. That's why SAP releases first EHP business functions for standard and then try to enhanced the new created features later in AFS EHP.
    In regards to the change of the billing quantity, from my prospective this is not supported. Quantity always comes from preceding document.
    AFS is implemented in many industries like workwear, fashion high fashion, sportwear, underwear, bags etc...However I never got the same requirement to change the billing quantity.
    For which reasons do you need to change the billing quantity ? Can this be done in the sales order (in case of debit/credit memo request) or in the delivery ?
    The billing area has some restrictions, such as doing a pricing redetermination, in AFS it must be done in the sales order for example.
    You could potentially ask SAP and see whether an advanced modification could be provided (this is chargeable).
    Hope this might help.
    Regards,
    Mehdi

  • How to change or Switch - scroll direction - automatic using registry keys

    how to change or Switch - scroll direction on TouchPad Synaptics - automatic using registry keys   ?

    Hi jrv
    How to explicitly take ownership of the subkey?
    System.Security.AccessControl.InheritanceFlags 
    I try use value
    "ContainerInherit、ObjectInherit、None", and It only take permission in root key.

  • HELPP Changes in OM done directly should update in Personnel Administration

    Hello Gurus,
    My client guy did changes in OM by directly moving persons into different positions and work flow doesnt work now. So is there any report i have to run so as to update the changes from OM to PA.
    Thanks,
    Raj..

    Hi Soniya,
    Please check if the OM to PA integration is set in the table T77s0. You can check this through the transaction sm30.
    Or you can use the img node Organizational Management -> Integration -> Integration with Personnel Administration -> Set Up Integration with Personnel Administration.
    Also try using the report RHINTE10  and RHINTE30 to correct the entries in PA.
    You can execute these from transaction se38.
    Regards,
    Santosh

  • What happens to cached entity beans when directly change record in database?

    hi:
    i am working on a project which weblogic as app server. there's many case
    in my application where we have to update large number of records(about
    fifty thousands) in
    a loop one at a time. we have tried with entity beans but it 's so slow.
    so in this case we have to update database directly. but i am worried about
    my code accessing record with entity beans. the entities caches state and i
    am
    afraid there will be trouble if the state in ejb caches and record in db
    mismatch . i change state in db directly and ejbs has no way to know about
    it.
    is there any solution?
    thanks in advance!
    daniel

    Depends on the way you have implemented your entity bean. Normally, a bean
    method invocation will trigger a transaction (based on the bean's method
    transaction attribute), which will in turn call the ejbLoad(). In CMP's the
    container will automatically load the data from the underlying datastore. In
    BMP's a transactional method call will invoke the ejbLoad(), and the
    ejbLoad() implementation would be responsible for loading the data.
    "daniel wang" <[email protected]> wrote in message
    news:3c5e01b9$[email protected]..
    hi:
    i am working on a project which weblogic as app server. there's manycase
    in my application where we have to update large number of records(about
    fifty thousands) in
    a loop one at a time. we have tried with entity beans but it 's so slow.
    so in this case we have to update database directly. but i am worriedabout
    my code accessing record with entity beans. the entities caches state andi
    am
    afraid there will be trouble if the state in ejb caches and record in db
    mismatch . i change state in db directly and ejbs has no way to know about
    it.
    is there any solution?
    thanks in advance!
    daniel

  • User making direct changes to PRD system

    My enviroment is ERP 6 ABAP /Oracle 10G/Solaris 10
    Some of my superusers are fond of making direct changes to PRD (as opposed to DEV & then transport via the landscape) though changes in  PRD system  have been restricted through  client change options SCC4 & system change option SE06
    I suspect the said users have ROLE with powerful authorizations that they ought not to have.
    Kindy advice what I should look for the users roles or how I can go about to harden PRD system aganist direct changes
    Thanks
    Edited by: Andale J on Sep 29, 2010 12:10 PM

    Hi BAIGSA
    Creation of roles is down to the security policy already in place unless you are lucky enough to be in at the beginning and can define how all roles are to be built in future.
    Mostly, you arrive at a client's site and have to adapt to their authorisation concept.
    You may find that function (module based) roles are inplace or that job roles (either multiple singles assigned directly or via composites or a one role does all) has been set up.
    Remediation of module based roles can be a really pain if they were built with too many transactions included - user group/job roles are far easier to remediate but this depends on the policies in place - inactive objects etc)
    I haven't enough information to understand what the changes are that have been made in prod to help - you need to review those changes and formulate a strategy which the business agrees to to resolve.
    Kind regards
    David
    Edited by: David Berry on Oct 3, 2010 8:30 PM

  • Directly change in production environment.....

    Hi Experts,
         Hope you are well.
         Could you please share that which changes can we make directly in production environment at the configuration level, without create transport request.
         Please share with me the changes list in production environment.
    Thanking for your understanding.
    Thanks & Regards
    Rajesh

    Hello,
    As per best practices, any configuration change should go through transport process and all master data changes should be done directly in production.
    Some examples of changes that can be done directly are.
    1. Exchange rates
    2. Sets used in validation/substitution (GS01/GS02)
    3. All condition records
    4. Customer/vendor/GL/Asset/cost center/cost element master data
    5. Tax percentages
    There are many more follows... Tell us your exact requirement. Then we can guide you better.
    Thanks,
    V V

  • During install on my laptop it tells me to change my password by direction in an email that I never receive. What can I do?

    I have my copy of Photoshop Elements 13 install on my Desktop and I also want to install it on my laptop. It is telling to change my password with direction from and email which I never receive. What can I do?

    I have my copy of Photoshop Elements 13 install on my Desktop and I also want to install it on my laptop. It is telling to change my password with direction from and email which I never receive. What can I do?

  • How to directly change the text of a tree node once its in the tree

    How can I directly change the text of a tree node once its in the tree.
    I have a property box which fires an eventevery time it is edited
    (this is currently just output to the screen via println)
    What i want is for the tree node to take the updated text that is in the text box every time
    thus giving tree labels that update as you type
    PS. i have access to the tree node (DefaultMutableTreeNode) from the code that hanldes
    the text box event

    ... use the setUserObject() method of your DefaultMutableTreeNode, that'll set the text of the node.
    however, you probably need to do a treeModel.nodeChanged(node) with your tree model, to get the display updated.
    thomas

  • Limiting direct changes in production

    Hi i would like to ask you guys, on how to limit direct changes in production..
    if im using scc4 to say no changes, automatically the system prevent any changes to system.
    we still want to be able to change these objects : query ,infopackage and processchain ,
    anyone have done such things ?
    Your kind inputs is appreciate..
    Regards

    1 In the admin tool File->save as/ copy as option or
    -->This can do but I've seen there is little bit slowness at user end to for response,once file is saved then it would be normal
    2 From the path oraclebi/server/repository.
    -->You can go with both cases during the service is off or on,I've seen no issues so far; most proffered one is offline.
    I prefer 2nd option.
    Hope this helps, pls mark if helps
    Edited by: Srini VEERAVALLI on Jan 6, 2013 9:59 AM

  • How edit a combobox class for dropdown direction changing?

    hi all,
         i wanna change the direction of combobox dropdown so How can i edit a combobox class for dropdown direction changing?

    Someone gave me a class file to put into my applet.
    ... Does anyone know how to go
    into the class file and change it? And why can't you ask "someone" for the source? Or ask them to modify it for you?

  • I am using a 5s under IOS 7.1.1. How can I change the year field directly when editing an existing calendar entry?

    I am using a 5s under IOS 7.1.1. How can I change the year field directly when editing an existing calendar entry?

    Glad that helped.
    Enjoy your iPhone!

  • Just changed servers. Followed directions for changing Apple ID. Everything seems to be working except that my old Apple ID is still in iCloud account. How do I change that?

    Just changed servers. Changed Apple ID to new email but having trouble with iCloud. Although I followed directions for changing the Apple ID, iCloud ID didn't change. Thought about deleting old iCloud and adding new, but got warning that I'd lose everything in iCloud when I did that. Help!

    Problem has been solved.

  • Directly change an objects variable

    Hi everyone,
    I'm a bit rusty with my ABAP, and I was hoping you could help.
    I have my object called 'value', which has many classes in it, and each of these classes have variables.  My question is, how do I directly access those variables through the object, without calling a utility?  I want to set VAR A to something, how would I do that?
    The hierarchy goes:
    OBJECT value
         CL_1
                    VAR A
                    VAR B
         CL_2
                   VAR A
                   VAR B
    How do I directly change these variables?
    Thanks in advance!

    Hi
    Check with below sample code
    REPORT ysubdel .
    INTERFACE i1 .
      DATA          : inum TYPE i  .
      DATA          : cnum TYPE i  .
    ENDINTERFACE.                    "i1
    CLASS c1 DEFINITION .
      PUBLIC SECTION.
        INTERFACES : i1 DATA VALUES inum = 5 cnum = 6  .
    ENDCLASS.                    "c1 DEFINITION
    CLASS c1 IMPLEMENTATION.
    ENDCLASS.                    "c1 IMPLEMENTATION
    START-OF-SELECTION.
      DATA : oref TYPE REF TO c1 .
      CREATE OBJECT : oref.
      WRITE:/5 'Values from class',oref->i1~inum ,
                 oref->i1~cnum .
      oref->i1~inum   = '7'.
      oref->i1~cnum  = '8'.
      WRITE:/5 'Values after changing',oref->i1~inum ,
    oref->i1~cnum .
      oref->i1~inum   = '7'.
      oref->i1~cnum  = '8'.
    Regards
    Srilaxmi

  • HT4864 How do I directly change the incoming mail server for icloud in Mail?  It's grayed out.

    How do I directly change the incoming mail server for icloud in Mail?  It's grayed out.
    I ask this because I have suddenly stopped receiving most e-mails in Mail.  I've found that my incoming mail server (p01-imap.mail.me.com) is different from what the Apple mail setup assistant recommends (mail.me.com), but I cannot change it because it is grayed out.  Any ideas?

    I'm afraid that AFAIK you've gone through the card. You could try Support, though I don't know how helpful they are likely to be.
    To contact  iCloud Support: if you currently happen to have AppleCare, either because you recently bought Apple hardware or have paid to extend the inititial period, you can contact them here:
    http://www.apple.com/support/icloud/contact/
    You will need the serial number of the covered hardware.
    If you are not covered by AppleCare, then - in common with other free email services - there is no free support and you may be asked to pay a fee.

Maybe you are looking for

  • Curve 8530 SMS Text Problems

    My Curve 8530 will receive and send SMS texts ok for a while.  Then, for no reason, I cannot click on an sms and open it.  It will not show the previous texts.  I cannot open the txt to make a reply.  I took this to Verizon, he checked it and said th

  • Strange figures in Purchase Analysis report

    Hello, I am running a purchase analysis report and am a little confused by the results. I am running the reports using goods receipts. What I am finding is that there are a vast amount of zero quantity items shown in the results. When I drill down in

  • How to disable the date picker in manualy Tabular form?

    I develope an application with apex 3.2 , I builded a tabular form manualy with APEX API and I have an item 'date picker' , I want that once user want insert the date , he can do it only by clicking on the date picker and not into the item I try to u

  • Where is the New Tab Button in 4.01?

    The New Tab Button beside the Current Tab is missing on my desktop computer but is present on my laptop. Both are using 4.01. I found a New Tab Button in the Customize Toolbar Menu and put it on the Navigation Bar on my desktop but don't like it. Why

  • How do I modify my Adobe Illustrator CC 2014 preferences file?

    I know the location, and I've done it before in the previous version of CC, but for some reason its not letting me in the newest version of Illustrator (CC 2014), does anyone have a step by step to getting this done? Mac OS Local /Users//Library/Pref