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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"Out of String Space" Error message.

Status
Not open for further replies.

PaulChilds

Technical User
May 21, 2002
195
Hi,

I'm creating a simple DVD cataloging database.

Included is a subform which will have the names of the cast and crew made of three columns: Actors, Director(s) and Composer(s). When I go to put a name in the first column I get a pop up "out of string space message". Then everything seems to work fine, but if I go back into the record, all but the top line of the subform have been deleted.

Any ideas?

 
The "out of string space" is usually a system problem as opposed to an Access problem. In simple terms it means that your computer has run out of the memory space needed to store the given string. Your datahasn't been "deleted", it's never been entered in your table.

My guess is you've probably got some program(s) running in the background, using up memory, on the machine that is having problems. Is this is the cause you may need to find the program(s) and disable them while you run you db or you could go into your config.sys file and change your buffer settings. You should see a line like "buffers=40". Try increasing this number.

You say it's a simple database. Does it use VBA code? Sometimes in writing code you can accidentally create an endless loop which could also cause your computer to run out of space by trying to write the same data to the db over and over again. This would require debugging your code looking for the loop.

Hope this helps.

The Missinglinq

"It's got to be the going,
not the getting there that's good!"
-Harry Chapin
 
It happens at the moment you try to type something in?
Sounds like an Access problem, although I never encountered one like this.
Do you have any code in the Change event of the textfield you use for entering?
Besides: "When I go to put a name in the first column"

What have you put on this subform for data entry anyway?
Textboxes? List boxes?
In the latter case, you might receive problems...



Andreas Galambos
EDP / Technical Support Specialist
(andreas.galambos@bowneglobal.de)
HP:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top