Forum Moderators: open
I have a database app. that I wrote. There are about 60 text boxes on this app. Sometimes the program crashes when people are entering data. I was wondering, is there a way to copy the info from all text boxes on a form into the system clipboard, and then paste them all back?
I know how to do this with indvidual text boxes, but not everything on a form.
Any suggestions?
You can use that Request object recursively and show it on the same page if you need to.
By copy and paste, do you mean after a browser is closed and reopened? It's doable, but it would be a mess I would think.
If the form is crashing with just 60 fields (which should not be causing problems) running javascript in the background could add even more problems.
Look into documentElement.innerHTML in javascript. I have done something vaguely similar and I started there.
Joe