Search found 75 matches

by 01McAc
Tuesday 27th April 2021 4:30pm
Forum: Beginners
Topic: Debugging: Stop program if variable = value ?
Replies: 9
Views: 11189

Re: Debugging: Stop program if variable = value ?

I suppose a
if x=0 then stop
will do the trick.
by 01McAc
Thursday 8th April 2021 6:13pm
Forum: Project showcase
Topic: A Personal Lens Register Database for photography aficionados
Replies: 4
Views: 4500

Re: A Personal Lens Register Database for photography aficionados

Really appreciate your time and effort to go through my program! Thank you. I found a bug in row 109. Somehow the

Code: Select all

.Sort()
function was missing.
Screenshot_20210408_195745.jpg
Screenshot_20210408_195745.jpg (587.7 KiB) Viewed 4153 times
I attached the bug fix version 0.2.17. If you find other 'imperfections' please let me know.
by 01McAc
Thursday 8th April 2021 4:18pm
Forum: Project showcase
Topic: A Personal Lens Register Database for photography aficionados
Replies: 4
Views: 4500

Re: A Personal Lens Register Database for photography aficionados

Thanks, I'll check what's wrong in sub Refresh_FTS(). Useless to say that it works on my computer :?
by 01McAc
Tuesday 6th April 2021 6:25pm
Forum: Project showcase
Topic: A Personal Lens Register Database for photography aficionados
Replies: 4
Views: 4500

Re: A Personal Lens Register Database for photography aficionados

I am pleased to deploy version 0.2.15 of the Personal Lens Register There are a couple of changes since the last version: Set a colour of your choice for any lens in the grid and persist in database Fixed a few bugs Use of multiprocessing when building new FTS virtual table in sqlite enhanced user e...
by 01McAc
Friday 2nd April 2021 6:04pm
Forum: Component
Topic: Component to preview files in a directory
Replies: 22
Views: 15886

Re: Component to preview files in a directory

Same thing here. On Fedora Rawhide it's the raw-thumbnailer: [Thumbnailer Entry] TryExec=/usr/bin/raw-thumbnailer Exec=/usr/bin/raw-thumbnailer -s %s %u %o MimeType=image/x-adobe-dng;image/x-canon-cr2;image/x-canon-crw;image/x-nikon-nef;image/x-olympus-orf;image/x-pentax-pef;image/x-sony-arw;image/x...
by 01McAc
Friday 2nd April 2021 11:09am
Forum: Component
Topic: Component to preview files in a directory
Replies: 22
Views: 15886

Re: Component to preview files in a directory

I suggest you paste the libraw section of your code. There must be some magic in the code. I double checked my code, made no changes et voilá: it works. Great stuff. Thank you. The only remaining question is still the non-preview of the DNG in the FileView component. Dolphin and Nautilus (see attac...
by 01McAc
Wednesday 31st March 2021 5:54pm
Forum: Component
Topic: Component to preview files in a directory
Replies: 22
Views: 15886

Re: Component to preview files in a directory

hmm, there must be something wrong in my code. The problem sits mostly in front of the monitor :shock:
Did you extract the thumbnail with libraw and in the app you provided before for download?
by 01McAc
Monday 29th March 2021 4:55pm
Forum: General
Topic: MouseOver Event?
Replies: 2
Views: 2665

Re: MouseOver Event?

cogier wrote: Monday 29th March 2021 4:40pm I think this is what you are looking for.
Indeed, this is it.
And it's the Enter-event! I am still blinded by Access.
Thank you.
by 01McAc
Monday 29th March 2021 3:36pm
Forum: General
Topic: MouseOver Event?
Replies: 2
Views: 2665

MouseOver Event?

For my ongoing little project "A Personal Lens Register" I am desperately looking for a MouseOver sort-of-event. But first things first. The form where the lens rating is shown (attached) has 10 criteria to rate a lens. My use case is just that simple: whenever I hovering the mouse over on...
by 01McAc
Monday 29th March 2021 2:15pm
Forum: Component
Topic: Component to preview files in a directory
Replies: 22
Views: 15886

Re: Component to preview files in a directory

OK, downloaded your example and works. One change I had to do though. I needed to change the libraw version since I run Fedora rawhide and it obviously uses a different version: Library "libraw:20" After this little change your example works as expected. But - and it seems there is always ...