JInternalFrame min/max button problem???

Hi,
I was just wondering if anyone can help me on this. I'm creating simple desktopPane applet with JInternalFrame in it. When i try to run it from browser, the min/max button got screwed up. When i iconized the jif, the '_' icon (minimized) is still there. When i deiconized it, the maximized icon (two rect icons) is there. Has anyone noticed this? I'm using the latest JSDK version. Any clues/helps greatly appreciated.
Mike

I don't recall seeing a bug regarding this issue. Do you know of one already filed against this? Does it only happens in the applet context? Can you reproduce this in a application context. Can someone post a small test case for me to run? I'm very interested in fixing these issues. We want all of you to be happy! :)
Josh

Similar Messages

  • G3 fallback mode + compiz no close,min,max buttons

    hi!
    I've reluctantly switched/updated to gnome3 today. After about an hour's work, my desktop is shaping up quite nicely.
    However, I want to use compiz in place of metacity (in fallback mode obviously, I don't care for g-shell).
    This basically  works, except that my 'window-control-buttons'(close, max, min, menu) are missing - they are simply not drawn.
    Switching back to metacity puts them back.
    I've gone through gconf/dconf, ccsm and the likes, maybe this is a (gtk-window-decorator) bug? Anyone else with this problem? Ideas?

    you can also use Metacity themes with gtk-window-manager, like in gnome2 + compiz
    just make sure "metacity theme" is checked off;
    gconf-editor --> apps --> gwd --> metacity theme.
    you can also use transparency on the window decoration with Metacity...
    I've been running Gnome3-compiz for a few weeks now, it's working great

  • How to add Min/Max buttons to mx:Panel

    Hello all, I am new to flex. I am using Flex3 and would like
    to add a minimize and maximize buttons to the <mx:Panel> in
    the upper right corner. Could some one let me know what is the best
    approach?

    http://hasseg.org/blog/?p=113
    http://blogs.adobe.com/flexdoc/2007/03/creating_resizable_and_draggab.html
    http://joelhooks.com/2008/05/26/superpanelplus-resizable-flex-panel-component-with-accessi ble-styling/

  • Missing start button, task bar and min,max buttons when open iTunes

    Its like the screen is cut off on the top and bottom.  I use windows 7 but this doesn't happen when I have any other program open.  How do I fix?

    Could you post a screenshot of your iTunes display, please?
    Launch iTunes. Hold down the Alt key and hit the PrtSc key. Paste the screenshot into an image file (using a program like Paint), and save the file.
    Start a reply here and click the wee camera icon at the top of the reply window. Click "Choose file", browse to the image file, select the file and click "Open". Now click "Insert file" to insert the screenshot into the reply.

  • Windows min, max and close buttons are gone my desktop applications

    the min, max and close buttons are gone.
    I have windows 8.1 running in a VMware view environment. if I do a system restore to an earlier date they will come back. but after some windows update they go away again.
    any ideas on what I should be looking for?

    Hi,
    Did you install any 3rd application recently? You can use ShellEX to check shell problem.
    http://www.nirsoft.net/utils/shexview.html
    If problem persists, please try to use command below to fix your problem.
    Dism /Online /Cleanup-Image /ScanHealth
    Roger Lu
    TechNet Community Support

  • DateTimeAxis min/max bug? Problems with consistent padding. Date Wrapping.

    I have been working on a problem with a BarChart object that I've created using dynamic data.
    My primary issue is that I can't seem to get the proper min/max values to set for the chart.
    To solve this I manually found the min and max of the data set of Dates and set the min and max of the chart. This allowed me to finally see all the floating custom bars (each bar is rendered with a user set fill), however now if I have a bar that extends over a year change the horizontal axis labels do not wrap the date properly, so instead of 2/10 (feb 2010) being the last date, 12/09 (dec 2009) is the last date.
    I've been trying to dynamically adjust the padding based upon a change event, but so far to no avail. Partially I think because I'm not sure which event for the function to fire on.
    private function dateAxisGen(r:Array):void {
                    var min:Number = r[0].startTime.time;
                    var max:Number = r[0].endTime.time;
                    const PAD:Number = 2;
                    const MILLISEC_IN_MONTH:Number = 2629743830;
                    const MILLISEC_IN_WEEK:Number = 604800000;
                    const MILLISEC_IN_DAY:Number = 864;
                    for (var i:int = 1; i < r.length; i++) {
                        var o:OperationXT = OperationXT(r[i]);
                        min = Math.min(o.startTime.time, min);
                        max = Math.max(o.endTime.time, max);
                    // Calculates the maximum range, then adds an appropriate
                    // padding to the chart via extra time. TODO
                    /* var range:Number = max - min;
                    if(range >= MILLISEC_IN_MONTH) {
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                        dAxis.padding = (MILLISEC_IN_WEEK/1000000)/PAD;
                    } else if(range >= MILLISEC_IN_WEEK) {
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                        dAxis.padding = (MILLISEC_IN_DAY)/PAD;
                    } else {
                        dAxis.padding = PAD;
                    dAxis.minimum = new Date(min);
                    dAxis.maximum = new Date(max);
    this, however, does not adjust the padding properly when an operation is removed from the list. Not to mention I still have the date wrapping error. It gives me the following error:
    Cannot access a property or method of a null object reference.
        at mx.charts::AxisRenderer/measureHorizontalGutters()[C:\work\flex\dmv_automation\projects\d atavisualisation\src\mx\charts\AxisRenderer.as:2244]
        at mx.charts::AxisRenderer/calcRotationAndSpacing()[C:\work\flex\dmv_automation\projects\dat avisualisation\src\mx\charts\AxisRenderer.as:1858]
        at mx.charts::AxisRenderer/adjustGutters()[C:\work\flex\dmv_automation\projects\datavisualis ation\src\mx\charts\AxisRenderer.as:1534]
        at mx.charts.chartClasses::CartesianChart/updateAxisLayout()[C:\work\flex\dmv_automation\pro jects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:2239]
        at mx.charts.chartClasses::CartesianChart/updateDisplayList()[C:\work\flex\dmv_automation\pr ojects\datavisualisation\src\mx\charts\chartClasses\CartesianChart.as:1366]
        at mx.core::UIComponent/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8065]
        at mx.managers::LayoutManager/validateDisplayList()[E:\dev\gumbo_beta2\frameworks\projects\f ramework\src\mx\managers\LayoutManager.as:663]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\gumbo_beta2\frameworks\projects \framework\src\mx\managers\LayoutManager.as:736]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\gumbo_beta2\frameworks\ projects\framework\src\mx\managers\LayoutManager.as:1069]
    Any help with my problem would be greatly appreciated.
    ADDITIONAL INFO:
    Alright, so I've discovered that the ONLY time the date wrapping error occurs is when the axis labels contain only the month and year, any other time it places it properly.
    Does anyone know where I can report this bug?

    Perre wrote:I'm used to being able to pick one or a couple of songs and then adding it a specified playlist. Is this impossible in sonata?
    It's clearly not impossible, just different than you expect. Create your playlist as you want it to appear in the Current tab (meaning don't dump every single song from your library in there, just the ones you want) and then save the playlist.
    Perre wrote:And if I try to play the m3u file created (the one with every song listed) through freevo I get a message that the directory is empty. What am I doing wrong??
    Look at save_absolute_paths_in_playlists in your mpd.conf.

  • My iPod touch isn't being recognized by my pc. The lock button on it won't work due to water damage, and a friend of mine fixed the problem by restoring it on his computer. How do I restore it without the lock button?

    My iPod touch isn't being recognized by my pc. The lock button on it won't work due to water damage, and a friend of mine fixed the problem by restoring it on his computer. How do I restore it without the lock button?

    first try:
    iOS: Device not recognized in iTunes for Windows
    next
    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • When firefox 4 is maximized navigation toolbar overlaps with windows 7 buttons up right on the screen(min,max,restore) and overlaps with orange button up left on the screen

    Hi all.
    I have installed firefox 4 and i have an issue which for start i dont know if it is supposed to be so or not.
    When i maximize firefox ,Navigation bar is mixed (shown below) the orange button on the upleft of my screen.Also is shown below of the 3 windows buttons (min,max,close) of the windows 7 in the upperight of my screen.
    Is this supposed to be so?
    I also have some screenshots if you would like to see :
    www.1dagios.com/firefox4-1.jpg
    +
    www.1dagios.com/firefox4-2.jpg
    Thank you for your time reading this and excuse my lame English.
    Regards,
    The_Observer.

    Any news on this.
    I think it has something to do with the add on : Tabgroups manager.
    If i disable this add on then everything works normally.
    Also when this add on is enabled my tabs are always below adress bar ,no matter what.

  • FF9 - can i hide window control buttons in titlebar (min, max, close) with userchrome.css?

    I use FF9. In userscript.css i hide titlebar and orange app button, but window control buttons still visible! I just can`t find working script.
    I dont need min-max-close button and wont to hide it without extension if possible.
    Here is screenshort:
    http://s018.radikal.ru/i522/1201/50/f6a6ea445507.jpg

    Try this code in userChrome.css below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>*http://www.mozilla.org/en-US/firefox/channel/
    #titlebar-buttonbox { display:none!important; }
    </nowiki></pre>

  • Hide window min,max,close button

    Hi all,
    I want to hide the min,max,close button of the window.
    how can I do that.
    regards,
    suddin.

    Hi,
    client-server or on the web?
    Frank

  • My iPad mini power button is not working I want to disable it

    My iPad mini power button is having issues it's physical appearance is perfectly fine but my ipad continuously try to power off to completely shut down idk what the problem with it is yet but I can't afford to get it looked at or get it fixed right now but my question is can I temporally disable the power button

    No.

  • I have a Power Mac G5 - How can I run Matrox MX02 mini max

    I have a Power Mac G5 Running Mac OSX 10.5.8 I recently got the MX02 Mini Max by Matrox to run my Final Cut Studio application version 6.6 and Im having problems with the pci board that comes with the matrox unit ( it does not fit in the mother board) how would i be able to use this with out connecting the pci board into my mother board on my Mac.?

    Can't use it with a G5.
    System requirements are Mac Pro and Intel-based MacBook Pro running Mac OS X Leopard 10.5.6 or higher.
    IF (big if) the card is PPC Mac compatible, only Late 2005 G5 machines have PCIe. All other G5s are PCI.
    The Matrox card is PCIe, not PCI.

  • G4 mini has a problem with its volume structure

    My G4 mini has a problem with its volume structure according to Tech Tools Deluxe. One that the application can't seem to repair. Ran it 3 times and it always hangs before it completes the fix. Never hangs in exactly the same place in the repair routine, but always hangs.
    Ran these tests because for the longest time the mini would accelerate (panic) and shut down. Installation on a new system hangs before it completes the install of all the upgrades. Any help would be appreciated.

    I realize it was not clear from the original post whether or not DiskUtility had been tried yet to fix the hard drive.
    To use DiskUtility to repair the drive, you have to boot from the original install disc that shipped with your Mini.
    1) Insert the Install disc and the shutdown the Mini.
    2) Restart the Mini and hold down the C key as soon as the startup chime or beep is heard. Hold it down until you see the "gear" spinning on the screen.
    3) Select your language, but don't proceed any farther with installation. Use the Utilities menu at the top of the screen to run DiskUtility.
    4) In DiskUtility, click once on the hard drive in the left panel, then click on the Repair Disk button in the right panel.

  • Bug: combo_box doesn't support min, max, precision, or validate

    Combo boxes don't support the min, max, precision, or validate properties, contrary to what the documentation states in "Lightroom SDK 3.0\API Reference\modules\LrView edit view properties.html".
    Here's a test program that shows the problems:
    local LrDialogs = import 'LrDialogs'
    local LrView = import 'LrView'
    local f = LrView.osFactory()
    local text = f:static_text {}
    local function validate (view, value)
        text.title = "validate called from " .. view.label
        return true, value, nil
        end
    LrDialogs.presentModalDialog {
        title = "Test", contents = f:column {
            text,
            f:row {
                f:static_text {title = "numeric:"},
                f:edit_field {min = 1, max = 10, precision = 0}},
            f:row {
                f:static_text {title = "numeric:"},
                f:combo_box {min = 1, max = 10, precision = 0,
                    items = {1, 2, 3}}},
            f:row {
                f:static_text {title = "validate:"},
                f:edit_field {validate = validate,
                    label = "edit_field"}},
            f:row {
                f:static_text {title = "validate:"},
                f:combo_box {validate = validate,
                    label = "combo_box", items = {1, 2, 3}}}}}
    I've reported this via the Web form.

    See also
    http://forums.adobe.com/thread/675142.

  • Min Max Planning to replenish from a single sub inventory

    I am new to this site but could certainly use some help in a problem I am having. I am on a team in the process of implement discrete manufacturing. Here is the problem I am having. I am trying to set up min/max replenishment to a specific sub inventory. We currently have a centralized fabricated (make parts) store room. From that store room we move parts to variuos supermarkets with in the factory. From the supermarkets parts are component picked or kan ban replenished. The problem that I am having is that I want the replenishment trigger back to the sheet metal fabrication area to come from the "Centralized Make" parts storeroom. It is currently adding up all the locations or sub inventories the part number resides in to include RIP. I am being told that there is no way to limit the trigger to a single sub inventory.

    Sandeep, Thanks I was able to generate and run the report and it did look only that the specified sub inventory and suggested the reorder qty properly. After running the report under the item number it says "unable to generate requisition" How does the fabrication area get a signal to begin the fabrication process, create a discrete job or create a planne order or something? So far your recommendations have been right on target! Again thankyou.

Maybe you are looking for

  • Managing multiple iOS devices on different Apple accounts from the same iMac

    May be a very simple question to answer, but can I manage multiple iOS devices on different Apple accounts from the same iMac? I ask as whilst I'm totally Mac'd, my partner who has her own Apple account has a Winows laptop and experiences problems up

  • Dock doesn't show in full screen Safari

    I have the dock set to reveal itself when I go to the bottom of the screen. When I'm in full screen mode in Safari it takes me swiping down at least 3 or 4 times before the dock will appear. I've tried it in other apps on full screen and it still doe

  • Date field encryption using Dbms_Obfuscation_Toolkit.DESENCRYPT

    Hi, I need to encrypt the date field in the table using Dbms_Obfuscation_Toolkit.DESENCRYPT . This is an table is an existing table and is accessed by many interfaces, so we cannot change the column type of this date field. Is there a possibility of

  • CSV file Download

    Hi folks, I would like to achieve the following functionality (in order) 1. Query DB 2. Parse results returned into CSV format (perhaps, in a stringbuffer or file) 3. Return the CSV file or string to the client 4. Display a pop up window to the user

  • Can't get on to Apple support unsupported browser error message

    I am trying to get on to Apple support as when I try and download a movie it saysmpavcontroller error domain error 3 . But I cant get on to Apple support as it says unsupported browser but my iPad software is up to date. Any solutions for both? My so