473,396 Members | 1,722 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Can datasheet row automatically grow / expand?

Hi, hope anyone can help with this query.

Background:
Subform datasheet link to a form to store updates on projects.

Query:
I have a datasheet where one of the field is a memo field. When text
is entered the datasheet does not automatically expand to show all the
text. Is this possible? Obviously, some rows may have 2 lines of text
and some may have 10. I can manually expand the row height but that
changes all the rows. Can anyone advise the best way to present the
data.

Thanks for your help.
Matt

Apr 20 '07 #1
8 22677
Lynx101 wrote:
Hi, hope anyone can help with this query.

Background:
Subform datasheet link to a form to store updates on projects.

Query:
I have a datasheet where one of the field is a memo field. When text
is entered the datasheet does not automatically expand to show all the
text. Is this possible? Obviously, some rows may have 2 lines of text
and some may have 10. I can manually expand the row height but that
changes all the rows. Can anyone advise the best way to present the
data.

Thanks for your help.
Matt
You could press the Shift+F2 key combination.
Apr 21 '07 #2
On 20 Apr 2007 14:13:11 -0700, Lynx101 wrote:
Hi, hope anyone can help with this query.

Background:
Subform datasheet link to a form to store updates on projects.

Query:
I have a datasheet where one of the field is a memo field. When text
is entered the datasheet does not automatically expand to show all the
text. Is this possible? Obviously, some rows may have 2 lines of text
and some may have 10. I can manually expand the row height but that
changes all the rows. Can anyone advise the best way to present the
data.

Thanks for your help.
Matt
The best way to present the data is in a report. That's what reports
are for. In a report, you can set the Memo control's Can Grow
property, as well as the Detail Section's Can Grow property, to Yes.

You don't state whether you're looking at a Table Datasheet or a Form
in Datasheet View.
Regardless, the only way to show all the data would be to manually
re-size the row. Even if you used a Form in Single or Continuous View,
the form control's Can Grow property only works if the form is
printed, not just viewed.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Apr 21 '07 #3
On 20 Apr 2007 14:13:11 -0700, Lynx101 <ma**********@gmail.comwrote:

No. The datasheet row height is the same for all rows. If you REALLY
need variable height, you have to use a custom control. I once used
Infragistics' GridView control for just that reason (in VB6).

-Tom.

>Hi, hope anyone can help with this query.

Background:
Subform datasheet link to a form to store updates on projects.

Query:
I have a datasheet where one of the field is a memo field. When text
is entered the datasheet does not automatically expand to show all the
text. Is this possible? Obviously, some rows may have 2 lines of text
and some may have 10. I can manually expand the row height but that
changes all the rows. Can anyone advise the best way to present the
data.

Thanks for your help.
Matt
Apr 21 '07 #4
On Sat, 21 Apr 2007 00:45:42 GMT, salad <oi*@vinegar.comwrote:

A nice solution, but it's beyond me why MSFT after all these years
still hasn't gotten around to making this form resizeable.

-Tom.
>Lynx101 wrote:
>Hi, hope anyone can help with this query.

Background:
Subform datasheet link to a form to store updates on projects.

Query:
I have a datasheet where one of the field is a memo field. When text
is entered the datasheet does not automatically expand to show all the
text. Is this possible? Obviously, some rows may have 2 lines of text
and some may have 10. I can manually expand the row height but that
changes all the rows. Can anyone advise the best way to present the
data.

Thanks for your help.
Matt
You could press the Shift+F2 key combination.
Apr 21 '07 #5
Thanks for all your replies, i appreciate it. Whilst a report would
expand the fields automatically and would certainly do the job, I
need to use the datasheet to input data. At the moment I have manually
set the row height so that you can see a couple of lines. Does anyone
have a custom control to auto expand individual rows (not all rows)
according to how much data is entered into the field?

Thanks
Matt

Apr 21 '07 #6
On 21 Apr 2007 02:14:14 -0700, Lynx101 <ma**********@gmail.comwrote:
>Thanks for all your replies, i appreciate it. Whilst a report would
expand the fields automatically and would certainly do the job, I
need to use the datasheet to input data. At the moment I have manually
set the row height so that you can see a couple of lines. Does anyone
have a custom control to auto expand individual rows (not all rows)
according to how much data is entered into the field?

Thanks
Matt
"need to use datasheet to input data"
Don't use the datasheet view of your table to view/edit/input data. Do it with
a form, then you can make the TextBox control for the memo field any size you
want. The form does not have to show all the fields in the table, only the
fields required to be sure that you are working with the correct record.

Chuck
--
Apr 21 '07 #7
Chuck wrote:
On 21 Apr 2007 02:14:14 -0700, Lynx101 <ma**********@gmail.comwrote:

>>Thanks for all your replies, i appreciate it. Whilst a report would
expand the fields automatically and would certainly do the job, I
need to use the datasheet to input data. At the moment I have manually
set the row height so that you can see a couple of lines. Does anyone
have a custom control to auto expand individual rows (not all rows)
according to how much data is entered into the field?

Thanks
Matt


"need to use datasheet to input data"
Don't use the datasheet view of your table to view/edit/input data. Do it with
a form, then you can make the TextBox control for the memo field any size you
want. The form does not have to show all the fields in the table, only the
fields required to be sure that you are working with the correct record.

Chuck
If he used a form, he could put in a Dbl-Click event a call to open a
form to display the memo for editting.

The Shift+F2 combination, is like Tom said, not resizable. It's
probably something few have asked for or something MS doesn't consider
worth the time and effort to better.
Apr 21 '07 #8
yeah.. it's called 'use a report'


On Apr 20, 2:13 pm, Lynx101 <mattcolen...@gmail.comwrote:
Hi, hope anyone can help with this query.

Background:
Subform datasheet link to a form to store updates on projects.

Query:
I have a datasheet where one of the field is a memo field. When text
is entered the datasheet does not automatically expand to show all the
text. Is this possible? Obviously, some rows may have 2 lines of text
and some may have 10. I can manually expand the row height but that
changes all the rows. Can anyone advise the best way to present the
data.

Thanks for your help.
Matt

Apr 23 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Bing Du | last post by:
Greetings, The following shows how the Properties of a database look like: Data Files: File Name: student_dat Location: e:\data\MSSQL\Data\student.mdf Space allocated (MB): 62...
1
by: Kevin Myers | last post by:
Hello folks, I am an experienced developer with other languages and applications, but a neophyte when it comes to MS Access forms. Can someone please help get me with a solution for the...
5
by: kotowskil | last post by:
A report has a subform. The subform is set to datasheet view and its RecordSource is a select query that includes a memo field from the source table. The memo field's Can Grow property is Yes,...
1
by: Phil | last post by:
Hey @ all! I hope someone can help me with this problem: I have a datasheet-view (2 Levels)...with 3 or mor records. It is possible to expand ONE record in the code? I know about...
3
by: Lee | last post by:
Hello all, I have a question about Divs. It is possible to have a Div grow in length in response to a control such as a Table or Gridview growing inside of it? -- Warm Regards, Lee
14
by: fh217 | last post by:
Hi I have a datasheet with 32 columns, the first 2 columns are frozen and disabled. What I would like to do is as a user tabs thru a row on the sheet is to shift the sheet to the left so it...
2
by: Alan Forsyth | last post by:
That rather long subject says it. In Access97 running on XP - I want to display a Maximized size Form01, then open a Restore size Datasheet View Form02 on top of the first Form. PopUp won't give...
4
ifedi
by: ifedi | last post by:
I need to make a textarea grow automatically (in height) as the user entry flows over to a new line... Actually I got this working well, only when ENTER is hit (I made use of the total number of...
0
by: Brian N | last post by:
I have an access db. It has a tabbed interface and on the second tab, I have a datasheet view and a subform. When they click on the + to expand, they fill out event details. I have a depart field on...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.