got problem with Web Speed

tekstylez

New Member
I'm creating a tracking system with webspeed. I don't want to have to re-type a huge section of the program that needs to be doubled, so I'm trying to copy and paste. Problem is, I can't. I can seem to copy a few parts here and there, but there are portions that I can't. And when I try to retype the line, it stops and won't let me type any further. It won't even let me return to start a new line. Has anyone else run into this glitch? Or know of a solution?

I've tried copying and pasting the code into notepad and back into webspeed and that didn't work. Running out of ideas here...
 
Maybe your code is getting too large? Have you tried creating include files (which is always a good idea when you need the same code more than once). Anyway, just an idea -- without looking at any of your code.
 
progress has a limitation on number of lines in procedure. To over come this you can put the code in an include file. This should work without any problem. Refer progress document to learn about the progress limitation.
 
Thanks for the input guys.

1) I'm using AppBuilder.
2) It might possibly be the limitations. This is a program I'm editing/recreating and there are extra procedures that are no longer being used. Then again, my company had this problem once before when the program was smaller. I'm not exactly sure what is going on, but I will try to cut down on the program and if that doesn't work, I'll use include files. I'll post again with an update of how it goes.

EDIT: I got it to work. I took out the section I was trying to edit and moved it to a new procedure and broke that up into the 2 procedures I needed. that seemed to work. thanks again for the suggestions
 
Yep, the section editor in the AppBuilder has size limitations. Must be a nice little procedure you are writing :awink:
 
Back
Top