Code Repo    |     RSS
MD's Technical Sharing



Monday, November 3, 2008

PDF TextViewer on PocketPC

This attempt to build a PDF Text Viewer for Pocket PC using PocketPC/Smartphone PDF viewer (http://www.leobueno.net/PaginaProyectoSoft.php?id=SPDFVIEW) under GPL License

Recompile the project, originally built for eVC 3/4. under VS2005 without major errors. There is initially one error about 'unknown identifier' which is a quick fix. The original code attempted to re-use a variable initialized as a counter inside a FOR loop, for example

for (int i=0;i<10;i++)
{
}
If (i=0) ………. //error here

This is valid under eVC but not under VS2005. (why?)


TODO for PDF Textviewer
  • Change default text view to non-justify
  • Nicer Open File dialog
  • A Search & Go To Page feature
  • Export text to .TXT file
  • Separator between page.
  • Do not remember and auto-open last open file (slow startup!)
  • Unicode support!
Download source code here

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.