Search found 1113 matches

by cogier
Wednesday 13th November 2019 4:30pm
Forum: General
Topic: Settings
Replies: 5
Views: 6950

Settings

Cage asked this question here but I think it's better started as a new topic. Can you explain exactly how the settings command works. I have search for an answer but what I have found were very vague. I managed to make it work but it's not putting the file where would like it. If you could help out ...
by cogier
Sunday 10th November 2019 4:22pm
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 30357

Re: PhotoEXIF

Updated program is here . Histogram - Added. Matt and I spent yesterday afternoon working it all out, thanks Steve for your work on this, it guided us in the right direction. I have taken the basics and will put it on the Farm as an example. Picture edit feature - Added. Please look at the EdList fi...
by cogier
Saturday 9th November 2019 12:07pm
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 30357

Re: PhotoEXIF

Steve did you try the Bing maps? Regarding the 'Show' issue you can resize the directory and file windows which should solve your problem.

Any advice on Histograms?

Cage, thanks for the code I will look at that later.
by cogier
Friday 8th November 2019 8:13pm
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 30357

Re: PhotoEXIF

OK. Updated program and three pictures complete with GPS data (2 in Guernsey, 1 in Berlin) are here . Mode feature - Removed. Extra program close button - Gone. Right click delete file feature - Added. Auto rotate - Changed to a CheckBox . Key scrolling feature on FileView - Added. EXIF '-common' fe...
by cogier
Thursday 7th November 2019 10:00pm
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 30357

Re: PhotoEXIF

I am working on many of your and cage's comments. Please wait. Regarding RAW images I only have one comment.

Stay tuned.....
by cogier
Wednesday 6th November 2019 10:15pm
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 30357

Re: PhotoEXIF

Thanks and thanks again for the input. It is very infrequent that I get any feedback on programs I have written even though I include an email address. My most popular Gambas Farm program BarcodeCreator has had 1364 downloads to date and not a single comment. Anyway onward..... I may have font issue...
by cogier
Wednesday 6th November 2019 4:48pm
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 30357

PhotoEXIF

I am putting this out there to see if it is of interest and if anybody can find any bugs or just make a comment. The program is designed to display photos, their EXIF data and, if available, a map of the location the picture was taken. The program includes 'exiftool' which makes it a bit big for the...
by cogier
Sunday 3rd November 2019 11:58am
Forum: General
Topic: Read Only Error File Stream
Replies: 4
Views: 4830

Re: Read Only Error File Stream

Is this the code as the code shown above has errors? Dim hFile As File Dim i As Integer Dim ProgName, SeIcon, Comd, LineSpace, BoxName, BoxCmd As String hFile = Open Application.Path &/ "Index.dat" For Input If Eof(hFile) = True Then Return Else I = 0 'Set i to 0 While Not Eof(hFile) L...
by cogier
Saturday 2nd November 2019 1:25pm
Forum: Lounge
Topic: We're now GDPR compliant
Replies: 7
Views: 11385

Re: We're now GDPR compliant

I am informed that this should now be fixed. The top man Jorno has been looking at this for me.
by cogier
Friday 1st November 2019 4:37pm
Forum: General
Topic: picturebox vs imagview
Replies: 3
Views: 4795

Re: picturebox vs imagview

This is an interesting question. The main difference, as I see it, is that a Picture is loaded from disk and displayed while an Image is loaded into memory and kept there so it can be manipulated in memory. So, I presume, if you were writing a photo album program you would use a PictureBox. If you w...