1. How to use it on a single file:
- download the tool , put it into your "path" (path might be C:\Windows\ or C:\winnt
- Start - Run - type cmd
- navigate to the folder where you have the file - e.g. cd C:\Temp
- paste (Alt + E, P) the following code
:: =======================COPYPASTE START
pdf2html -noframes -c -p "the Name of the File" "The Name Of the File.html"
:: =======================COPYPASTE END
2. On many files - If you have a bunch of those files to convert to pdf, place them on a single folder
- navigate to the folder containig the files
- copy paste the following code (Alt + E , P)
:: =======================COPYPASTE START
::move each separate document in its own folder
for /f "tokens=*" %%i in ('dir *.pdf /s /b /a-d') do mkdir "%%i_folder"&
move /y "%%i" "%%i_folder"
::pause
:: generate html out of pdf
for /f "tokens=*" %%i in ('dir *.pdf /s /b /a-d') do pdf2html -noframes -c
-p "%%i" "%%i.html"
::pause
:: =======================COPYPASTE END
Getting the Current TabItem when the Tab is not selected in WPF
-
[image: Banner]
This is a quick reminder to self on how to retrieve a TabItem from a WPF
TabControl *when the tab is not currently selected* because I ru...
1 week ago
No comments:
Post a Comment
- the first minus - Comments have to be moderated because of the spammers
- the second minus - I am very lazy at moderating comments ... hardly find time ...
- the third minus - Short links are no good for security ...
- The REAL PLUS : Any critic and positive feedback is better than none, so your comments will be published sooner or later !!!!