A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Multiple sub forms



 
 
Thread Tools Display Modes
  #1  
Old November 15th, 2009, 04:14 PM posted to microsoft.public.access.forms
rascal
external usenet poster
 
Posts: 34
Default Multiple sub forms

I have a main form that has 3 subforms all linked by date. What I would like
to do is when the data has been entered into 1 subform and I go to the next,
have the 1st subform shrink, and the same for the 3rd subform. Is this
possible? I am using access 2007
  #2  
Old November 15th, 2009, 06:30 PM posted to microsoft.public.access.forms
Arvin Meyer [MVP][_3_]
external usenet poster
 
Posts: 2
Default Multiple sub forms

rascal wrote:
I have a main form that has 3 subforms all linked by date. What I would like
to do is when the data has been entered into 1 subform and I go to the next,
have the 1st subform shrink, and the same for the 3rd subform. Is this
possible? I am using access 2007


A subform is really a control, not a form, so just use the current event
of the next subform to change the control height of the previous one,
something like (air code):

Private Sub Form_Current()
Me.NameOfControlToResize.Height = 360
End Sub

Form measurements are in Twips. There are 1440 Twips to the inch, so 360
Twips is a 1/4 of an inch.
--
Arvin Meyer, MVP, MCP
Microsoft Access
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 04:17 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.