Make a rectangle visible/invisable

Hi guys,.

I have a question where I am bring data from the database and if a specific field = ' don't I want a red rectangle appears around the field to attract the attention of users to the fact that it is N (the field is actually a checkbox) However, if the checkbox is to 'Y' I don't want the rectangle to be displayed. I thought it would be easy enough using the value of set_item_property of the rectangle, but after watching the rectangle does not have a visible property. As is the case here, someone knows how to do this?

As I'm writing this, I guess I could just change the diagram of edge of solid votes to zero and it should work?

Thank you.

Rectangles, but also other forms, that you can draw shapes, are treated as graphical objects during execution. Therefore, there are no properties that you can set on these objects during the design or execution.

Since your goal is to simply draw the attention of the user on the domain, I suggest that change you the appearance of the quick text assigned to your checkbox instead. Then, you can use the Set_Item_Property() built-in to change the font color, weight, etc.

Another quick question would be that I have a block record multi which retrieves many records questioned on this matter, if I want to make a specific record red if a certain field = 'Y' would I just changed using set_item_property on a post request trigger?

In a layout (tabular) several check-in, you must use the Set_Item_Instance_Property() instead of the integrated Set_Item_Intance_Property() integrated. create a Visual attribute with the color changes you want and then use the Set_Item_Instance_Property to assign the Visual attribute.

Hope this helps,
Craig B-)

If someone useful or appropriate, please mark accordingly.

Tags: Oracle Development

Similar Questions

  • When I make a rectangle, the left and right edges are a bit fuzzy and thicker, then the bottom and at the top. It seems very strange and I don't know why that is.

    When I make a rectangle, the left and right edges are a bit fuzzy and thicker, then the bottom and at the top. It seems very strange and I don't know why that is.

    I made a new document (72 dpi, preview mode: by default) and I tried to see if it's the same thing on another screen, and it is.

    I thought that the problem would be with the 'align on the pixel grid' property but by activating / deactivating it doesn't matter. Maybe it's something with anti-aliasing? "Work of anti-aliasing" is checked in my preferences...

    Screen Shot 2016-04-15 at 17.51.29.png

    Here's an example, zoom level 100%.

    The forms do not look sharp at all. No idea what this can be?

    Lieselot,

    Or you can try to switch between the GPU and CPU by pressing Ctrl / Cmd + E, or you try disabling GPU performance by clicking on the icon of the rocket in the bar of the App, or on the top of the menu bar, deselect the box Performance GPU. You may also uncheck performance GPU in your preferences.

  • My pictures on my card do not show in the import module, but I can see the names of files. How can I make my photo visible?

    I try to import images from the camera or via a card reader. It seems that something has changed. The image is not visible in the import module, but I can see folder names (date) on the map.

    How can I make my photo visible?

    Thanks for the help!

    Dear Akash,

    I have lightroom 5 and sony A77 M2. Finally I solve it myself investigate other positions on the internet on the same subject. I clicked on the part of area of "copy of area" (right of the screen) to the modus of import and the images showed once again. Still don't know why the pictures disappear and hope it was just something that I was wrong somewhere. Before I had multiple tasks (moving files) in the background may cause pressure on system/software.

    Thanks anyway for the reaction

  • Make the tab visible benefits on the people screen

    Hello

    A responsibility custom, people enter and maintain the screen, I need to make the tab visible benefits.

    I checked if the customization is hide and is NOT.

    I checked Taskflow but this is not controlled by the workflow either (as far as I can see) correct me if I'm wrong.


    Is there something obvious I'm missing here?

    Please suggest!

    Thank you

    What function is needed to make the tab visible benefits?

    EXPECTED BEHAVIOR
    Wait tab benefits on the personalized handset by and Asg form (PERWSHRG) to be visible.

    MEASURES
    1 custom liability
    2. people > enter & maintain
    Cause
    The cause of the problem is the function that view HR benefits has not been attached to the menu

    New BUG: 3514601: TAB BENEFITS IS NOT INCLUDED ON THE FORM of PERSON INFORMATION
    He states:
    The display of the tab benefits is controlled by the function 'HR_VIEW_BENEFITS '.
    Solution
    To implement the solution, please perform the following steps:

    1. go in the liability: System Administrator

    2 navigate to SEE > Application > Menu

    3 queries in your menu and add the feature (with no prompts) "HR_VIEW_BENEFITS" and save it.

    4. Please test the issue again.

    5. If the problem is solved, please migrate the solution as the case in other environments.

    Published by: 955690 on May 8, 2013 08:36

  • How to make a rectangle around activeDocument.selection?

    Hello world!

    Recently, I met a terrible problem. I want to make a rectangle around the current selection, but not success.

    Could you help me or give some clues? Thank you!

    HAVE version?

    In CS3 , it works for me:

    // Box4selectedPath.jsx
    // for selected pathItems   // CS3
    // creates a green rectangle around all the selected paths (visibleBounds)
    // regards pixxxelschubser
    
    // http://forums.adobe.com/thread/1183584
    
    var StrtPOrigin = app.activeDocument.pageOrigin;
    var StrtROrigin = app.activeDocument.rulerOrigin;
    app.activeDocument.pageOrigin = Array(0,0);
    app.activeDocument.rulerOrigin = Array(0,0);
    
    var aDoc = app.activeDocument;
    var Sel = aDoc.selection;
    
    var newRGBColor = new RGBColor();
    newRGBColor.red = 0;
    newRGBColor.green = 255;
    newRGBColor.blue = 0;
    
    if (Sel.length >0 ) {
        var vBounds = Sel[0].visibleBounds;
        vBounds_Li = vBounds[0];
        vBounds_Ob = vBounds[1];
        vBounds_Re = vBounds[2];
        vBounds_Un = vBounds[3];
    
        if (Sel.length >1 ) {
    
        for (i=1; i vBdsI[0] ) {vBounds_Li = vBdsI[0]};
            if( vBounds_Ob < vBdsI[1] ) {vBounds_Ob = vBdsI[1]};
            if( vBounds_Re < vBdsI[2] ) {vBounds_Re = vBdsI[2]};
            if( vBounds_Un > vBdsI[3] ) {vBounds_Un = vBdsI[3]};
            }
        }
    
    var aRectangle = aDoc.pathItems.rectangle(vBounds_Ob, vBounds_Li, vBounds_Re - vBounds_Li, vBounds_Ob - vBounds_Un);
    aRectangle.strokeColor = newRGBColor;
    aRectangle.strokeWidth= 2;
    aRectangle.filled = false;
    aRectangle.stroked = true;
    aDoc.selection = null;
    
    } else {
        alert ("no selection")
        }
    
    app.activeDocument.pageOrigin = StrtPOrigin;
    app.activeDocument.rulerOrigin = StrtROrigin;
    

    Don't forget: only pathItems

  • Make unique anchors (visible and printable)

    Hello

    I have a vector image which I would like to convert to "connect the dots" image, so I don't need that anchors without segments between them. I deleted all segments and have only anchor points now. My question is how to make unique items visible and printable?

    I would appreciate is someone also suggests how to remove all segments automatically without selection each of them.

    Thank you and have a wonderful year!

    To get only the anchors: select all, then select > object > poignees handles management, then delete

    To get to the position of the anchor points use the script "Find and replace Graphic" http://kelsocartography.com/scripts/

  • How to make the handles visible direct selection on the pasteboard?

    When I go to for transformation/resize images within frames using direct Selection, I don't see the handles of the image because they are white against a white cardboard.  I use InDesign CS5 (ver 7.0.4) on a Mac. I've been using InDesign for a few years and never noticed that it was a problem; all of a sudden, the handles seem invisble. I don't remember what the color scheme was before. (Maybe I'll lose my mind). The colors did not alter an update? There is an option in the preferences to choose the color of the pasteboard, but this does not seem to have any effect. In the meantime, I can't find the handles to resize/convert images. I can enter a percentage to scale, but it is sometimes useful. How to make the handles visible direct selection on the pasteboard?

    If you're talking about the color of a path and its handles, which is dependent on the color of the layer selection. Go to the layers panel. Double-click the currently selected schema and change the selection to something darker color.

  • Make the subform visible in the drop-down list

    I have two drop-down lists in my form. I used the switch-case causes the option chosen in the drop-down list 1 to fill available items in the dropdown list 2. Depending on the option chosen in the drop down 2, I need to make the field visible or hidden. I don't know where I get the value of my if statement to make the field visible or not.

    Thank you

    MDawn

    Hi MDawn,

    Populating drop-down lists (DDL) is done by element pairs: addItem ("DDL text element displayed", the value of the element DOF) for example: ("Item", 1).

    You can access the value of point DOF using the output of the DDL event. Place a script here "this" to refer to the value of point DOF.

    For example, a script like

    If (this.rawValue == "1") {}

    Subform1. Presence = "visible";

    }

    will reveal the subform after the user selects a DDL element that has the value "1".

    In addition, you can consider using the preOpen event DDL to fill the 2nd drop-down list box. It allows to populate the drop-down list when clicked - this allows you to do a number of things such as check no matter what value of objects or more objects to their values before you decide what elements should be populated in the drop-down list box. It is powerful enough way to do this because it opens up a whole series of things that you were not able to do otherwise.

    I hope this helps.

    Stephen

  • make photo rectangle have rounded corners?

    Hello

    I have two banners that I use in my site. Currently they are rectangles about 900 px wide. I would like to somehow crop or do something to get the corners rounded, but not feather / / or blurred. I would just put a thin border around the photo, so it looks clean, but have the rounded corner.

    Thank you

    -Westside

    Make a rectangle with rounded corners to the size you want with the corner radius that you like.
    Duplicate and place the copy on a new layer.

    Make the first with white fill and no respect. Select your banner and the rectangle, then
    Modify > mask > Group as mask.
    Think that masks like... White stencils, black watch shows nothing, intermediate colors show luminance.

    On the copy or your rounded rectangle, set the padding to zero and the race to the border thickness and color you want. Given that it is a copy of the form you used to hide with, at the border match exactly.

  • Make the computer Visible on the network

    I have several computers connected to my router.  Some wireless, some by ethernet.  One of the computers is an old WinXP machine, the others are all either Vista or Win7. (BTW the XP computer connects with ethernet

    1. The XP computer can "see" all the others available in network connection
    2. All new Vista & Win7 machines can 'see' each other
    3. None of the latest you can 'see' the XP computer as available for a connection

    I guess I have to change something in the XP computer to make it visible to others.

    Any suggestions?

    gsnu201101

    Hello

    It see all availble devices that are configured for Sharew on the network.

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

    Maybe this can help.

    Win7 when configured on the peer-to-peer network has three types of configurations of sharing.

    Group residential network = only works between Win 7 computers. This type of configuration, it is very easy to entry level users to start sharing network.

    Working network = fundamentally similar to previous methods of sharing that allow you to control what, how and to whom the records would be shared with.

    Public share
    = network Public (as Internet Café) in order to reduce security risks.

    For the best newspaper of the results of each computer screen system and together all computers on a network of the same name, while each computer has its own unique name.

    http://www.ezlan.NET/Win7/net_name.jpg

    Make sure that the software firewall on each computer allows free local traffic. If you use 3rd party Firewall on, Vista/XP Firewall Native should be disabled, and the active firewall has adjusted to your network numbers IP on what is sometimes called the Zone of confidence (see part 3 firewall instructions

    General example, http://www.ezlan.net/faq.html#trusted
    Please Note that some 3rd party software firewall continue to block the same aspects it traffic Local, they are turned Off (disabled).
    If possible, configure the firewall correctly or completely uninstall to allow a clean flow of local network traffic.

    If you end up with the 3rd party software uninstalled or disabled, make sure that Windows native firewall is active .

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

    Network Win 7 with another version of Windows as a work network (works very well if all computers are Win 7 also).

    In the center of the network, by clicking on the type of network opens the window to the right.

    Choose your network type. Note the check box at the bottom and check/uncheck depending on your needs.

    http://www.ezlan.NET/Win7/net_type.jpg

    Win 7 - http://windows.microsoft.com/en-us/windows7/Networking-home-computers-running-different-versions-of-Windows

    Win 7 network sharing folder specific work - http://www.onecomputerguy.com/windows7/windows7_sharing.htm

    Vista file and printer sharing - http://technet.microsoft.com/en-us/library/bb727037.aspx

    Windows XP file sharing - http://support.microsoft.com/default.aspx?scid=kb;en-us;304040

    In Win XP Pro with simple sharing Off, you can visually see the Permission/security level and set them up at your convenience.

    http://www.Microsoft.com/windowsxp/using/security/learnmore/AccessControl.mspx#securityTab

    Sharing printer XP - http://www.microsoft.com/windowsxp/using/networking/expert/honeycutt_july2.mspx

    Setting Windows native firewall for sharing XP - http://support.microsoft.com/kb/875357
    Windows XP Patch for sharing with Vista (no need for XP - SP3) - http://support.microsoft.com/kb/922120

    When you have finished the configuration of the system, it is recommended to restart everything the router and all computers involved.

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

    If you have permission and security issues with Vista/Win7, check the following settings.

    Point to a folder that wants to share do right click and choose Properties.

    In the properties

    Click on the Security tab shown in the bellows of the photo on the right) and verify that users and their permissions (see photo below Centre and left) are configured correctly. Then do the same for the authorization tab.

    This screen shot is to Win 7, Vista menus are similar.

    http://www.ezlan.NET/Win7/permission-security.jpg

    The Security Panel and the authorization Panel, you need to highlight each user/group and consider that the authorization controls are verified correctly.

    When everything is OK, restart the network (router and computer).

    * Note . The groups and users listed in the screen-shoot are just an example. Your list will focus on how your system is configured.

    * Note . All the users who are allowed to share need to have an account onall computers that they are allowed to connect to.

    Everyone is an account, that means a group of all users who already have an account now as users. It is available to avoid the need to configure permission for each on its own, it does not mean all those who feel that they would like to connect.

    Jack-MVP Windows Networking. WWW.EZLAN.NET

  • My destop all icons are colored and when I try to make crystal or visible, I can't change

    My destop all icons are colored and when I try to make it transparent or visible, I can't change

    Click the Start button, select Control Panel

    Check points: -.
    1. in the performance and Maintenance/adjust Visual effects or if you use the classic theme - settings/system/advanced/performance
    'Use the shadows of the desktop icon labels -' must be checked
    2. right click on the desktop, point to arrange icons by and ensure that items Web Lock on Desktop is unchecked;
    3. If you have content web on your desktop, transparency does not do a right click on the desktop. Select properties, then go to the Desktop tab.
    Click on the button customize the desktop, and then open the Web tab.
    Uncheck everything in the box of Web Pages
    Press OK, then apply and OK again.
    4. you can't have a file html as wallpaper, it must be an image file.
    It is sometimes necessary to restart to take effect, sign out and then sign back in.

  • Illustrator: make a rectangle rounded of a regular with the direct Selection tool.

    I used to make a rounded rectangle to a regular rectangle using the direct Selection tool, but now when I click on the corner I don't see the RADIUS that do.

    Ally,

    I fear she is only in the later version.

    You can update. The latest version is 19.2 (who has some problems (GPU), so you can consider 19.1.1 also.

  • AE makes only physical visible layers?

    Hello

    I will try to explain myself as accurate as possible.

    I have 3 layers in a composition. They are stacked on top of each other, and only the background layers is visible at the beginning (the other two layers are edits on by opacity later).

    I have an effect of very demanding ram/processor (camera Lensblur with 50px blur) on the layer below and no demanding effects on the other two.

    My question is now:

    After Effects takes the lower layer counts, even if it has been hidden by not demanding layers on the top, or AE only 'look' visible layers?

    Thanks in advance

    It depends on the EI version you are using. The newer versions do a better job of optimization makes.

    One way to find out how it works is to test it. Back and see if it speeds up considerably once the lower layer is totally obscured.

    I use AE for more than a decade, so I'm used to the layers of cut once they are no longer visible in order to make makes it faster.

  • Make the text visible/invisible field based on the menu drop-down

    I currently have a form that automatically calculates dates based on the value in particular the "Text10" field with the current script of

    Custom calculate script for the field 'date '.

    (function () {}

    Get the date in the field

    var v = getField("Text10").valueAsString;

    Convert string to date

    var d = util.scand ("mm/dd/yyyy", v);

    Add 30 days

    d.setDate (d.getDate () + 31);

    Fill in this field with the result

    If {(v)

    Event.Value = util.printd ("mm/dd/yyyy", d);

    } else {}

    Event.Value = "";

    }

    })();

    I want to thank this option to hide the field if one selects a particular value in a drop-down list. Allows to call the drop "decline.1" and values are just 'Yes' and «» Yes makes visible, hide it.

    Is this possible? I looked through the forums and can't seem to find a solution. I use Adobe Acrobat X Pro

    Thank you

    Yes, it is possible. Just add the following line, this isn't little matter so long it after the first year and before the last:

    Event.Target.Display = getField("drop1").value = 'no '? Display.Hidden: display.visible;

  • make a layer visible by name

    Does anyone know how to make a visible layer using the name of the layer, with javascript?

    If the layer is called the 'evidence' for example

    app.activeDocument.layers['proof'].visible = true;
    

    You must go through the Scripting Guide and Scripting reference, you learn a lot, script guide covers the basics and the reference has a ton of excerpts, you'll love the search for knowledge, he

Maybe you are looking for

  • I can't visit a website only on firefox

    When I visit justin.tv it just loads but I can display the Web site on internet explorer, I tried to clear the cache and cookies that does not resolve the issue, how do I fix? There is no error message that turns the fair tab

  • Firefox now "reads a page in the future" for WordPress sites?

    Hello I just noticed something weird in Firefox 26.0. With the help of a violin, I see that when I review WordPress sites, the browser asks an extra page (only the source page, not the links on the page) that I want to. Indeed, it seems to be the nav

  • The value of static output (LVCMOS) on PCI 6562 PFI 3

    Need to use the 6562 3 PFI LVCMOS output to provide a logic 1/0 to a controls data switch within our test equipment.  How this can be implemented in CVI?

  • Migration of the subsites to Parent on Unique.

    Hi friends. I am using Sharepoint 2007. I have some sudden which are inherited from the parent site.I need to migrate to individual subsite that uses its own unique permissions. The parent site must not have any influence on it.What are the best meth

  • Uplinks ESX on a blade of UCS

    After installing ESX on UCS Blade (adapter type is Palo, the number of network cards is 2) sometimes I see that the uplinks are vmnic2 and vmnic3 (output of esxcfg-NICS - l) Where are the output of esxcfg-vswitch - l shows the uplink as vmnic0, and i