473,699 Members | 2,734 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Large text boxes

I have a form where "notes" are entered on an individual.
Unfortunately, these notes are usually longer than the 255 characters
allowed in a single text box. To get around this, I have three note
boxes set up on the form (note1, note2, and note3). When one fills up,
the user can tab to the next one and continue typing. This works but
it is very cumbersome and sloppy. Is there an easier way?

Jan 20 '06 #1
7 2020
Ryker wrote:
I have a form where "notes" are entered on an individual.
Unfortunately, these notes are usually longer than the 255 characters
allowed in a single text box. To get around this, I have three note
boxes set up on the form (note1, note2, and note3). When one fills up,
the user can tab to the next one and continue typing. This works but
it is very cumbersome and sloppy. Is there an easier way?


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Use a Memo field instead of a Text field. A Memo field can hold about
65,000 characters. Note, that you can't GROUP BY a Memo field in a
query.
--
MGFoster:::mgf0 0 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQ9FHhoechKq OuFEgEQJAggCg8M OFOJ1yR/aalwsjckXNgDPk0 icAn3PR
aVm9gISUsi39p8x h0nqNevtb
=cC6+
-----END PGP SIGNATURE-----
Jan 20 '06 #2
BB
Change the field type from Text to Memo. That gives you room for about
32,000 characters.

Jan 20 '06 #3
Thanks, that works.

Is there a way to take the data that is in note1 note2 and note3 and
place it into the new memo field that I will be creating?

Jan 20 '06 #4
Thanks, that works. Now that I have my notes fragmented into other
note fields, is there a way to merge them into one memo field?

Jan 20 '06 #5
Assuming you tack on the memo field to the table with the three
existing 'note' fields, you can do:

UPDATE tblNotes SET tblNotes.MemoFi eld=[note1] & " " & [note2] & " " &
[note3];

Jan 20 '06 #6
Thanks, I will give that a try.

Jan 20 '06 #7
On 20 Jan 2006 13:12:37 -0800, "Ryker" <ra*****@chocta w.org> wrote:
Thanks, that works.

Is there a way to take the data that is in note1 note2 and note3 and
place it into the new memo field that I will be creating?


Run a query and append the three note fields into the new memo field.
Also, the 65k character limit on memo fields only applies the amount
of characters you can actually type into a memo field. The actual
memo field in the table can hold MUCH more. Why this limit exists for
a text box bound to a memo field is a mystery.
Jan 20 '06 #8

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

Similar topics

1
2285
by: Frank | last post by:
I have a large form, that has text boxes of numbers in rows and columns. I need to sum the values in the columns, and put the total at the bottom of the column. But I also need to sum the values in each row, and put the total at the end of the row. What is the javascript to sum the values to a few text boxes, and how would I write the script for these totals to run all at once? Thanks.
7
8657
by: Gertjan van Heijst | last post by:
Hi, I really hope someone can help me because I've already spend 2 days on this problem and I'm not getting anywhere. I think the problem is that I don't really understand how text boxes store 'empty' values. I'm trying tot do the following. I have a continous sub form that lists transactions. On the top level form I have some text boxes to let the user specify the transactions between which dates should be listed. To do this I have...
2
8954
by: John Kreps | last post by:
(acc 2002) I've got six unbound text boxes on a subform that has a white background. Each of those six boxes has an expression that when true, will change its background from white to another color. These text boxes need to go behind a single line of other bound text boxes (which show the actual record). I.e., the purpose of the unbound text boxes w/conditional formatting is to highlight the record/background with one of six colors.
2
1797
by: Gary | last post by:
Hello All, I have an editable data grid in my web form, this grid allows the user to add new records, edit existing records and also delete them. When a user adds a record the grid goes in to edit mode and four text boxes appear, one is for the start date, another for an end date and the other two are for other data, the user fills in the fields and saves the data, all is great at this point, an entry is added ok. However the problem I...
11
16269
by: Edson Peacock | last post by:
I have a report with sub reports, one of the subreports have 12 text boxes that are 2" high and I want them all to grow if one goes to 3" high. If anyone has any suggestions they are very much appreciated. Thanks
6
3418
by: BurntWithTime | last post by:
Hello everyone, Please can anyone tell me if it is possible for a VB.NET application to check a database and then create textboxes on a form that correspond to those records on the database? For example, say I had a table in a DB that contained movie subjects: Horror, Sci-Fi, Comedy etc. Would it be possile for the VB app to look at these and then create the text boxes Horror, Sci-Fi and Comedy? Thanks, BWT
6
12211
by: =?Utf-8?B?Sm9obiBBdXN0aW4=?= | last post by:
I have an app that displays about 20 items of data in text boxes. Very occasionally I need to allow these to be used for data entry, but the bulk of the time they are solely for information. They all sit in a GroupBox that is normally disabled, but is enabled when data can be edited. The users complain that when the GroupBox.Enabled=False, the greyed out text boxes are hard to read. I would like to find a way to disable the GroupBox whilst...
2
1192
by: Marks | last post by:
Need some help here, is there any way when you press return in large text boxes that it inserts a new paragraph/line, for some reason it tends just to go to the previous text box. I would prefer not to keep pressing ctrl and enter everytime. Many Thanks!
11
5175
by: jwessner | last post by:
I have a form (Form1) which contains basic Project data and a subform listing the personnel assigned to the Project as a continuous form. Selecting a person on that project and clicking on a command button will open a new form (Form2). Form2 has two subforms. Both are embedded in the main form. (Subform2 is NOT embedded in subform1.) Subform1 displays records as a continuous form based on the Primary ID of the main form and lists the...
0
8685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9171
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9032
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8880
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7743
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6532
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5869
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4373
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
2008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.