SSISE Code
Status: Alpha
Brought to you by:
theraccoonbear
File | Date | Author | Commit |
---|---|---|---|
AppConfig | 2007-04-24 | theraccoonbear | [r6] AppConfig class add |
ImagedFile | 2007-04-24 | theraccoonbear | [r4] SLOC analysis. Not needed by project. |
Processor | 2007-04-24 | theraccoonbear | [r13] Removed file/folder |
Viewer | 2007-04-24 | theraccoonbear | [r14] Removed file/folder |
Widgets | 2007-04-24 | theraccoonbear | [r7] Widgets class added |
dbi | 2007-04-24 | theraccoonbear | [r5] dbi class added |
README.TXT | 2007-04-24 | theraccoonbear | [r12] Folder Info |
What is all of this stuff? /AppConfig This is a .NET assembly that allows reading/writing of application configuration settings to/from flat text files. It keeps settings in a Collection and provides a "safer" (no exception thrown on missing key) interface to the settings. Nothing to fancy, it's just how the programs are configured. /dbi This is a .NET assembly that wraps database functionality. It currently is only for MS SQL Server but will hopefully support other RDBMS in the future. /ImagedFile This .NET assembly is a completely abstracted imaged "file" handling the database and file I/O bits. It's what every program based around SSISE will need to use to interface. It effectively is SSISE. /Processor This application is a sample scan processor that will take a PDF file, pull the pages out as TIFFs, rotate as needed, and then thumbnail (via the ImagedFile class) and add to the system. It will create new files, or append to existing ones. /Viewer This application is a sample file viewer that allows you to load existing files, save some/all pages to a multi-page TIFF, and print some/all pages. /Widgets This .NET assembly contains the graphical bits that the Viewer and Processor use like: floating progress bars, list picker dialogs, file lookup dialogs, etc.