not large enough to display the application in red hat linux x win desktop

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat not large enough to display the application in red hat linux x win desktop
# 1  
Old 06-04-2011
not large enough to display the application in red hat linux x win desktop

I use red hat linux es 5
I use startx to start the x-win desktop.
But when I use vritual manager .
The display application is too large so the bottom
part for the application cannot show out.
I cannot scroll down to get the display of bottm part .
So, I do not know what button display at the bottom part.
So, what can I do .
I already set the display to 800x640 already.
Please advice
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Red Hat 5.10 repository issue - desktop version

this is proving to be a real pain to set up. i recently installed red hat 5.10 desktop version. install went well. i've registered my system, but i cant seem to yum install simple packages. i can install some packages, but many others i cant. for instance, i cant do a: yum install php ... (2 Replies)
Discussion started by: SkySmart
2 Replies

2. Red Hat

Any desktop models popular with Red Hat?

I am planning to install the latest version of Red Hat on a desktop computer, and use it as a platform to become more up-to-date on Linux and associated open source applications. I'm thinking to buy a used Dell or HP desktop computer; maybe two or three years old (or newer); on which to install... (2 Replies)
Discussion started by: CarsonsPlanet
2 Replies

3. UNIX for Dummies Questions & Answers

how to know if i use "Red Hat Enterprise Linux" or "Red Hat Desktop" ?

how to know if i use "Red Hat Enterprise Linux" or "Red Hat Desktop" ? (2 Replies)
Discussion started by: ahmedamer12
2 Replies

4. Red Hat

How can I get Red Hat Desktop edition?

Is there any way to install Red Hat Linux any version without purchasing? If yes, Please help me. I know Fedora is alternative way of Free Linux. But I am more interested to install Red Hat Linux for Personal Use. If anyone really knows about this... Please Please Please help. ... (1 Reply)
Discussion started by: sagarsbhandare
1 Replies

5. Red Hat

x-win client connect red hat

Hi, I use red hat linux ES 5.5 32 bit . There is x win(startx) installed. I wan to use XP at another computer and connect the x-win(startx) through IP network . Which software/freeware I can use ??? Please advice .. Is it free ??? (0 Replies)
Discussion started by: chuikingman
0 Replies

6. Red Hat

How to Install Red Hat Linux Desktop version 4?

I want to install Red Hat Linux Desktop version 4. Please tell me the step-by-step installation and which file system will be best for this O/S? Like in windows, we have NTFS file system(which has very security features). Is there any such file system in Linux? Which file system should i use?... (0 Replies)
Discussion started by: Anna Hussie
0 Replies

7. Red Hat

How to Install Red Hat Linux Desktop version 4?

I want to install Red Hat Linux Desktop version 4. Please tell me the step-by-step installation and which file system will be best for this O/S? Like in windows, we have NTFS file system(which has very security features). Is there any such file system in Linux? Which file system should i use? (2 Replies)
Discussion started by: Anna Hussie
2 Replies

8. Ubuntu

Red Hat Linux & Desktop Market Share

Hello Everyone! A simple question: Do you think that Red Hat Linux will be obtaining a MAJOR share of the desktop operating systems on personal computers in near future? 1. Yes 2. No 3.Not Sure Thanks JAM (13 Replies)
Discussion started by: Jawwad
13 Replies

9. Linux

Red Hat 7.3 and Win XP

People, im having trouble installing red hat and win xp in the same machine, it just won`t create the double boot. Can anybody give me a hand? Im installing win xp in C and red hat in D. I´ve selected both grub and lilo as loaders in the mbr of hda0, but when i do this, mi original xp just... (5 Replies)
Discussion started by: mat
5 Replies
Login or Register to Ask a Question
XReparentWindow()														 XReparentWindow()

Name
  XReparentWindow - insert a window between another window and its parent.

Synopsis
  XReparentWindow(display, win, parent, x, y)
	Display *display;
	Window win;
	Window parent;
	int x, y;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  win	    Specifies the ID of the window to be reparented.

  parent    Specifies the window ID of the new parent window.

  x	    Specify the coordinates of the window relative to the new parent.

  y

Description
  XReparentWindow() modifies the window hierarchy by placing window win as a child of window parent.  This function is usually used by a win-
  dow manager to put a decoration window behind each application window.  In the case of the window manager, the new parent window must first
  be created as a child of the root window.

  If win is mapped, an XUnmapWindow() request is performed on it automatically.  win is then removed from its current position in the hierar-
  chy, and is inserted as a child of the specified parent.  win is placed on top in the stacking order with respect to siblings.

  A ReparentNotify event is then generated.  The override_redirect member of the structure returned by this event is set to  either  True  or
  False.  Window manager clients normally should ignore this event if this member is set to True.

  Finally, if the window was originally mapped, an XMapWindow() request is performed automatically.

  Descendants of win remain descendants of win; they are not reparented to the old parent of win.

  Normal  exposure  processing on formerly obscured windows is performed.  The server might not generate exposure events for regions from the
  initial unmap that are immediately obscured by the final map.  The request fails if the new parent is not on the same  screen  as  the  old
  parent, or if the new parent is the window itself or an inferior of the window.

Errors
  BadMatch  parent not on same screen as old parent of win.
	    win has a ParentRelative background and parent is not the same depth as win.
	    parent is win or an inferior of win.

  BadWindow parent is InputOnly and win is not.

See Also
  XCirculateSubwindows(),  XCirculateSubwindowsDown(),	XCirculateSubwindowsUp(),  XConfigureWindow(),	XLowerWindow(),  XMoveResizeWindow(),
  XMoveWindow(), XQueryTree(), XRaiseWindow(), XResizeWindow(), XRestackWindows().

Xlib - Window Manipulation													 XReparentWindow()