Display of user comments on a dialog
Posted: Thu Apr 27, 2017 8:14 am
I have a customer loan account program where the collectors enter collection comments into a xbpmle, using a fixed width font, and the results are then split into individual lines and loaded into the comments dbf file. A DCBrowse is used to via the comments. This is based on the original wordwrapper clipper program approach x-Memo approach. I continued using this approach instead of using fpt memo files initially due to the problems caused by corruption of memo file. We have files with over 99 million lines of comments. We use ADS now and are looking at using the fpt memo files.
So I have 2 questions.
1. For ADS users using extremely large memo files, say 3-6GB in size, have you ever had corruption and lost data and how do you handle it.
2. The comments are not one comment per account, they are 1 comment today, one or more comments the next day, comments for logging of changes, etc. So you would still have the same comments file with account#, date, time, comment type and instead of the single/multiple line of text, you would have one record with a memo file link for each comment. The question I have is how do you accumulate all the individual comments into a single scrollable window for user reviewing.
Current screen: The * indicates a new comments. Some are single lines and some are multiple lines. What is the best way to show this. They may have hundreds or thousands of lines of comments over many different threads that need to be show in a single scrolling type dialog, preferably being updated as new items are added. Additions would be generally at the end prior to the reminder notes that always have an internal date of 12/31/9999. I don't think it would be good to build an array everytime you start looking at this screen as it would be creating a delay for the user. Currently, since it is a table, there is no delay.
So I have 2 questions.
1. For ADS users using extremely large memo files, say 3-6GB in size, have you ever had corruption and lost data and how do you handle it.
2. The comments are not one comment per account, they are 1 comment today, one or more comments the next day, comments for logging of changes, etc. So you would still have the same comments file with account#, date, time, comment type and instead of the single/multiple line of text, you would have one record with a memo file link for each comment. The question I have is how do you accumulate all the individual comments into a single scrollable window for user reviewing.
Current screen: The * indicates a new comments. Some are single lines and some are multiple lines. What is the best way to show this. They may have hundreds or thousands of lines of comments over many different threads that need to be show in a single scrolling type dialog, preferably being updated as new items are added. Additions would be generally at the end prior to the reminder notes that always have an internal date of 12/31/9999. I don't think it would be good to build an array everytime you start looking at this screen as it would be creating a delay for the user. Currently, since it is a table, there is no delay.