There's some really clever coding there.

I've been derusting my limited Python knowledge today in doing things like trying to have a file picker that allows picking file names of the form:

20151203.abc

and

20160203 (with no extension).

The Winders filepicker doesn't like using "*." as an extension (it doesn't list the expected files with no extension).

How to do it?

Use "*.abc; ????????" as the wildcard. That picks up both types.

I'm rather proud of myself for figuring that out. Small victories. ;-)

Cheers,
Scott.