How to programatically supress the visibility of the Box Object

Hi,
I need to hide or show the Box and Line object and / or change the foreground and background color using condition which depends on some databes field in the same way as for Text objects.
Is it possible ?
Regards,
Marek Zgadzaj

Hi Don,
I used the phrase "programatically" but I meant the use of the expression in designer time to change the Box visibility depending on that expression evaluation. Such the expressions can be used for most for objects, ie. Text object but not for Box and Line objects.
As you know, the designer does not allow to set the expressions for Box and Line objects to change their visibilty and background/foreground colors in similar way as for the other objects, so it can be assumed that is impossible to do it in the C# code.
I had a little hope that this feature is included in newest CR version, but I was informed that it is not implemented.
I can live without it, but in my opinion, all objects, including Box an Line, should have similar and complementary functionality to change theirs properties with using expressions. I do not know why Box and Line were excluded.
Don, thank you  for the support
Regards,
Marek

Similar Messages

  • How do we supress the code access to wifi?

    How do I supress the access code to Wifi?
    thank you

    Sorry. It's unclear what you mean. Please clarify what you mean by "suppress the access code to WiFi".

  • What information do I need to send in my IPod touch to be replaced and how do i get the box to ship it in

    What info do i need to send in my ipod touch to be replaced (i still have the 1 year warranty) and how do i get the box to ship it in also I have no clue what the address is please help

    The instructions on how to obtain warranty work is covered here:
    Apple - Support - iPod - Service FAQ

  • How can I drop the java objects from a schema

    hi..good afternoon all...
    How can I drop the java objects from a database schema???
    suppose the credentials are scott/tiger@db1
    Another thing is that...I have to do this from cmd(command prompt) as there is no plsql developer or sqldeveloper installed in the machine.
    plss help...thanks in advance...

    hi...i have already tried all the options..but it is showing the error..
    ora:01435 - user does not exist
    but when i have given the command...
    select object type, object_name, status from user_objects where object_type like'%JAVA%';
    then it is showing that the java_object is present....
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    SQL>
    SQL>
    SQL> set linesize 200
    SQL>
    SQL>
    SQL>
    SQL> select object_type, object_name, status from user_objects where object_type
    like '%JAVA%';
    OBJECT_TYPE OBJECT_NAME
    STATUS
    JAVA CLASS javaclass1
    VALID
    JAVA SOURCE javaclass1
    VALID
    SQL> drop java source javaclass1.java;
    drop java source javaclass1.java
    ERROR at line 1:
    ORA-01435: user does not exist
    SQL>

  • When importing images in Pages, how do I set the default object placement to "stay on page" and "no text wrap"?

    when importing images in Pages, how do I set the default object placement to "stay on page" and "no text wrap"?

    Then use a Layout template.
    I am a designer and I use Word Processing templates with layout breaks and all the other tools available because Layout templates are just WP templates with a lot of options removed.
    Pages is not Indesign, but then Indesign is not Pages, …and Pages 5 is not Pages '09.
    Unless your flyers are for the Web, why are you using Pages at all?
    I am curious, what does your post have to do with the O.P.'s question? …and why are you posting it here?
    Peter

  • Creating forms that are fillable, but I cannot print the full returned form- How do I expand the boxes to see all of the text for print?

    I have created several forms for work as I am trying to get new staff on board using digital forms vs. pencil and paper. However, there does need to be the option of printing the final, filled in product. I can see everything on the form through scrolling, but when I print it looks like a screen shot. Help!

    If you are finding that people are overfilling the boxes, you probably need to revisit how big you made the boxes. It's a common error in form design to try to save paper at the expense of box sizes.

  • How to remove/supress the multilevel heuristics button from the plng book

    Hi Gurus,
    how can i remove or supress the multilevel heuristics button from the SNP Planning book..
    could you share your ideas.
    thanks

    Hi
    You have not mentioned if you are using standard planning book or custom book. If it is a standard planning book provided by SAP you cannot make any changes to it . But if it is a custom book then all you have to do is , go to /n/sapapo/sdp94 bring up the planning book , go to design , select toolbar and remove the icon that you dont need and save .
    Thanks
    Aparna

  • How to programatically very the PWM output frequency in 7344, to the desired value

    Hi
    I can use the PWM output only for the frequencies that is specified like 40Khz or 20KHz. I require to set the PWM frequency programatically to the desired value at a aduty cycle of 50%. How to implement this.

    What exactly do you need the PWM oututs for? Are you using a motion drive that requires a PWM command? The controller itself does not allow you to use the PWM ouputs to change the frequency on the fly. You might want to go to a DAQ board of Fielpoint moduel for this functionality.l

  • How can I supress the 'misses' with a linux 'find'

    Hi,
    I'm searching for a string using 'find'.
    When using find, I always get a lot of rows of dierctories that say 'permission denied' in my output. How can I supress those rows.
    find ./ -name 'abc' -print

    Use *2>/dev/null* at the end of your find command to suppress Permission denied.
    $ find /etc -name oracle
    find: /etc/cron.d: Permission denied
    /etc/oracle
    /etc/oracle/test2/oracle
    find: /etc/racoon/certs: Permission denied
    find: /etc/audit: Permission denied
    find: /etc/lvm: Permission denied
    $ find /etc -name oracle *2>/dev/null*
    /etc/oracle
    /etc/oracle/test2/oracle
    $

  • How do I supress the encoding of UTF-8 characters in a f:param element

    Hello,
    I have a keyboard displayed on my page, which won't work properly because of the used german characters.
    I have an icon for every button embedded in a link, which adds the selected character to the searchstring.
    For example adding an a works like this:
    from keyboard.xhtml:
    <s:link><f:param name="#{keyname}" value="#{keyword}a"/><h:graphicImage value="key_a.png"/></s:link>keyname and keyword are parameters submitted by the including form:
    from myform.xhtml:
    <ui:param name="keyword" value="#{end}"/>
    <ui:param name="keyname" value="end"/>This works great as long as the character is a standard one, but on as soon as I have a german umlaut in the string, the umlaut gets encoded/escaped with every single character that i add to the searchstring:
    The string makes it's way correctly to the keyboard-template, I can use a h:outputText to show it on the page and it doesn't get escaped.
    So, how can I prevent the escaping of my characters in the f:params elements?
    I really need to get this to work. so any hint or even solution would be fabulous.
    Thanks in advance, Peter
    PS: maybe my web server is doing something nasty, so it would be nice, if someone can check this code:
    <s:link><f:param name="test" value="�"/>INIT</s:link><br/>
    <s:link><f:param name="test" value="#{test}"/>REPEAT</s:link><br/>
    INFO: <h:outputText value="#{test}" /><br/>here is the same one with h:outputLink
    <h:outputLink><f:param name="test" value="�"/>INIT</h:outputLink><br/>
    <h:outputLink><f:param name="test" value="#{test}"/>REPEAT</h:outputLink><br/>
    INFO: <h:outputText value="#{test}" /><br/>EDIT: I found the solution, it was my beloved jboss application server, after adding a parameter to the server.xml, everything worked as expected:
    use page settings:
    <Connector port="8080" .....
    useBodyEncodingForURI="true" ..../>hardcoded:
    <Connector port="8080" .....
    URIEncoding="UTF-8" ..../> Edited by: pete007 on Mar 12, 2008 1:47 PM

    "Encoding" refers to the charset used to convert the Unicode data into bytes. But since you're writing to a String, you aren't converting the data to bytes and therefore UTF-16 is the appropriate encoding. It doesn't make sense to ask for your data to be encoded in UTF-8 when you aren't producing bytes.
    You could read this tutorial about XML and Unicode and encodings for more information:
    http://skew.org/xml/tutorial/

  • How do I open the box?

    I have a brand new Nano, but I can't use it because I don't know how to open the <blessed> plastic box.
    Where does the box separate?  Is it the bottom, the white/transparent line?  Does it come off, is it hinged?
    Can anybody please help?
    Thanks!

    OK, I'll answer my own question.
    There is a tiny transparent strip that runs around the perimeter of the case, along the line where the plastic white body joins the transparent cover.  There is an almost invisible arrow at the beginning of the strip, which is on the side where the apple is.  I'm surprised that Apple, with its attention to detail, did such a poor design job.  The beginning of the strip should have been much more visible, for example, solid white or the same grey as the apple.
    After the strip is removed, everything opens very easily.
    Whoever designed the case, and the strip in particular, back to your room, and you are grounded for two weekends.

  • How can I get the Doc object from any other object?

    Dear colleagues,
    in FrameScript it is dead-simple to get to the document part of any object, just add .Doc to the variable.
    How can I achieve the same with ExtendScript? I amtired of passing the document object next to AFrames or Pgfs along into subroutines, because those objects already contain the information about their document. But how do I access this?
    Thanks for pointers,
    - Michael
    PS: Almost the same is true for the page an object lives on. With FrameScript we use .Page, with ExtendScript you have to move up the object tree until you reach the UnanchoredFrame.PageFramePage…
    PPS: It would be great to see some convenience properties like .Doc and .Page implemented natively.

    I'll preface this response by admitting this far from an elegant solution, but I did write a function addressing this question, mostly as an exercise.
    If passed an object with an InTextFrame property (Pgf, AFrame, Cell, Fn) that resides in an open document, the function will return the Doc object. Otherwise, it returns undefined.
    function getParentDoc(testObj) {
        //Get object for current page
        try { var curPage = testObj.InTextFrame.FrameParent.PageFramePage; }
        catch(er) {return;}
        //Step backwards to first page in document
        var prevPage = curPage.PagePrev;
        while (prevPage.ObjectValid())
            curPage = prevPage;
            prevPage = prevPage.PagePrev;
        //Compare with first pages of open documents
        var testDoc = app.FirstOpenDoc;
        while (testDoc.ObjectValid())
            if (curPage.id==testDoc.FirstBodyPageInDoc.id) return testDoc;
            testDoc = testDoc.NextOpenDocInSession;    
        return;
    To your PPS: Rather than seeing the native framework grow bloated to address additional features, I would love to see Adobe and other developers publish libraries of useful functions and class extensions.

  • How can I get the underlying object from the ObjectReference

    Dear friends,
    I think this question has been asked a couple of times. But, I am still wondering if anybody has found an answer to it. Maybe this is some common need ...
    I would like to get the underlying object for which the ObjectReference is
    a mirror For example, I have a class Customer in my application, and I can get an ObjectReference through JDI during runtime. But how can I get the target VM's object which is a real instance of Customer, by which I can invoke methods defined in Customer?
    Thank you so much for any input!
    SunnyDay

    I'll preface this response by admitting this far from an elegant solution, but I did write a function addressing this question, mostly as an exercise.
    If passed an object with an InTextFrame property (Pgf, AFrame, Cell, Fn) that resides in an open document, the function will return the Doc object. Otherwise, it returns undefined.
    function getParentDoc(testObj) {
        //Get object for current page
        try { var curPage = testObj.InTextFrame.FrameParent.PageFramePage; }
        catch(er) {return;}
        //Step backwards to first page in document
        var prevPage = curPage.PagePrev;
        while (prevPage.ObjectValid())
            curPage = prevPage;
            prevPage = prevPage.PagePrev;
        //Compare with first pages of open documents
        var testDoc = app.FirstOpenDoc;
        while (testDoc.ObjectValid())
            if (curPage.id==testDoc.FirstBodyPageInDoc.id) return testDoc;
            testDoc = testDoc.NextOpenDocInSession;    
        return;
    To your PPS: Rather than seeing the native framework grow bloated to address additional features, I would love to see Adobe and other developers publish libraries of useful functions and class extensions.

  • How can I use the same object in the different jsp files?

    I am doing a project. I have finished my jave source files and compiled them successfully. And I also wrote a main method to test my classes, they also worked well. Now I am trying to use my jave code in the jsp files. But I meet a problem, in my method of java source file, I can generate a object of a class, and use it in the whole main method. But in the different jsp files, how can I do same thing?
    For example, in the .java file,
    Vector vl = new Vector();
    While ...{
    vl.add(...)
    In each of my .jsp file I want to do one loop of the above, meanwhile I want to do that in the same object.
    I hope you can understand what I mean. Really need your help!

    put your object into a session and you can the use it in all the jsps as long as the session is valid. Or you could create a static variable in the class that only creates one instance off an object and then create a static method to return this object.

  • I have a 10.2.8 os. I had opened up the AOL logo on the bottom bar. Two aol boxes came up. I can get them to go away for a short time and then they come back. I have not used AOL for 6 years. How can I get the boxes to go away?

    I have a 10.2.8 os on a G4 desktop. A week ago I clicked on the AOL icon in the bottom bar. I have not used AOL for six years. Two aol boxes came up. I can not get the boxes to go away for long. They may go away for 15 minutes and they come back  while I am working. How can I get these  aol boxes to go away?
    I will be upgading to Tiger; 10.4.

    Right click on the AOL icon and select move to trash.

Maybe you are looking for

  • 1.5 Terabytes of AVCHD video and can't do nothing with it.

    I have a Sony's HDR-SR5 HD video camera. Over the last six months, I've taken tons of HD video of my kid. All these gigabytes are now stored on three simple-tech 500 G external hard drives. I've done some editing, moved some of the edited movies to t

  • Javascript error in ReportViewer

    Post Author: dallex CA Forum: WebIntelligence Reporting Dear all, I'm using Business X1's Java reporting component. The JRC is configured with websphere App server 5. The reports are displayed properly in the web browser. The toolbar also displays co

  • Why so anxious about ringtones if.....

    Why you are so concern about ringtones? What about GPS(most of the cheaper phones now have it)? What about Video recording(every cheaper phone has it)? My 4yrs old Nokia has it! What about Voice dialing(every cheaper phone has it)? What about Voice r

  • Question about bill charge!

    I am a little upset with the bill charge for this month. I can't accept this charge.  My plan was Family share plan 700 last month, and I added one more line.  Then, some days later, I changed my plan to Family share plan 1400 because I thought that

  • Time Machine will not restore backup files.

    trying to restore a backup to a new internal hard drive and time machine sees the  external hard drive with the backup but no folders. tried a couple of different  external hard drives and even installed new OS on the new internal drive. the original