How to hide and unhide scrollbar at runtime

I have a multiline item and i attached a scrollbar to this item. However, I only want the scrollbar to appear when my input text is more than the multiline text. Suppose my multiline can allow 5 lines, If i want to go to the sixth line that is when i want the scollbar to appear

Ade
You cannot set the items multi_line property. Instead you can check if multi_line has been set to true or not.
DECALRE
V VARCHAR2(10);
BEGIN
V := GET_ITEM_PROPERTY('ITEM_NAME',MULTI_LINE);
END;
MULTI_LINE will return TRUE /FALSE ( a varchar2 type).
For more details, check the documents on SET item_property on what all properties that can be set .
Cheers... Bob

Similar Messages

  • Hide and unhide panel

    I have many panel in one screen. Each panel has buttons, labels and etc. So how to hide and unhide every panel?
    Thank you

    Sort of like minimizing...
    let say the real size of panel is 400 x 400 pixel, then i want to minimize to 400 x 20 pixel.
    But the panel is dynamic, i can maximize and minimize again and again...
    Thank you.

  • How do I hide and unhide photos in Photos for Mac

    How do I hide and unhide photos in Photos for Mac ? Also, how do I delete an Album ? It appears that Photos is a work in progress that is only about 10% done. The Help in Photos is essentially useless. Where can I find the equivalent of a manual or instruction book?

    How do I hide and unhide photos in Photos for Mac ?
    You can hide photos in the Photos view, but not in the albums:
    Select some photos, ctrl-click, select "Hide".  Unhide from the Hidden Album.
    Also, how do I delete an Album
    You can only delete albums that you created, not the built-in albums.
    Select the album in the Sidebar. Ctrl-click it. Select "Delete Album".
    The Help in Photos is essentially useless. Where can I find the equivalent of a manual or instruction book?
    I have not read this book yet, but the series is usually very good:
    "Photos for Mac: A Take Control Crash Course," penned by Jason Snell, formerly of Macworld and now at Six Colors.
    Buy it for $10 > http://tid.bl.it/photos-crash-course-cart
    Get more info > http://tid.bl.it/photos-crash-course-info

  • How to hide and then unhide AD objetcs?

    Dear all,
    I want to know how to hide and then unhide AD objects?
    Thanks
    Regards

    Microsoft
    Active Directory (AD) has decent capabilities for setting permissions on objects. You can use these permissions to allow delegated administration of users, groups, or computers to any security principal. In this way, many daily operations don't need to
    be performed by domain administrators. But when it comes to making specific data visible to only those users who need to see it—either because typical users shouldn't see the objects or because the data is truly confidential—the default AD permissions can
    make the task rather complex.
    Using the Confidentiality Bit to Hide Data in Active Directory
    http://windowsitpro.com/active-directory/using-confidentiality-bit-hide-data-active-directory
    Regards,
    Biswajit
    MCTS, MCP 2003,MCSA 2003, MCSA:M 2003, CCNA, Enterprise Admin, ITIL F 2011
    Blog:
      Script Gallary:
      LinkedIn:
    Note: Disclaimer: This posting is provided & with no warranties or guarantees and confers no rights..

  • What are the mysterious keys for hide and unhide programs?

    There is a strange symbol next to the apple symbol that is part of the hide and unhide short cut keys.
    I cannot find what these are after searching help, studying the keys and asking several people.
    This must be so obvious it escapes me!
    I have the new photoshop elements and it doesn't have the minimize buttons so I need to hide it.
    Help!

    AH! Yes. I guess I never made the connection before because I never use Command-H. I've had a multi-button mouse since the Stone Age, and have always had one button assigned to Option-click, so have always hidden apps by a middle button click on the Desktop. Also I almost never use Command-H to hide selections in Photoshop because I tend to forget I did that and then get frustrated when something like the clone tool doesn't work because I'm cloning outside the selected area.
    After reading the blog entry you sent I started experimenting to see which "normal" conventions Elements wasn't following, and, since hiding and unhiding was the topic at hand.... BTW, thanks for the link to the blog. I had never really thought about many of those idiosyncrasies before, like fly-out menus for instance.
    Francine
    Francine
    Schwieder

  • How to hide and show Omniportlet based on user privileges

    hi all
    I am trying to hide or show an Omniportlet based on user privileges, which means accessc control on portlet-level for Omniportlet. But I couldnt find out how to do it.
    According to Portal Developer's Guide:
    You can hide and show portlets built with Web Clipping and OmniPortlet on portal pages dynamically by using security managers. Although Web Clipping and OmniPortlet do not expose security managers through the user interface, you can apply them by editing their XML provider definition file.
    Question is: where can I find that XML file? Is this file accessible and configurable somewhere through Portal Enterprise Mgr?

    Hi,
    I don't think you can edit this file through Enterprise Manager. Atleast as far as I know. But its available on the server. I have a NT installation and I found it under:
    D:\oracle\Mid_tier\j2ee\OC4J_Portal\applications\portalTools\omniPortlet\WEB-INF\providers\omniPortlet
    You might want to restart the Portal application through OEM after you change this file.
    Hope this helps,

  • How to hide and resume a native activity in flex app

    what i want to do is like this:
    (1)start an activity by the native extension when lauching the application and then display a list for users to choose
    (2)make a choice and send it back to the flex
    (3)flex does something and then jump to the native list above for users to choose
    the problem is:
    how to hide the native activity in step(1) and how to resume it in step(3)?
    as the download of the native list wastes much time, i dont want to destroy the native activity and recreate it.
    can anybody help? i will be thankful!

    You probably know by now but I though maybe a could actualy
    answer someone question.
    {Application.application.parameters.name)
    put that in mx:text and you can see the var "name"

  • How to load and instantiate FXG at runtime?

    Hi
    Let's say I have a Flex 4 app whose SWF size in KB/MB should be small. While the app runs, the user might want to make the app load 10 of 1000 FXG components that are available. How to load and instantiate these 10 FXG components?
    (I want to avoid compiling an SWF that would contain 1000 FXG components and thus would be large in file size.)
    Here are snippets from an example which can instantiate FXG components, but would probably be too large in SWF size if would contain all the FXG components.
    fxgstuff/rect.fxg and fxgstuff/circle.fxg contain this:
    <fxg:Graphic xmlns:fxg="http://ns.adobe.com/fxg/2008" version="1">  
       <fxg:Group>
    Snippets from the main MXML file:
      import fxgstuff.*;
      import spark.core.SpriteVisualElement;
      public function addRect():void {
        var _rect:SpriteVisualElement = new rect;
        _rect.x = _x_rect;
        _rect.y = _y_rect;
        container.addElement(_rect);
      public function addCircle():void {
      <s:Button label="Add rectangle" click="addRect()"/>
      <s:Button label="Add circle" click="addCircle()"/>
      <s:Group id="container"/>
    Tobi

    You put each graphic into a MXML Module (not MXML Component) which stays on the server and is loaded at runtime when you request it, as in:
    // >>>>>  Imports  <<<<<
    import flash.events.Event;
    import flash.net.URLLoader;
    import flash.net.URLLoaderDataFormat;
    import flash.net.URLRequest;
    import mx.events.ModuleEvent;
    import mx.modules.IModuleInfo;
    import mx.modules.ModuleManager;
    // >>>>>  Variable Declarations  <<<<<
    private var urlLdl:URLLoader;
    private var modInfo:IModuleInfo;
    private var oneGraphicsModule:Object;
    // >>>>>  Methods  <<<<<
    private function moduleLoader( pathToModule:String ):void
      // Loading one Module
      modInfo = ModuleManager.getModule( pathToModule );
      urlLdl = new URLLoader(  );
      urlLdl.dataFormat = URLLoaderDataFormat.BINARY;
      urlLdl.addEventListener( Event.COMPLETE, bytesLoadedHandler );
      urlLdl.load( new URLRequest( pathToModule ) );
    private function bytesLoadedHandler( event:Event ):void
      modInfo.addEventListener( ModuleEvent.READY, moduleLoadedHandler );
      modInfo.load( null, null, event.target.data );
    private function moduleLoadedHandler( event:ModuleEvent ):void
      oneGraphicsModule = modInfo.factory.create();
      // Do with the module what you need to . . .
    So all of your graphics stay on the server, you "just" need to put each graphic or group of graphics into a MXML Module.
    David

  • Hide and unhide button..how?

    Guys, need you help.
    action script...below is the situation.
    I have 3 entry box
    1. name1
    2. name2
    3. name3
    I have 1 image button and 1 click button.
    1. image button.. called "button1"
    2. click button.. called "click1"
    how do use action script to do these behaviour.
    if the user leaves the entry boxes or even leaving 1 empty.. the image button and click button will not be available. IF, the entry boxes are filled up..the buttons will be available and ready for clicking.
    im using CP4.
    hope you can help me.
    Thanks and best regards.

    Hello,
    You are talking about actionscript, but I think you want an advanced action?
    Are you validating the entries in the Text Entry Boxes? Or is it not important what they did give as input there, just that they shouldn't be empty.
    By the 'click button' do you mean a Text Button or a Click Box?
    If you want an advanced action, you'll have to start by creating a user variable to be able to check if the TEB's are empty. Although the examples are worked out in Captivate 5, the principles of such a check are explained in one of my blog posts, you can have a look meanwhile:
    Where is Null?
    You'll need an event to trigger the advanced action. This could be a button or you can trigger an advanced action after each TEB-entry. That is another question for you: what do you want?
    Lilybiri

  • Is there a way to hide and unhide specific files programmatically using Labview?

    I writing an application that produces 3 binary data files and I want the user to only see 1 of the 3 files.
    I'm using Labview 6.1 and windows 2000.

    You can use System Exec.vi to call attrib.exe. Atrrib.exe is a command prompt program (left over from the DOS days) which can be used to read or set file attributes (including hidden).
    A sample command line passed to System Exec.vi follows.
    attrib +h "C:\My Documents\My File.bin"
    The quotes around the file name are required if the path or file name doesn't follow the old DOS 8.3 format.
    To hide a file, use the +h option. To unhide a file, use -h.
    The limitation of using this approach is that the Windows Explorer can be set to display hidden files. You might want to put the hidden files in another directory.

  • Button to hide and unhide rows in Adobe Livecycle

    I have table in Adobe Livecycle I want button when I press to unhide two rows and if I need two more and .... And I need same button to hide two rows.
    Thank you.

    Use the 'presence' property. If your row is a static row (ie you see it in design time), then simply reference the name: myRow.presence="hidden" or myRow.presence="visible".
    However, if it's a dynamic row (ie you add them at run time), then you have to reference the name of the row along with its index: myRow.all.item(3).presence="hidden". The index of a row is zero-based, that means the first row is 0 and in my example row 3 is the 4th from the top.
    Kyle

  • How to hide and show button based on if row is selected in tabular form

    Hi,
    Im pretty new to apex. I am using version 4.1. I have a tabular form and what i want to do is only have the delete button show if i select a row from the [row selector] column. Can this be done using a dynamic action? I have tried it that way unsuccessfully. Please help or let me know if you need any more information.
    Thanks

    Do you mean if the check box is selected in the row?
    Assign a static ID to the delete button, e.g. MY_DEL_BTN. Look for "Static ID" under the Attributes section of the button.
    If so, make an advanced Dynamic Action based on Click and a jQuery selector. Usually, this element is name "f01" but, you need to make sure. Assuming it is "f01" then your jquery selector would be:
    input[name="f01"]set the event scope to live.
    Your dynamic action will fire JavaScript. (BE SURE TO UNSELECT FIRE ON PAGE LOAD). To make sure you have the right jQuery selector, at first just put a pop up message in the JavaScript.
    alert('You Clicked the Row Selector!');Run the page. Click the row selector. If you get the pop up you have specified the jQuery selector correctly. Yay!
    Then, assuming the above is correct. You can now determine if any have been selected.
    Now, set it back to SELECT TO FIRE ON PAGE LOAD (You want the delete to be hidden when you first open the page).
    Change your JavaScript to this:
    var checkedCnt = $("input:checked").length;
    if( checkedCnt > 0 )
       $('#MY_DEL_BTN').show();
    else
       $('#MY_DEL_BTN').hide();
    };-Joe

  • My dock is not smooth when it hides and unhides

    I noticed that when I have many icons in the dock, it's real chunky when I move the mouse over it. Is there any fix to that? When I first installed 10.4, the dock moved really smooth- now it's not- could this be because I have too many icons?

    Another I've also found is to Update the prebindings.
    In an Admin account Launch Terminal and type this command
    sudo update_prebinding -force -root /
    This will force the update of prebindings and optimise your system.
    Put up what your Page in/outs are though, it could be that lack of memory is causing general system sluggishness.
    Mark

  • Hiding and unhiding pictures (z10)

    Was trying to find how to hide and unhide pictures for the new z10.  The old ones i know could go through media manager/explorer, but can't figure out how with the new phone.   Any help would be appreciated.

    This a simple video I've found on how to do it and it works hope this helps you guys . http://m.youtube.com/#/watch?feature=em-upload_owner&v=etvP_C7Hpz4&desktop_uri=%2Fwatch%3Fv%3DetvP_C...

  • How to hide/show chart at runtime

    Hi All,
    Can anyone help me in how to Hide/Show a chart at runtime.
    Thanks & Regards
    K.Srinivas

    Hi
    THere is simple way of doing it. Follow the steps below -
    1. Create 'Radio Button' in another form.
    2. Create 2 buttons in it e.g - 1=Show & 2=Hide.
    3. THen there is option as 'Visibility Condition' on Chart 'Properties'.
    4. Write condition as - IF('Form Tech name'@ST1=="1",true,false)
    here ST1 is tech name of the radio button you can select it in formula option.
    5. Then make 1 or 2 as default value.
    You can change radio button at run time & you can show or hide the chart.
    Let me know if you have any issue.
    Regards
    Sandeep

Maybe you are looking for

  • I am trying to import pictures to IPAD 2 via Ipad Connector. Use to work now it does not. Any clues?

    I am trying to import pictures to IPAD 2 via Ipad2 Camera  Connector (Flash). Use to work now it does not. Any clues? I am a neophyte to Apple products...

  • Error: Object Required apperas when accessing Content Admin Portal Content

    After installing Ep 7.0 sp16 Portal and logging in as Administrator we get Error: Object Required apperas when accessing Content Admin >Portal Content The same error appears when trying to access System Admin > permissions. Anything to do with catolo

  • Enable 3rd party selection tab in infopackage

    HI, When i create my infopacakage for 3rd party datasource, my 3rd party selction tab is not enabled to give any inputs. Could anyone pls guide me how to get it enabled. Anamika

  • Little Light in Lower Right Corner

    So I was in the App Store buying something, it downloaded, but after it downloaded it restarted my iPhone, and it took a couple minutes to restart, and once it came on no matter what I do there is a slight little light in the bottom right corner and

  • RE: Color Checker

    Hello Every one I have a question please and I appreciate it very much if you could help me. I was watching a Tutorial on Color Checker and I want to make sure I am doing it Correctly. I shot some pictures,  and I also shot a picture from a Color Che