Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Closing up white space

Status
Not open for further replies.

abds

Programmer
Dec 13, 2000
46
0
0
US
On a page I have a header, a datagrid, a detail screen for mods to the datagrid, and a footer.

HEADER:
DATAGRID:
column; column; column; column; Mod Del
column; column; column; column; Mod Del
...
DETAIL SCREEN:
Enter value for column1 column2 } Validators, pulldowns, etc.
column3 }
column4/
FOOTER:

When you first see the page, the detail screen is not visible. When you click a mod button, the datagrid is not visible.

The problem is that there is too much space between the datagrid and the footer when the components of the detail screen are set to .visible = false.
How do I remedy this without rewriting too much?
TIA
Phil

__________________________________________________
We are drowning in data, but we are starving for information.
 
The easiest way is to re-arrange your components in a FlowLayout for the page (non-absolute positioning). When a control is set to Visible = false, then everything repositions accordingly.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top