B
Brian K. Maher
Guest
David, Consider using BUFFER-COPY instead of ASSIGN or multiple assignments if possible. Also, remember that the ABL is not an optimizing compiler so anything that happens in a loop will be evaluated each time. For example... do i = 1 to num-entries(some_big_list): end. better would be: define variable iEntries as integer no-undo. assign iEntries = num-entries(some_big_list). do i = 1 to iEntries: end. Brian
Continue reading...
Continue reading...