Search found 1719 matches

by DigitalVolcano
Thu Jan 29, 2015 2:28 pm
Forum: Duplicate Cleaner support
Topic: Don't find duplicates!
Replies: 2
Views: 5887

Re: Don't find duplicates!

Check the file filter. Also check the date and size ranges are set to "Any". To reset it to 'factory settings' you can delete the database file in C:\Users\[YOUR USER]\AppData\Roaming\DigitalVolcano\DuplicateCleaner\DuplicatecleanerPro.data on Windows 7. (close Duplicate Cleaner first).
by DigitalVolcano
Mon Jan 26, 2015 10:47 am
Forum: Duplicate Cleaner support
Topic: Gray "mask" over most of the screen on first start up 3.26
Replies: 1
Views: 4748

Re: Gray "mask" over most of the screen on first start up 3.

The mask probably relates to the position of the main list - it's a separate control loaded from an external library, so it looks like for some reason it was jammed or still loading up when you started the program.
by DigitalVolcano
Mon Jan 26, 2015 10:45 am
Forum: Duplicate Cleaner support
Topic: Still: Scan complete dialog hidden behind main window
Replies: 2
Views: 5265

Re: Still: Scan complete dialog hidden behind main window

Hmmm... What happened when you clicked on the main window? Or was it still scanning?
by DigitalVolcano
Mon Jan 26, 2015 10:43 am
Forum: Duplicate Cleaner support
Topic: New Italian language file
Replies: 5
Views: 11747

Re: New Italian language file

Thanks - is the attachment missing though?
by DigitalVolcano
Wed Jan 21, 2015 12:10 pm
Forum: Regular Expressions Help
Topic: find and remove pattern
Replies: 4
Views: 15369

Re: find and remove pattern

This should find the block- <tr class="OutOfBlock"><td /><td>DD\.MM\.YYYY</td><td>HH:MM:SS</td><td>\+HH:00</td><td>.*?</td><td>.*?</td><td></td><td>.*?</td><td></td><td>.*?</td><td>0,0000</td><td /></tr> note the escaped characters and the wildcards. You can replace with nothing to remove ...
by DigitalVolcano
Sat Jan 10, 2015 6:04 pm
Forum: Duplicate Cleaner support
Topic: Clearing Duplicate Files Screen
Replies: 1
Views: 4822

Re: Clearing Duplicate Files Screen

If you start a new scan the list will be cleared. If you want to blank it, just select all the lines , right click and choose "Drop selected from list".
by DigitalVolcano
Sat Jan 10, 2015 2:10 pm
Forum: Releases & Update News
Topic: Duplicate Cleaner Pro and Free 3.2.6 Released
Replies: 0
Views: 24372

Duplicate Cleaner Pro and Free 3.2.6 Released

Updates in Duplicate Cleaner v3.2.6 Program closedown speed improved. Duplicate folders view: Now shows files from zip archives in list [Pro] Duplicate folders count now shown in completion dialog [Pro] Can now load .dc Profile from send-to menu / double click in explorer [Pro] Bugfix: Network drive...
by DigitalVolcano
Thu Jan 08, 2015 7:11 pm
Forum: TextCrawler - General
Topic: tg free not searching files properly
Replies: 3
Views: 13216

Re: tg free not searching files properly

TextCrawler only officially supports plain/Unicode text files, not binary or compressed formats such as PDF, DOC or DOCX. You'll risk corrupting the files if you do replacements on these formats!
by DigitalVolcano
Mon Jan 05, 2015 4:51 pm
Forum: TextCrawler - General
Topic: Remove all content after the closing </html> tag
Replies: 2
Views: 10969

Re: Remove all content after the closing </html> tag

This will remove everything (to the end of the file) after the </html> tag.

Regular expression:

Code: Select all

</html>.*
Replace:

Code: Select all

</html>
Option: "Dot Matches Newline" turned on.

Remember to back up first!