Search found 123 matches

by cage
Thursday 14th November 2019 4:37am
Forum: General
Topic: Settings
Replies: 5
Views: 6850

Re: Settings

gbWilly I am not trying to really move the config file but rather just make it work correctly. When I run my test program then look in the config folder it's not there. So I just needed to find out how to set the path to that folder. It's good to talk to you again, been a long time. :)
by cage
Wednesday 13th November 2019 3:15am
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 29919

Re: PhotoEXIF

Cogier as always your suggestions very much welcome. My biggest problem is that I am an old school programmer. I do appreciate your suggestions and end up using them, thank you. As for your program it's really coming together really nicely. As it stands right now I would put it the top 3 programs th...
by cage
Saturday 9th November 2019 9:12pm
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 29919

Re: PhotoEXIF

Your welcome cogier. You helped me so I am glad to help you when ever I can. :D
by cage
Saturday 9th November 2019 4:19am
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 29919

Re: PhotoEXIF

cogier it's looking great. Very nice work. I have a quick launcher program that allows the user to look up a program to place it into an index file. You could do something similar in a config file in your configs folder. Look at this code I use and modify it to your liking for your program. Should g...
by cage
Thursday 7th November 2019 9:42am
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 29919

Re: PhotoEXIF

Okay worked out the problem with right click delete. Just added this code to the end of the code. Public Sub FileView1_MouseDown() If Mouse.Button = 2 Then Select Message.Question("Are you sure you want to delete: " & DirChooser1.SelectedPath &/ FileView1.Current, " Yes "...
by cage
Thursday 7th November 2019 6:14am
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 29919

Re: PhotoEXIF

I added a button to your program to delete pictures being displayed. I wanted to use a right click to do it but it caused problems. Going to work on that. I added a delete button and disabled it, but as soon as the program runs it's enabled. Here is the routine that I used. You can use it or make a ...
by cage
Thursday 7th November 2019 3:46am
Forum: Project showcase
Topic: PhotoEXIF
Replies: 27
Views: 29919

Re: PhotoEXIF

I really like this program cogier, it is as good if not better then most of the ones in the repositories. One feature I would like to see is the ability to delete images in the folders. Not sure if you have that in the program or not. I am still playing around with it and will let you know more later.
by cage
Sunday 3rd November 2019 8:50pm
Forum: General
Topic: Read Only Error File Stream
Replies: 4
Views: 4796

Re: Read Only Error File Stream

Yea it's basically the same but was declared as a public array outside of the form open code. It's part of a quick launcher program I wrote years ago back with Gambas 3.10. After I got the updated help file I came to see after searching it what the problem was. However you did give me an idea on how...
by cage
Sunday 3rd November 2019 5:32am
Forum: General
Topic: Read Only Error File Stream
Replies: 4
Views: 4796

Re: Read Only Error File Stream

I found the answer after doing some research. Seems the old way is no longer supported and a new way that has been there is now the required way to do arrays. Old Way 3.14.0 Public BoxName[43] As String Public BoxCmd[43] As String New Way 3.14.1 Public BoxName As New String[43] Public BoxCmd As New ...
by cage
Sunday 3rd November 2019 5:03am
Forum: General
Topic: Read Only Error File Stream
Replies: 4
Views: 4796

Read Only Error File Stream

Just got the latest update of Gambas 3.14.1 and a program that has worked for years no longer works. When it tries to read a data file I get the file is a read only file error. I checked the files and they are not read only so I am baffled by this error. Here is a copy of the input portion of the pr...