Greetings All!
I'm having a problem in the middle of some wonderful progress and I'm frustrated with butting my head against the wall in my ignorance. Hopefully someone can give me a gentle nudge (well, a shove would probably be better) in the algorithm department and send me in a better direction.
I'm attempting to create a user-friendly interface for my fairly functional program, RPGSort. The purpose of RPGSort is to rename and sort all of the available RPG e-books whether they be fan-based or purchased from Wizards of the Coast. The program is fully working but just a little lacking in the customer service area though. So, I've spent my lone day off tackling this ugly program and have come up with a pleasant screen to astound the future users.
.my problem lies in updating many things at once. On the left you see the progress bar that will update after comparing and renaming each file. On the upper right, a field for the current operation. This will showcase what my program is actually doing, importing the database, creating the batch files, creating the missing/have lists.et cetera. The large empty gap in the lower right is my problem. It should show what files have been scanned and what the result of the scan was.
Everything is running quite smoothly except this area. I need to figure out a way to scroll this area as more files are brought in to be examined. This means that I can scan fifteen files and they will all be displayed with results and when the sixteenth is scanned, the first should disappear as the second becomes the first and so on.
I've worked with the "VIEW TEXT" until my eyes are strained and my fingers numb and I'm having no success. I can print to the newly created text window and things will scroll nicely; but, my other areas won't be updated with their "LOCATE" and "PRINT" statements.
So, if anyone can provide a little guidance in creating a window that I can easily send data to as well as update my other fields, please direct me.
Kurt Reonis
mailto:[email protected][email protected]</A>
I'm having a problem in the middle of some wonderful progress and I'm frustrated with butting my head against the wall in my ignorance. Hopefully someone can give me a gentle nudge (well, a shove would probably be better) in the algorithm department and send me in a better direction.
I'm attempting to create a user-friendly interface for my fairly functional program, RPGSort. The purpose of RPGSort is to rename and sort all of the available RPG e-books whether they be fan-based or purchased from Wizards of the Coast. The program is fully working but just a little lacking in the customer service area though. So, I've spent my lone day off tackling this ugly program and have come up with a pleasant screen to astound the future users.
Code:
+ ··------------------------------------------+ ¯¦¯¯_ ¯¦¯¯_ _¯¯¯_ RPGSort release 8.9.01 ¦ ¦ ¦ ¦ ¦ ¦ Code by Kurt Reonis ([email protected]) ¦ ¯¦¯¦¯ ¯¦¯¯¯ ¦ __¯ Data by Max Amum ([email protected]) ¦ ¦ ¯_ ¦ ¦ ¯ ¦ ··------------------------------------------¦ ¯ ¯ ¯ ¯____¯ File ¦ Current Operation: ¦ ·········+----------------------------------¦ _¯¯¯_ _¯¯¯_ ¯¦¯¯_ ¦¯¯_¯¯¦ . ¦ ¦ ¦ ¦ ¦ ¦ ¦ : ¦ ¯¯__ ¦ ¦ ¯¦¯¦¯ ¦ ¦ ¦ ¦ ¦ ¦ ¦ ¯_ ¦ ¦ ¦ ¯____¯ ¯____¯ ¯ ¯ _¦_ ¦ ¦ ¦ ¦ . ¦ ¦ : ¦ ¦ +--------------------------------¦ ¦ ¦ ( %) ¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦¦ ¦ ¦ +--------------------------------¦ ¦ ¦ Sort Scheme: ¦ ¦ ¦ Rename Scheme: ¦ ¦ ¦ Separator: ¦ ¦ ¦ Log File: ¦ ¦ +----------------------------------------------------------------------------+
Everything is running quite smoothly except this area. I need to figure out a way to scroll this area as more files are brought in to be examined. This means that I can scan fifteen files and they will all be displayed with results and when the sixteenth is scanned, the first should disappear as the second becomes the first and so on.
I've worked with the "VIEW TEXT" until my eyes are strained and my fingers numb and I'm having no success. I can print to the newly created text window and things will scroll nicely; but, my other areas won't be updated with their "LOCATE" and "PRINT" statements.
So, if anyone can provide a little guidance in creating a window that I can easily send data to as well as update my other fields, please direct me.
Kurt Reonis
mailto:[email protected][email protected]</A>
Comment