Uh, probably! The default is to put the controls in a Layout. You need to get rid of that!
Open the form in Design view. Select any control in the detail section. Click on the Arrange tab, and then click Remove in the Control Layout section.
John Viescas, Author
Microsoft Access 2010 Inside Out
Microsoft Access 2007 Inside Out
Microsoft Access 2003 Inside Out
Building Microsoft Access Applications
SQL Queries for Mere Mortals
(Paris, France)
On May 7, 2016, at 8:11 PM, Steve5 thaw5@suddenlink.net [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:
I should be able to develop a sample database with a few records.
Here is something else which may have a bearing on my problem: I created a query with four fields to be the data source for the form. Then I highlighted the query in the navigation pane. Then went to the ribbon's Create tab and in the Forms section clicked on Multiple Items. Access created the form under discussion. Does this method of creating the form cause any problems with Bill's button event code?
Steve
John Viescas, AuthorMicrosoft Access 2010 Inside OutMicrosoft Access 2007 Inside OutMicrosoft Access 2003 Inside OutBuilding Microsoft Access ApplicationsSQL Queries for Mere Mortals(Paris, France)On May 6, 2016, at 7:21 PM, Steve thaw5 thaw5@suddenlink.net [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:
Duane, thanks for that idea. But same results . . . blank white space between the rows with the decrease button.This code in a form worked as expected for me:Option Compare DatabaseOption ExplicitConst intIncrement As Integer = 250Private Sub cmdDecreaseDetailHeight_Click()Dim ctl As ControlFor Each ctl In Me.Section(0).Controlsctl.Height = ctl.Height - intIncrementNextMe.Section(0).Height = Me.Section(0).Height - intIncrementEnd SubPrivate Sub cmdIncreaseDetailHeight_Click()Dim ctl As ControlMe.Section(0).Height = Me.Section(0).Height + intIncrementFor Each ctl In Me.Section(0).Controlsctl.Height = ctl.Height + intIncrementNextEnd Sub
To: MS_Access_Professionals@yahoogroups.com
From: MS_Access_Professionals@yahoogroups.com
Date: Fri, 6 May 2016 16:21:03 +0200
Subject: Re: [MS_AccessPros] Decreasing row height
Steve-Can't see why that isn't working. What happens if you do a Requery?John Viescas, AuthorMicrosoft Access 2010 Inside OutMicrosoft Access 2007 Inside OutMicrosoft Access 2003 Inside OutBuilding Microsoft Access ApplicationsSQL Queries for Mere Mortals(Paris, France)On May 6, 2016, at 4:09 PM, Steve5 thaw5@suddenlink.net [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:
Click events for the two command buttons:
Private Sub cmdIncreaseDetailHeight_Click()
Me.Section(0).Height = Me.Section(0).Height + 250
logID.Height = logID.Height + 250
logDateEntered.Height = logDateEntered.Height + 250
logEntry.Height = logEntry.Height + 250
logAttach.Height = logAttach.Height + 250
End Sub
Private Sub cmdDecreaseDetailHeight_Click()
logID.Height = logID.Height - 250
logDateEntered.Height = logDateEntered.Height - 250
logEntry.Height = logEntry.Height - 250
logAttach.Height = logAttach.Height - 250
Me.Section(0).Height = Me.Section(0).Height - 250
End Sub
Thank you. SteveSteve,
Please post your code.
Duane Hookom, MVP
MS Access
To: MS_Access_Professionals@yahoogroups.com
From: MS_Access_Professionals@yahoogroups.com
Date: Thu, 5 May 2016 10:27:36 -0400
Subject: Re: [MS_AccessPros] Decreasing row height
Thanks Glenn and John for the advice. I am able to increase detail section height, but the height of the rows remains constant and space is inserted between rows. Decreasing detail section height decreases the space between rows. Seems to me that changing detail section height alone is not enough. Thoughts?
Thanks, SteveSteve-
You need to be changing the Height of the Detail section of the subform, not the Row Height.
John Viescas, Author
Microsoft Access 2010 Inside Out
Microsoft Access 2007 Inside Out
Microsoft Access 2003 Inside Out
Building Microsoft Access Applications
SQL Queries for Mere Mortals
http://www.viescas.com/
(Paris, France)
On May 4, 2016, at 10:49 PM, Steve thaw5 thaw5@suddenlink.net [MS_Access_Professionals] <MS_Access_Professionals@yahoogroups.com> wrote:
I'm using a continuous form to display rows of data. A command button
programmatically increases row height by 500 twips for each click.
Another button decreases row height by the same amount.
When the form opens, the rows are butted up against each other. When I
click the button to increase row height, the height increases and the
rows are butted up against each other. Here's the problem: when I click
to button to decrease row height, the height decreases but the rows no
longer abut each other. There is a blank white space between each row.
How do I decrease row height and get the rows to abut each other, i.e.,
no space between the rows?
Thanks.
Steve
------------------------------------
Posted by: Steve thaw5 <thaw5@suddenlink.net>
------------------------------------
------------------------------------
Yahoo Groups Links
__._,_.___
Posted by: John Viescas <johnv@msn.com>
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (21) |
.
__,_._,___
Tidak ada komentar:
Posting Komentar