Search found 1719 matches

by DigitalVolcano
Sun Mar 02, 2014 2:52 pm
Forum: Duplicate Cleaner support
Topic: Polish Translation
Replies: 8
Views: 17604

Re: Polish Translation

Thanks Mateusz!
by DigitalVolcano
Sat Mar 01, 2014 11:24 am
Forum: Duplicate Cleaner support
Topic: Polish Translation
Replies: 8
Views: 17604

Re: Polish Translation

Thanks for that! We actually have some more lines for the upcoming coming version if you are interested in translating - latest file is attached.
by DigitalVolcano
Thu Feb 27, 2014 4:32 pm
Forum: Duplicate Cleaner support
Topic: Subst drives cant be scanned anymore
Replies: 3
Views: 7537

Re: Subst drives cant be scanned anymore

Yes, must have been a system issue. There haven't been any changes between 3.2.1 and 3.2.3 that would have changed this. Sometimes you need to click the 'Refresh folders' button to the right of the list to show new drives.
by DigitalVolcano
Tue Feb 25, 2014 10:05 am
Forum: TextCrawler - General
Topic: having problem with multiple word search
Replies: 1
Views: 8855

Re: having problem with multiple word search

You need to use the Regular Expression tab to search in this way, not the standard tab.
by DigitalVolcano
Mon Feb 24, 2014 12:22 pm
Forum: TextCrawler - General
Topic: How can i search for more than one word - with words between
Replies: 5
Views: 17346

Re: How can i search for more than one word - with words bet

It works if you don't put the spaces in:

Code: Select all

1 _NEW.*?1 CHAN
Note if you replace this with nothing you'll lose the "1 CHAN" as well - you'll need to have 1 CHAN as the replace phrase.
by DigitalVolcano
Mon Feb 24, 2014 12:17 pm
Forum: TextCrawler - General
Topic: Is there a help file for TextCrawler?
Replies: 2
Views: 10897

Re: Is there a help file for TextCrawler?

Not for the current version sorry. We're working on a proper help system & manual for version 3.0!
by DigitalVolcano
Mon Feb 24, 2014 12:10 pm
Forum: Duplicate Cleaner support
Topic: What is "recycler"? Can I delete?
Replies: 1
Views: 5316

Re: What is "recycler"? Can I delete?

The "Recycler" folder is a system folder created by Windows. It stores the contents of your recycle bin. http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q171/6/94.ASP&NoWebContent=1 If you empty the Windows recycle bin in the usual way...
by DigitalVolcano
Tue Feb 18, 2014 8:51 pm
Forum: Duplicate Cleaner support
Topic: Single File Groups ?
Replies: 1
Views: 5604

Re: Single File Groups ?

Have you changed the sorting so it is not sorted by the Group column?
Or is there a filter turned on? (Right click menu to remove filters)
by DigitalVolcano
Mon Feb 17, 2014 1:44 pm
Forum: TextCrawler - General
Topic: need to print searched word only if both words found in a
Replies: 5
Views: 17007

Re: need to print searched word only if both words found in

Hmmm, I haven't found a good way of doing this yet.

Code: Select all

dps_ishare_tb.*FAIL.*dps_leakage_tb
by DigitalVolcano
Mon Feb 17, 2014 12:23 pm
Forum: TextCrawler - General
Topic: How can i search for more than one word - with words between
Replies: 5
Views: 17346

Re: How can i search for more than one word - with words bet

You can do this using the regular expression tab.

Try this:

Regular expression:

Code: Select all

hey .*? how

Use the 'Dot matches newline' option to match over more than one line.