Window Border or Frame Border

Hello,
We are using BO XI 3.1 SP2 FP 2.5. When we use OpenDocument call and view a report in new window, we do see a grey border (Apart from IE window). Is there any way we can supress/hide similar to hiding toolbar, scrollbar.
Any input in this regard is would help.
Note: if my memory serves me right, I do see this in 3.1, we don't have it R2.
Thanks

Some links in this post might help you out [Intendation while using Frames|Intendation while using Frames]

Similar Messages

  • Removing JFrame title bar WITHOUT removing window border

    I've been searching for a while now, and the only solutions I found were just using
    frame.setUndecorated(true);But this also removes the window border, which removes the ability to resize the window.
    I need the title bar removed while still retaining the ability to resize the window.
    There has got to be some way to do this.

    import javax.swing.*;
    import java.awt.*;
    class Testing
      public void buildGUI()
        JFrame.setDefaultLookAndFeelDecorated(true);
        JFrame f = new JFrame();
        f.getLayeredPane().remove(f.getLayeredPane().getComponent(1));
        f.setSize(400,300);
        f.setLocationRelativeTo(null);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • Making  Pop up window border solid  in NW04s

    Hi ,
    i created a pop window using the following code:
         IWDWindowInfo myWinInfo =
         wdComponentAPI.getComponentInfo().findInWindows("ABCWindow");
         IWDWindow myPopupWindow =
         wdComponentAPI.getWindowManager().createWindow(myWinInfo, true);
         myPopupWindow.setWindowPosition(350, 80);
         myPopupWindow.setWindowSize(350, 400);
         myPopupWindow.setTitle(dialogTitle);
         myPopupWindow.open();
    The opened pop up window shows a dotted border .
    Is there any way we can make window border solid instead of dotted?
    Regards
    Radhika
    Edited by: Radhika Kuthiala on May 7, 2010 2:08 PM

    Hi,
    Please try with the below:
    IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("PopupWin");
    IWDWindow popup = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);

  • After updating, I only see the window border, Firefox is not rendering.

    The browser toolbars, windows, everything is invisible. I only get the border of the window. This is more than just missing toolbars - there are no toolbars, no minimize/maximize/close icons, nothing but the window border.

    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    See also:
    *http://kb.mozillazine.org/Browser_will_not_start_up
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    See also:
    *https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems

  • Customizing the main window border

    Is it possible in JavaFX 2.0 to customize the main window border?
    In particular I'm interested in reproducing what Mozilla have done with Firefox 5/6 on Windows 7 where there is a custom button on the title bar and the glass style border protrudes into the client area to the right of the tabs.

    I'm guessing not...

  • [XFCE] wrong window border with 2 monitors

    Hey Guys,
    a week ago I bought a new monitor and now have a 2 monitor setup on my computer. I'm using a Nvidia graphic card with the proprietary drivers (v302.17-1) and set up these monitors to use separate X servers (two monitors, 2 devices and 2 screens in my xorg.conf). And it works: I can open applications on both monitors separately. Except the fact, that after a logout or reboot, the window border of the primary monitor is reset to some default (seems to be the previous theme I used). I tested this behavior with multiple themes. The panels and the whole second monitor use the configured theme. When re-configure XFCE to use the theme I want, also the primary monitor will use it. But its annoying to do this after every login.
    Does anyone have a clue why this is happening, or how to fix it? While researching I read a lot about XFCE problems with 2 monitor setup.
    Greetz Corubba
    EDIT: I found a little workaround for this. I just added
    xfconf-query -c xsettings -p /Net/ThemeName -t string -s Xfce-4.6
    xfwm4 --replace &
    to my xinitrc. It set the name of my theme and cause the wm to redraw with the new theme.
    Last edited by Corubba (2012-07-14 12:03:12)

    Any news?

  • Need help changing the window border in OPENBOX

    Can somebody help me change the window border in openbox, I have already used obconf but I don't like the way there borders look, does any one now of any other programs that can change the window border?

    To remove the pink, right click on your desktop, select properties, settings, and change your color bit from 16 to 32.

  • Nvidia + GNOME + Compiz + GTK Window decorator = Glitchy window border

    Running Compiz + Nvidia. The window border sometimes goes wacky as seen in the screenshot, but not always. Happens with any GTK theme I have tried. 
    Does anyone have any idea what's causing this?

    Thanks for your help!
    Installing the stable version of compiz got gtk-window-decorator working again, but now I have no minimize or maximize buttons on any gtk theme (only a close button), and gtk-window-decorator throws me
    (gtk-window-decorator:23942): GLib-GObject-WARNING **: invalid uninstantiatable type '(null)' in cast to 'WnckWindow'
    gtk-window-decorator: Ignoring unknown or already-used button name "appmenu"
    EDIT: This problem was solved by running
    gsettings set org.gnome.desktop.wm.preferences button-layout "'menu:minimize,maximize,close'"
    for future reference to anyone who stumbles across this post. Thanks again for the help!
    Last edited by Ekkoria (2014-10-19 20:36:48)

  • Window border transparency

    Hi
    By default, Windows 8 has a transparent taskbar, but the Window-borders are not transparent.
    The dialog for the apperance of the taskbar - and Window-borders color only has the possibility, to change the color, but not the transparency.
    Where do I switch on transparency of the Window-border?
    Patrick

    Hi,
    According to your description, I understand that you want the glass-like transparent windows feature in windows 8. I will help you with this issue.
    I would like to let you know that Aero feature or Aero glass is not a part of Windows 8 anymore. The new windows elements are rendered in solid colors instead.
    If you need further assistance on this particular issue or any other Windows related issue, let us know and we will be glad to assist you.

  • Why Firefox is changing the main window border color by itself ?

    I´m using Windows vista home premium.
    I´m using Firefox with Aero theme.
    my defaults windows are all with black borders.
    Few days ago only Fire fox decides by itselft to change the window border from black to light blue !!!
    It is very boring because it is only Fire Fox that is acting like that.
    I want to use it with black borders.
    Every time, I need to close Fire Fox to start using with normal colors... and sudenly, its changes again from black to blue...
    Please help.
    == This happened ==
    Every time Firefox opened
    == few minutes after firefox is running...couple of days ago...

    I tried this, but the problem still exists. I pretty much expected this, because the only window that ever shows this problem is Firefox (and particularly the Firefox window that has had focus for a very long time). I'm pretty sure that it doesn't have anything to do with Windows Aero appearance settings. The time to failure is really strange also . . . I have tried to determine if it happens after returning from the screen saver, or returning from S3, but it doesn't seem to be tied to either of those events. It just seems to happen after x amount of time that the browser window is open. (I am not obsessed with it enough to have tried to figure out what x is : )
    For what it's worth, I'm seeing this problem on multiple systems that are running Windows 7, not Vista. Again, it's more of an annoyance than anything else, but it does seem to be associated with the Firefox browser window that has focus.
    Hope this helps.

  • Gnome+compiz - window border issue

    Hi Folks,
    I am a longtime ubuntu user and just transitioned into Arch over the weekend (from karmic 9.10). I am very, very impressed so far, everything works on my thinkpad R50p without issues.
    I have gnome+compiz installed with the opensource ATI driver and everything works , but I have a strange issue. Whenever I maximize a window to fit fullscreen the top window border (with the window name, maximize/minimize/close buttons) doesn't display properly. I am able to 'unmaximize' windows by right clicking and choosing the proper option on the top window border.
    A couple screen shots:
    regular, unmaximized window (notice blue border): http://imgur.com/EMumh.png
    same window, maximized (notice absence of blue border just beneath the gnome top panel, where the mouse pointer is): http://imgur.com/Vrtzo.png
    Is there a fix for this issue? Do I have some setting wrong somewhere, by any chance?
    Last edited by psrivats (2010-03-21 19:35:26)

    I was struggling with this problem, until I found this blog.
    He suggests to open ccsm (run it as a command from the terminal, or start it from the system menu) and find windows decoration.
    Make sure it is enabled (it allready was, in my case). Now click on it, to edit the options. In my case command was empty. So, I put gtk-window-decorator
    there, as suggested on the blog, I mentioned earlier. Click on Back and Close. The borders should appear now.
    Hope this helps someone.

  • [compiz] compiz without window border

    hi all
    i am tying to run compiz , but no way to have a window border
    it is a laptop with intel chipset, kernel mode setting activated
    lspci
    00:02.0 VGA compatible controller: Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller (rev 07) (prog-if 00 [VGA controller])
    Subsystem: CLEVO/KAPOK Computer Device 072f
    Flags: bus master, fast devsel, latency 0, IRQ 31
    Memory at f4400000 (64-bit, non-prefetchable) [size=4M]
    Memory at d0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 1800 [size=8]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Capabilities: [d0] Power Management version 3
    Kernel driver in use: i915
    no xorg.conf file
    /var/log/Xorg.0.log (very long)
    X.Org X Server 1.6.3
    Release Date: 2009-7-31
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.30-ARCH x86_64
    Current Operating System: Linux keynux 2.6.30-ARCH #1 SMP PREEMPT Mon Aug 17 16:06:45 CEST 2009 x86_64
    Build Date: 25 August 2009 09:11:18PM
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Wed Aug 26 17:11:51 2009
    (II) Loader magic: 0x15c0
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.4
    X.Org Video Driver: 5.0
    X.Org XInput driver : 4.0
    X.Org Server Extension : 2.0
    (II) Loader running on linux
    (++) using VT number 7
    (--) PCI:*(0:0:2:0) 8086:2a42:1558:072f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf4400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
    (--) PCI: (0:0:2:1) 8086:2a43:1558:072f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf4100000/1048576
    (==) Using default built-in configuration (39 lines)
    (==) --- Start of built-in configuration ---
    Section "Device"
    Identifier "Builtin Default intel Device 0"
    Driver "intel"
    EndSection
    Section "Screen"
    Identifier "Builtin Default intel Screen 0"
    Device "Builtin Default intel Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default i810 Device 0"
    Driver "i810"
    EndSection
    Section "Screen"
    Identifier "Builtin Default i810 Screen 0"
    Device "Builtin Default i810 Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default vesa Device 0"
    Driver "vesa"
    EndSection
    Section "Screen"
    Identifier "Builtin Default vesa Screen 0"
    Device "Builtin Default vesa Device 0"
    EndSection
    Section "Device"
    Identifier "Builtin Default fbdev Device 0"
    Driver "fbdev"
    EndSection
    Section "Screen"
    Identifier "Builtin Default fbdev Screen 0"
    Device "Builtin Default fbdev Device 0"
    EndSection
    Section "ServerLayout"
    Identifier "Builtin Default Layout"
    Screen "Builtin Default intel Screen 0"
    Screen "Builtin Default i810 Screen 0"
    Screen "Builtin Default vesa Screen 0"
    Screen "Builtin Default fbdev Screen 0"
    EndSection
    (==) --- End of built-in configuration ---
    (==) ServerLayout "Builtin Default Layout"
    (**) |-->Screen "Builtin Default intel Screen 0" (0)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default intel Device 0"
    (==) No monitor specified for screen "Builtin Default intel Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default i810 Screen 0" (1)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default i810 Device 0"
    (==) No monitor specified for screen "Builtin Default i810 Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default vesa Screen 0" (2)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default vesa Device 0"
    (==) No monitor specified for screen "Builtin Default vesa Screen 0".
    Using a default monitor configuration.
    (**) |-->Screen "Builtin Default fbdev Screen 0" (3)
    (**) | |-->Monitor "<default monitor>"
    (**) | |-->Device "Builtin Default fbdev Device 0"
    (==) No monitor specified for screen "Builtin Default fbdev Screen 0".
    Using a default monitor configuration.
    (==) Automatically adding devices
    (==) Automatically enabling devices
    (==) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/100dpi:unscaled,
    /usr/share/fonts/75dpi:unscaled,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1,
    built-ins
    (==) ModulePath set to "/usr/lib/xorg/modules"
    (II) Cannot locate a core pointer device.
    (II) Cannot locate a core keyboard device.
    (II) The server relies on HAL to provide the list of input devices.
    If no devices become available, reconfigure HAL or disable AllowEmptyInput.
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) System resource ranges:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    (II) Module glx: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (==) AIGLX enabled
    (II) Loading extension GLX
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions//librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension RECORD
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "dri2"
    (II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
    (II) Module dri2: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.1.0
    ABI class: X.Org Server Extension, version 2.0
    (II) Loading extension DRI2
    (II) LoadModule: "intel"
    (II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
    (II) Module intel: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 2.7.99
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "i810"
    (WW) Warning, couldn't open module i810
    (II) UnloadModule: "i810"
    (EE) Failed to load module "i810" (module does not exist, 0)
    (II) LoadModule: "vesa"
    (II) Loading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (II) Module vesa: vendor="X.Org Foundation"
    compiled for 1.6.0, module version = 2.2.0
    Module class: X.Org Video Driver
    ABI class: X.Org Video Driver, version 5.0
    (II) LoadModule: "fbdev"
    (WW) Warning, couldn't open module fbdev
    (II) UnloadModule: "fbdev"
    (EE) Failed to load module "fbdev" (module does not exist, 0)
    (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
    i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G,
    E7221 (i915), 915GM, 945G, 945GM, 945GME, IGD_GM, IGD_G, 965G, G35,
    965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Mobile Intel® GM45 Express Chipset,
    Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41, IGDNG_D,
    IGDNG_M
    (II) VESA: driver for VESA chipsets: vesa
    (II) Primary Device is: PCI 00@00:02:0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    (WW) Falling back to old probe method for vesa
    (II) resource ranges after probing:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: Searching for BusID pci:0000:00:02.0
    drmOpenDevice: node name is /dev/dri/card0
    drmOpenDevice: open result is 8, (OK)
    drmOpenByBusid: drmOpenMinor returns 8
    drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0
    (II) intel(0): Creating default Display subsection in Screen section
    "Builtin Default intel Screen 0" for depth/fbbpp 24/32
    (==) intel(0): Depth 24, (--) framebuffer bpp 32
    (==) intel(0): RGB weight 888
    (==) intel(0): Default visual is TrueColor
    (II) intel(0): Integrated Graphics Chipset: Intel(R) Mobile Intel® GM45 Express Chipset
    (--) intel(0): Chipset: "Mobile Intel® GM45 Express Chipset"
    (II) intel(0): Output VGA1 has no monitor section
    (II) intel(0): Output LVDS1 has no monitor section
    (II) intel(0): Output VGA1 disconnected
    (II) intel(0): Output LVDS1 connected
    (II) intel(0): Using exact sizes for initial modes
    (II) intel(0): Output LVDS1 using initial mode 1280x800
    (==) intel(0): video overlay key set to 0x101fe
    (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
    (==) intel(0): DPI set to (96, 96)
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules//libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.4
    (II) UnloadModule: "vesa"
    (II) Unloading /usr/lib/xorg/modules/drivers//vesa_drv.so
    (==) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] -1 0 0xffffffff - 0xffffffff (0x1) MX[b]
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [5] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [6] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [7] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [8] -1 0 0x00000000 - 0x00000000 (0x1) IX[b]
    [9] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [10] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) intel(0): [DRI2] Setup complete
    (**) intel(0): Kernel mode setting active, disabling FBC.
    (**) intel(0): Framebuffer compression disabled
    (**) intel(0): Tiling enabled
    (**) intel(0): SwapBuffers wait enabled
    (==) intel(0): VideoRam: 262144 KB
    (II) intel(0): Attempting memory allocation with tiled buffers.
    (II) intel(0): Tiled allocation successful.
    (II) UXA(0): Driver registered support for the following operations:
    (II) solid
    (II) copy
    (II) composite (RENDER acceleration)
    (==) intel(0): Backing store disabled
    (==) intel(0): Silken mouse enabled
    (II) intel(0): Initializing HW Cursor
    (II) intel(0): No memory allocations
    (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    (II) intel(0): DPMS enabled
    (==) intel(0): Intel XvMC decoder disabled
    (II) intel(0): Set up textured video
    (II) intel(0): direct rendering: DRI2 Enabled
    (--) RandR disabled
    (II) Initializing built-in extension Generic Event Extension
    (II) Initializing built-in extension SHAPE
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension BIG-REQUESTS
    (II) Initializing built-in extension SYNC
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-MISC
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    (II) AIGLX: Loaded and initialized /usr/lib/xorg/modules/dri/i965_dri.so
    (II) GLX: Initialized DRI2 GL provider for screen 0
    (II) intel(0): Setting screen physical size to 261 x 163
    (II) config/hal: Adding input device Macintosh mouse button emulation
    (II) LoadModule: "evdev"
    (II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
    (II) Module evdev: vendor="X.Org Foundation"
    compiled for 1.6.3, module version = 2.2.5
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (**) Macintosh mouse button emulation: always reports core events
    (**) Macintosh mouse button emulation: Device: "/dev/input/event0"
    (II) Macintosh mouse button emulation: Found 3 mouse buttons
    (II) Macintosh mouse button emulation: Found x and y relative axes
    (II) Macintosh mouse button emulation: Configuring as mouse
    (**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
    (**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
    (**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
    (**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
    (**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
    (**) Macintosh mouse button emulation: (accel) set acceleration profile 0
    (II) Macintosh mouse button emulation: initialized for relative axes.
    (II) config/hal: Adding input device PIXART USB OPTICAL MOUSE
    (**) PIXART USB OPTICAL MOUSE: always reports core events
    (**) PIXART USB OPTICAL MOUSE: Device: "/dev/input/event10"
    (II) PIXART USB OPTICAL MOUSE: Found 3 mouse buttons
    (II) PIXART USB OPTICAL MOUSE: Found x and y relative axes
    (II) PIXART USB OPTICAL MOUSE: Found scroll wheel(s)
    (II) PIXART USB OPTICAL MOUSE: Configuring as mouse
    (**) PIXART USB OPTICAL MOUSE: YAxisMapping: buttons 4 and 5
    (**) PIXART USB OPTICAL MOUSE: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    (II) XINPUT: Adding extended input device "PIXART USB OPTICAL MOUSE" (type: MOUSE)
    (**) PIXART USB OPTICAL MOUSE: (accel) keeping acceleration scheme 1
    (**) PIXART USB OPTICAL MOUSE: (accel) filter chain progression: 2.00
    (**) PIXART USB OPTICAL MOUSE: (accel) filter stage 0: 20.00 ms
    (**) PIXART USB OPTICAL MOUSE: (accel) set acceleration profile 0
    (II) PIXART USB OPTICAL MOUSE: initialized for relative axes.
    (II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
    (II) LoadModule: "synaptics"
    (II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
    (II) Module synaptics: vendor="X.Org Foundation"
    compiled for 1.6.2, module version = 1.1.2
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 4.0
    (II) Synaptics touchpad driver version 1.1.2
    (**) Option "Device" "/dev/input/event8"
    (II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
    (II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
    (II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
    (II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
    (II) SynPS/2 Synaptics TouchPad: buttons: left right middle
    (**) Option "TapButton1" "1"
    (**) Option "TapButton2" "2"
    (**) Option "TapButton3" "3"
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (**) SynPS/2 Synaptics TouchPad: always reports core events
    (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
    (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
    (**) SynPS/2 Synaptics TouchPad: (accel) filter chain progression: 2.00
    (**) SynPS/2 Synaptics TouchPad: (accel) filter stage 0: 20.00 ms
    (**) SynPS/2 Synaptics TouchPad: (accel) set acceleration profile 0
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) config/hal: Adding input device AT Translated Set 2 keyboard
    (**) AT Translated Set 2 keyboard: always reports core events
    (**) AT Translated Set 2 keyboard: Device: "/dev/input/event1"
    (II) AT Translated Set 2 keyboard: Found keys
    (II) AT Translated Set 2 keyboard: Configuring as keyboard
    (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Sleep Button
    (**) Sleep Button: always reports core events
    (**) Sleep Button: Device: "/dev/input/event7"
    (II) Sleep Button: Found keys
    (II) Sleep Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event6"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Video Bus
    (**) Video Bus: always reports core events
    (**) Video Bus: Device: "/dev/input/event2"
    (II) Video Bus: Found keys
    (II) Video Bus: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) config/hal: Adding input device Power Button
    (**) Power Button: always reports core events
    (**) Power Button: Device: "/dev/input/event4"
    (II) Power Button: Found keys
    (II) Power Button: Configuring as keyboard
    (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    (**) Option "xkb_rules" "evdev"
    (**) Option "xkb_model" "evdev"
    (**) Option "xkb_layout" "fr"
    (II) intel(0): EDID vendor "BOE", prod id 1203
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "BOE", prod id 1203
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz)
    (II) intel(0): EDID vendor "BOE", prod id 1203
    (II) intel(0): Printing DDC gathered Modelines:
    (II) intel(0): Modeline "1280x800"x0.0 71.10 1280 1328 1360 1440 800 803 809 823 -hsync -vsync (49.4 kHz)
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) intel(0): No memory allocations
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) PIXART USB OPTICAL MOUSE: Device reopened after 1 attempts.
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) intel(0): No memory allocations
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) PIXART USB OPTICAL MOUSE: Device reopened after 1 attempts.
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) AIGLX: Suspending AIGLX clients for VT switch
    (II) Open ACPI successful (/var/run/acpid.socket)
    (II) AIGLX: Resuming AIGLX clients after VT switch
    (II) intel(0): No memory allocations
    (--) SynPS/2 Synaptics TouchPad: touchpad found
    (II) Macintosh mouse button emulation: Device reopened after 1 attempts.
    (II) PIXART USB OPTICAL MOUSE: Device reopened after 1 attempts.
    (II) AT Translated Set 2 keyboard: Device reopened after 1 attempts.
    (II) Sleep Button: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    (II) Video Bus: Device reopened after 1 attempts.
    (II) Power Button: Device reopened after 1 attempts.
    i run fusion icon without error and switch from metacity to compiz successfully
    fusion-icon
    * Detected Session: gnome
    * Searching for installed applications...
    * Intel detected, exporting: INTEL_BATCH=1
    * Using the GTK Interface
    * Metacity is already running
    * Setting window manager to Compiz
    ... executing: compiz --replace --sm-disable --ignore-desktop-hints ccp
    * Setting decorator to Emerald ("emerald --replace")
    * Reloading compiz
    ... executing: compiz --replace --sm-disable --ignore-desktop-hints ccp
    * Setting window manager to Metacity
    but when compiz is activated, no border, with emerald or gtk-windows-decorator
    when i try to start compiz standalone from gdm, Xorg starts but gnome freeze,  it fails with dmesg like this
    drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    [drm:drm_wait_vblank] *ERROR* failed to acquire vblank counter, -22
    no error when starting a normal gnome session
    i have no idea....
    if i only had an error code while running fusion-icon....

    In compizconfig settings manager > effect > window decoration should be enabled. Check that.
    Another you'll need are in Window management > move window and resize window.

  • How can I remove the lable "Warning:Applet window" of pop frame in a applet

    How can I remove the lable "Warning:Applet window" of pop frame in a applet? Not only in MS IE's JVM,but also in java plug-in 1.40, the warning always display , What can I do?
    ===
    thank you!

    You cannot remove the label. It is there intentionally as a security measure, to warn the user that the window is from a running applet, so that (s)he knows it might be dangerous to enter sensitive information there (any applet from anywhere on Internet could have opened the window, who knows if it is malicious or not!).
    Perhaps you can open a window without the warning when you sign your applet (with a security certificate).
    Jesper

  • I want one pixel of vncviewer window border showing

    i prefer to use a native package rather than roll my own, it just seems more sensible for keeping up.
    trying gvncviewer, no idea what it's problem is:
    $ gvncviewer --gtk-vnc-debug :34
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Init VncConnection=0x94c7528
    (gvncviewer:18652): gtk-vnc-DEBUG: vncdisplaykeymap.c Using evdev keycode mapping
    (gvncviewer:18652): gtk-vnc-DEBUG: vncdisplay.c Grab sequence is now Control_L+Alt_L
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Open host= port=5934
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Open coroutine starting
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Started background coroutine
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Resolving host 5934
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Doing final VNC cleanup
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Close VncConnection=0x94c7528
    (gvncviewer:18652): gtk-vnc-DEBUG: vncconnection.c Emit main context 15
    (gvncviewer:18652): gtk-vnc-DEBUG: vncdisplay.c Disconnected from VNC server
    Failed to connect to server
    trying tigervnc, depending on what i specify for geometry, tiger vncviewer either ignores it, or starts in fullscreen.
    (ubuntu xvnc4viewer allowed me to specify the exact location on the screen via -geometry so i didn't need to move it after launching it.)
    the location i prefer leaves one pixel for the lefthand border, on which i click to (tell twm to) minimize the window,
    and the entire remainder of the screen is the vnc session.
    perhaps i could make a script to relocate the window after it arrives, tho i'm not yet familiar with an approach for doing that.
    trying remmina, there doesn't seem to be any way to control it from commandline.  i found how to make a .remmina connection file somewhere on the web, but it doesn't seem to work with the arch package.
    before i grind my nose off on this, does anyone have any suggestions?

    Hi,
    Check with the mainwindow size,  Try to increase the window size.
    Here is sample code:
    /: Position Xorigin '20' cm Yorigin '20' cm.
    /: SIZE WIDTH  '20' TW HEIGHT  '20' TW
    /: BOX FRAME 10 TW
    Hope this helps you.
    Regards,
    Rajani

Maybe you are looking for

  • How to assign a whole internal table to field symbol

    Can anyone explain me that , can we assign the whole internal table to a field symbol .If yes please explain with some simple example by assigning an internal tabl data to a field symbol and how to loop on to that field symbol to write the data from

  • How can I restore missing icons?

    The Skype icon has been replaced with the default paper, pencil, paintbrush icon. It shows this way in the dock and when i search for it in the finder. The program still works normally. If I duplicate the app, the Skype icon shows properly on the dup

  • Help required on Keychain Access !!?

    The Keychain Access window keeps 'popping up' to ask me to put in my pass word I can, iether put it in ( and it won't pop up for a while) or I can just click on cancel and it will let me carry on !! Any ideas ? I have tried Keychain First Aid and thi

  • Iphone emails deleting problems

    My iphone is synced to my main email account so I receive emails on both, I've received a very big file with an attachment of nearly 20Mb! I now can't delete this email as every-time I do it crashes my phone. The screen either goes black then back to

  • Low Disk Space When Copy Client

    Hi All,      I've installed ECC 5.0 on Windows ,but i've only one client , so going to make new client . So go with tcode SCC4 for client copy and its start to copy the client , but Hard Disk space not that much that why its stop the client copy proc