The visible size of the Let/Right Component for JSplitPane

Hi all,
I am doing a project on map plotting. But i Don't know the way to get the visible size of the Let/Right Component (example JPanel) for a JSplitPane. Can anybody help? Thanks a lot!

Hi,
if you're just interested in the size you could use getDividerLocation().
something else could be:
getJSplitPane().getWidth()-(getJSplitPane().getDividerLocation()+getJSplitPane().getDividerSize())that gives you the Width of the right part
Phil

Similar Messages

  • [svn:fx-trunk] 12025: Switching out the old video component for the new video component that uses OSMF .

    Revision: 12025
    Revision: 12025
    Author:   [email protected]
    Date:     2009-11-19 17:48:04 -0800 (Thu, 19 Nov 2009)
    Log Message:
    Switching out the old video component for the new video component that uses OSMF.  Also fixing RSL issue with OSMF because a change in flex-config.xml accidentally got overwritten.  Also fixing a bug caught during the last code review where you would set the volume on the VideoPlayer, but the volumeBar wouldn't be made aware of that change.
    Switching out the video component results in many API changes.  The changes are highlighted below:
    Class name changes:
    - spark.primitives.VideoElement is being renamed to spark.components.VideoDisplay
    - spark.components.mediaClasses.StreamingVideoSource is renamed to park.components.mediaClasses.DynamicStreamingVideoSource
    - spark.components.mediaClasses.StreamItem is renamed to park.components.mediaClasses.DynamicStreamingVideoItem
    VideoDisplay/VideoPlayer event changes:
    The new video component's events are:
    - bytesLoadedChange : org.osmf.events.LoadEvent
    - currentTimeChange : org.osmf.events.TimeEvent
    - durationChange : org.osmf.events.TimeEvent
    - mediaPlayerStateChange : org.osmf.events.MediaPlayerStateChangeEvent
    The old video component's events were:
    - close : spark.events.VideoEvent (removed)
    - complete : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - metaDataReceived : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    - playheadUpdate : spark.events.VideoEvent (replaced with currentTimeChange)
    - progress : flash.events.ProgressEvent (replaced with bytesLoadedChange)
    - ready : spark.events.VideoEvent (replaced with mediaPlayerStateChange)
    VideoDisplay/VideoPlayer property changes:
    Renames:
    - maintainAspectRatio:Boolean has been renamed to scaleMode:String and rather than true/false, it now access 4 values: none, zoom, letterbox, and stretch.  See the enum class org.osmf.display.ScaleMode.
    - playheadTime:Number has been renamed to currentTime:Number
    - playWhenHidden has been renamed to pauseWhenHidden, and it's "tense" has been reversed.  So playWhenHidden = true correlates to pauseWhenHidden = false.  Also, before we would only pause when the video component was explcitly set to visible=false, but now we detect if the video components or any of it's ancestors have been hidden.
    - totalTime:Number has been renamed to duration:Number
    New properties:
    - bytesLoaded:Number This is a new property not available on the old video component
    - bytesTotal:Number This is a new property not available on the old video component
    - loop: Boolean this was a property added a while ago on the old video component but not in the original video player spec
    - mediaPlayerState: this is a new property that details the state of the video component.  See org.osmf.media.MediaPlayerState for all the possible values.
    - seekToFirstFrame:Boolean (pending PARB approval) - This is a new property available on VideoDisplay/VideoPlayer.  When autoPlay = false, if seekToFirstFrame is set to true, then we will connect to the server to start downloading the video, figure out the size of the video and resize appropriately, and show the first frame of the video.  If seekToFirstFrame is false, then no connection to the server is made, there's no implicit size for this video, and the first frame will not be show automatically.  By default the value of this property is true.  In the old video component, when autoPlay = false, we always has the same behavior as seekToFirstFrame = true.  Now it is controllable through this property.  Eventually, (not for Flex 4.0), we will most-likely have support for a thumbnail source or a splash screen so the video's preview will show up without making an unneeded connection to the server.  The property name may change depending on PARB.
    Other changes:
    - autoRewind: The default of autoRewind is now true instead of false
    - enabled: before we paused the video when the video component was explicitly set to enabled = false.  Now we pause the video when the video component or any of it's ancestors have been disabled.
    VideoPlayer-only changes:
    - videoObject:flash.media.Video property is now a new property on VideoPlayer.  It was previously only on VideoDisplay.
    - The skin states for the old VideoPlayer were: connectionError, disabled, disconnected, loading, playing, stopped, connectionErrorAndFullScreen, disabledAndFullScreen, disconnectedAndFullScreen, loadingAndFullScreen, playingAndFullScreen, stoppedAndFullScreen.  The new skin states are: uninitialized, loading, ready, playing, paused, buffering, playbackError, disabled, uninitializedAndFullScreen, loadingAndFullScreen, readyAndFullScreen, playingAndFullScreen, pausedAndFullScreen, bufferingAndFullScreen, playbackErrorAndFullScreen, disabledAndFullScreen
    DynamicStreamingVideoItem property changes:
    - bitRate:Number renamed to bitrate:Number
    DynamicStreamingVideoSource property changes:
    - initialIndex has been added to DynamicSteramingVideoSource
    - live:Boolean has changed to streamType:String which accepts values: live, recorded, any.  See the enum class org.osmf.net.StreamType for more info.
    - serverURI:String renamed to host:Object
    - streamItems:Array has changed types to streamItems:Vector.
    ScrubBar property changes (THESE CHANGES ARE NOT DONE YET, BUT SHOULD BE DONE SOON)
    - bufferedStart will be removed
    - bufferedEnd will be renamed to loadedRangeEnd.  This property name still may change depending on PARB.
    - bufferedArea skin part needs to be renamed.  Probably will be renamed to loadedArea.  PARB still deciding.
    QE notes: -
    Doc notes: -
    Bugs: -
    Reviewer: Kevin
    Tests run: checkintests
    Is noteworthy for integration: Yes
    Modified Paths:
        flex/sdk/trunk/frameworks/flex-config.xml
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/SparkClasses.as
        flex/sdk/trunk/frameworks/projects/wireframe/build.xml
        flex/sdk/trunk/frameworks/projects/wireframe/src/spark/skins/wireframe/VideoPlayerSkin.mx ml
        flex/sdk/trunk/frameworks/spark-manifest.xml
    Added Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/VideoPlayer2.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamItem.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/mediaClasses/StreamingVideo Source.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/VideoElement.png
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin.mxml
        flex/sdk/trunk/frameworks/projects/spark/src/spark/skins/spark/VideoPlayerSkin2.mxml

    I've got that same problem: iPod Touch 2nd Gen, Apple Component Cables, and an HD TV.
    The funny thing is, the cable works fine with an iPod Classic (160 GB) but not for the iPod Touch. Can anyone explain why that is?

  • How can I know the right component for a transaction?

    Hi, I have a question
    When creating a new message in Solution Manager, notif_create, how can I know the right component given the transaction code or program name?
    Thanks in advance
    Edited by: María Valdés on Aug 19, 2008 6:25 PM

    Hello Maria,
    Well, in the Support Message window, place the cursor in Component box and press F4. This will brings up another window which contains the components list to which you are authorized. From that list you can choose about which component you want to create that particular support message.
    For example, if you are from Quality department, the following can be visible when you press F4.
    QM - Quality Management
      -- QM-ADB Adobe Forms
           -- QM-ADB-PRN Print Forms
      For the Print Forms, the component will be QM-ADB-PRN
    I hope it helps.
    Cheers,
    Satish.

  • The new vrsion of the ultimate Flash component for elearning

    Flash-O-Navigation Professional , an advanced version of
    Adobe approved component for Flash based e-learning is released at
    http://www.esspl.com/flashcomponents/flashonavigationprohome.asp
    In this version there are many advanced features associated
    such as UTF8 font support to create e-learning interface in
    languages like arabic, japanese; FLV movie support , with
    capability to bookmark any point of the FLV content; Inbuilt
    WhiteBoard feature to let users save hand drawn shapes and sketches
    for future reference.

    Importing text from an XML file to appear as text in Flash
    works in English, however if the text I want to import is in
    Arabic, when I test the movie there is no text at all.
    Is there some particular syntax to preface the Arabic text?
    I'll want to import text from XML in other languages too.
    (French)
    I'd cut and pasted some Arabic text into the XML file that
    displays pictures and text in the "slideshow.fla" (
    http://www.adobe.com/support/flash/applications/jpeg_slideshow_xml/jpeg_slideshow_xml03.ht ml)
    Substituting Arabic text for English text, editing the XML
    file with Dreamweaver.
    Any ideas as to how I might achieve my objective of importing
    Arabic text into Fash?
    I'd started developing my prototpe in Macromedia Director 7,
    and then Director MX, but I have not found a suitable Arabic font
    that I can embed that will allow me to display Arabic fonts in
    Adobe Director. I have the Arabic text in a Word document.
    I've dicovered that my Flash MX Pro and Dreamweaver both
    support Arabic fonts, but I want to import text from an XML file.
    I'd prefer using cast libraries and cast members, but I don't
    know of an equivalent in Flash to what I'm comfortable with in
    Director.

  • When attempting to go to my Cox Web Mail account I receive at the top of the page. "Firefox is preventing this page from redirecting to other page, so I have to click on the top right ALLOW for it to redirect to my Cox Webmail sign in page. Why?

    When using my Cox e-mail shortcut to go to the sign in page why does Firefox prevent the current page from redirecting to the Cox web mail sign in page?
    What settings do I change so I don't have to go to the top right of the page and click on ALLOW?

    @Steve_Clairman, if you are looking for the orange Firefox button (abbreviated menus), it will appear if you turn off the classic menu bar:
    View menu > Toolbars > ''uncheck'' Menu Bar

  • Where to download the Security Providers Component for Content Server

    Hi,
    according to the security providers guide (http://download.oracle.com/docs/cd/E10316_01/cs/cs_doc_10/documentation/extras/security_providers_guide.pdf),
    the Security Providers component file, SecurityProviders.zip, is part of the
    component update bundle for release 10g.
    Does anyone know where to get this bundle?
    Thanks in advance.

    Hi 321sdk123
    I would say that it is on metalink in the section patches & updates.
    Is it for the RDBMS or the IAS?

  • What is the best FLAC component for QuickTime?

    A friend asked me for help. She wants to download Flac (free lossless audio) files to listen on her Mac. What codec is best for her?

    Gerben Wierda wrote:
    A friend asked me for help. She wants to download Flac (free lossless audio) files to listen on her Mac. What codec is best for her?
    iTunes (and QuickTime) cannot as standard play FLAC files. There is a way to get iTunes for Mac to do this but it is a fair amount of work and you would not be able to transfer the music to an iPod or iPhone.
    I recommend getting a utility to convert the FLAC files to Apple Lossless (Apple's equivalent to FLAC) which can be played by QuickTime, iTunes, VLC, all both on Mac and Windows, and it is even possible to add a plugin to Windows Media Player, WinAmp, dbPowerAmp, Foobar 2000, and others to also play Apple Lossless.
    For the Mac two suitable conversion utilities are Max see http://sbooth.org/Max/ and XLD (X Lossless Decoder) see http://tmkk.hp.infoseek.co.jp/xld/index_e.html

  • Where to download the JAVA component for BS2005 and SAP XI ?

    Dear all,
       When I install the ECC6 in Linux, system reminder me that the JAVA package is not correct. I wonder where to get the right JAVA component for BS2005? Btw, where to download the SAP XI Component for installation? Tks.
    Regards
    Jialin

    all,
       I have got it from delivered DVD.

  • ESS E-leave : which is the ABAP Webdynpro component ?

    Hi Gurus,
    I have a few questions regarding ABAP-Webdynpro.
    1. Which is the corresponding ABAP Webdynpro component for ESS E-Leave application ?
    I need to add a new report to the Leave Request page but unable to find the ABAP WD component for the same !
    2. Just by looking at the portal web-page, is it possible to find out if the page is based on Java WD or ABAP WD ? And if ABAP WD, how to find the corresponding component ?
    Any hints will be greatly appreciated and rewarded.
    Regards,
    Sandip.

    Just right click on empty space on leave application and select "more field help" then you will get technical information of the component.
    But some times, this option will be disabled by portal administrators.
    Regards
    Srinivas

  • Before I Buy the MPEG-2 Component

    Hi,
    Before I buy the MPEG-2 Component for Quicktime, I want to make sure it is the right thing to do. I'd hate to make a purchase and not have it solve my problem.
    Here's my specs:
    QuickTime Player 7.5.0
    Mac OS X 10.3.9
    Mac iBook 466 MHz PowerPC G3 - A Graphite Clamshell (vintage and I love it!)
    576 MB SDRAM
    Sony DCR-SX40 4GB Handycam Camcorder
    It is my understanding that if I download:
    MPEG-2 Component (a purchase)
    http://www.apple.com/quicktime/extending/components.html
    MPEG Streamclip 1.9.2 (free)
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    Then I should be able to watch and edit videos from my new Handycam in QuickTime.
    Is this correct?
    Or is there something else that I need to be doing?
    Thank you!

    Here's the page you may be referring to: http://store.apple.com/us/product/D2187Z/A
    It lists the specs which are way beyond my computer.
    Recommended System Requirements:
    * QuickTime 7.6 or later (Pro not required)
    * PowerPC G4 (500MHz or faster) or Intel processor
    * At least 256MB of RAM
    * Mac OS X v10.4.10 or later
    I read all of the reviews and there were folks who had the same specs I do that it works for, but the date of their reviews were from a few years ago, so they must have had a previous version of the Component.
    It also mentions underneath the system specs about OS 9 and using OS 9's Component, though it doesn't provide a link.
    Does anyone have any idea how I can get an older version of the Component? One that will match my specs.
    QuickTime Player 7.5.0
    Mac iBook 466 MHz PowerPC G3 - A Graphite Clamshell (vintage and I love it!)
    576 MB SDRAM
    Mac OS X 10.3.9
    Sony DCR-SX40 4GB Handycam Camcorder
    Thanks!

  • I need a letter of volatility for the PXI-1042 chasis.

    I need the standard security information needed to confirm that sensitive data passing through National Instruments PXI-1042 chassis has been replaced been fully cleared.

    Hello ECohen and anyone who might need this in the future,
    Here is the letter of volitility for you.  Cheers!
    ColeR
    Field Engineer
    Attachments:
    PXI-1042(Q) Letter of Volatility.pdf ‏13 KB

  • Variable naming convention..... The letter 'm'

    hi experts,
    I saw some people like to start their variable names with the letter lowercase 'm'. For example,
    String mHappy ="";
    boolean mRunning = false;
    Is there a reason? What does the letter 'm' stand for?

    In the usage I've seen (C++), m is for "member". I'm pretty sure it's used in MFC, and it may come from the more general "Hungarian Notation" that also uses things like s for string, p for pointer (relevant in C/C++ but not Java), etc.
    I think this convention is pretty unusual in Java (I've never seen it), but I imagine there are a number of people, especially C++ programmers, who do use it.

  • Macbook air 2012 not displaying icon on the top right corner

    hi guys
    as the title, my macbook air isn't displaying icon on the top right corner. for instance, my volume icon and wifi icon disappear. furthermore, ocaasionally there some flashes on my screen. this never happen to me before and i am reinstalling my OS 10.8 right now. Anyone know what is wrong with my laptop?

    Hi Matze_Moto,
    It should not be an issue. What you are seeing is the ability to Mirror your display to an Apple TV. If you feel that there is an issue, click on the menu to see if it is actually connected to another display. Check out the article below for more information. 
    About AirPlay Mirroring in OS X
    http://support.apple.com/en-us/HT201343
    Take it easy,
    -Norm G. 

  • How to set the  Upload Destination Directory for RichFileUpload ?

    Hi! I'm using the RichFile Upload component for uploading the files to server..
    I have configured the file the size to be uploaded, but could not set the destination directory... The web.xml entries I have in my project is:
    <context-param>
    <!-- Maximum memory per request (in bytes) -->
    <param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_MEMORY</param-name>
    <!-- Use 500K -->
    <param-value>512000</param-value>
    </context-param>
    <context-param>
    <!-- Maximum disk space per request (in bytes) -->
    <param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_DISK_SPACE</param-name>
    <!-- Use 5,000K -->
    <param-value>5120000000</param-value>
    </context-param>
    <context-param>
    <!-- directory to store temporary files -->
    <param-name>org.apache.myfaces.trinidad.UPLOAD_TEMP_DIR</param-name>
    <!-- Use an ADFUploads subdirectory of /tmp -->
    <param-value>/tmp/TrinidadUploads/</param-value>
    </context-param>
    <filter>
    <filter-name>trinidad</filter-name>
    <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>trinidad</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    By default the uploaded files are stored in :
    /u01/home/developer/.jdeveloper/system11.1.1.0.17.45.24/o.j2ee/embedded-oc4j/config
    I'm using Linux OS and JDev11g .
    Why is the desination directory configured in web.xml not being used?
    Am I doing any thing wrong?
    Any suggestions ?
    Thanking you,
    Samba

    Hi! Ric,
    This is the entire web.xml :
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee">
    <description>Empty web.xml file for Web Application</description>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <context-param>
    <!-- Maximum memory per request (in bytes) -->
    <param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_MEMORY</param-name>
    <!-- Use 500K -->
    <param-value>512000</param-value>
    </context-param>
    <context-param>
    <!-- Maximum disk space per request (in bytes) -->
    <param-name>org.apache.myfaces.trinidad.UPLOAD_MAX_DISK_SPACE</param-name>
    <!-- Use 5,000K -->
    <param-value>5120000000</param-value>
    </context-param>
    <context-param>
    <!-- directory to store temporary files -->
    <param-name>org.apache.myfaces.trinidad.UPLOAD_TEMP_DIR</param-name>
    <!-- Use an ADFUploads subdirectory of /tmp -->
    <param-value>/tmp/TrinidadUploads/</param-value>
    </context-param>
    <filter>
    <filter-name>trinidad</filter-name>
    <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>trinidad</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <dispatcher>FORWARD</dispatcher>
    <dispatcher>REQUEST</dispatcher>
    </filter-mapping>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/afr/*</url-pattern>
    </servlet-mapping>
    <session-config>
    <session-timeout>35</session-timeout>
    </session-config>
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <ejb-local-ref>
    <ejb-ref-name>ejb/local/SessionEJBLocal</ejb-ref-name>
    <ejb-ref-type>Session</ejb-ref-type>
    <local>com.prapansol.demos.SessionEJBLocal</local>
    <ejb-link>SessionEJB</ejb-link>
    </ejb-local-ref>
    </web-app>
    And about the other details you asked :
    1. I'm not using any custom UploadFileProcessors.. I'm using the default one.
    2. I tried with and with out the TrinidadUploads directory
    But still the same effect!
    Can you suggest where I'm going wrong?
    Thankyou
    Samba

  • Adjusting Left And Right Balance for INPUT - SB Audigy 2

    Hi Guys,
    <SPAN class=52245242-27042005>I'm using an SB Audigy 2 ZS with the latest drivers. I realize that it is possible to adjust the left/right balance for speaker OUTPUT, but Is it possible to adjust the left/right balance for the inputs? I'm doing some recording and I want to set different input levels for the left and right side of the CD Digital In as well as the Aux Line In. So either either a way to control left/right input balance or seperate input levels for left/right would be helpful.
    <SPAN class=52245242-27042005>
    <FONT size=+0><SPAN class=52245242-27042005><SPAN class=52245242-27042005>Thanks in advance,
    <SPAN class=52245242-27042005>Steve

    Thanks but I need real time. If I use a mic for the right input and a seperate mic for the left input I want to be able to set the optimum recording level for each side/mic. If I just set the level for the louder of the 2 mics then the other mic level on the other side is set too low You would think that Creative could have included this as a software control.
    Also, if I record using the "Digital Input' and the 'Aux Line In" at the same time then you must select "Record What You Hear" from the Creative Control Panel. Both sources are mixed togther, if I could set the CD Digatl output to left side only then I could record CD Digital on the left side and Line Input on the right.
    I just wish the Audigy could do this as it would be a cheap software control, I don't won't to buy another soundcard.

Maybe you are looking for

  • Can I get a refund for my 3rd Gen. iPad in the UK?

    Hi All, I must admit to being disappointed re the 4g situation in the UK. When I bought the iPad i actually already thought 4g was available (i know!) - but in fact now i'm hearing it wont be available for at least another year or two. And when it ar

  • Can't open iTunes on my iMac and when I try, the iMac freezes

    Help! 2009 iMac OS Mavericks v 10.9.4 iTunes version 11.3 EtreCheck report below: EtreCheck version: 1.9.12 (48) Report generated July 14, 2014 at 9:30:28 PM PDT Hardware Information:   iMac (27-inch, Late 2009) (Verified)   iMac - model: iMac10,1  

  • Easy-to-read link to App Store does not work for iOS 6?

    I have followed https://developer.apple.com/library/ios/#qa/qa1633/_index.html  to create a link that looks like http://itunes.com/apps/<applicationname> This link work for iOS 5 devices, but not on iOS 6!

  • Where are my music gone?

    Since the last update of the IOS and iTunes, most of my music are gone, why is that? How I retrieve them back? Is it through the iCloud? And I'm not sure the back up wouldn't work either. Luckily, I have an old gene 2 iPod with all of the the music t

  • Problem faced while opening the Manage tab of DSO

    Hi All, I am trying to open the manage tab of the DSO to activate the request to load the data, But it is throwing the ABAP error when ever I am trying to open the manage tab.   The error message is some thing like this "     Short text of error mess