Search found 75 matches

by 01McAc
Monday 15th March 2021 12:37pm
Forum: Component
Topic: MapView - Layer with street and town names
Replies: 18
Views: 13220

Re: MapView - Layer with street and town names

Does Image class not convert raw to jpg ? Unfortunately not. When I load the DNG file hImageIW = Image.Load(FileChooser1.SelectedPath) there are a few messages from the interpreter in the debug window: TIFFReadDirectory: Warning, Unknown field with tag 51125 (0xc7b5) encountered. foo: Sorry, can no...
by 01McAc
Sunday 14th March 2021 7:01pm
Forum: Component
Topic: MapView - Layer with street and town names
Replies: 18
Views: 13220

Re: MapView - Layer with street and town names

@cogier: I'll have close look into the PhotoExif program tomorrow. After a first quick run through it looks 'wow' but throws an error when clicked and changed to another directory. It is very interesting how the exif information gets extracted. My app is much simpler and just focused on GPS and the ...
by 01McAc
Sunday 14th March 2021 11:36am
Forum: Component
Topic: MapView - Layer with street and town names
Replies: 18
Views: 13220

MapView - Layer with street and town names

I am experimenting with the component MapView. Purpose is to get a fast GPS exif browser for jpg and raw files. I am struggling with different layers in Google Maps. How can I enable or disable different layers of in Google Maps like street/town names, topographic view, etc. What I see right now for...
by 01McAc
Wednesday 10th March 2021 2:29pm
Forum: General
Topic: TableView edit : 'freeze' column(s) ?
Replies: 5
Views: 4130

Re: TableView edit : 'freeze' column(s) ?

WRT Sorting: just turn on the sorting in the properties. Tableview1.Sort=true You need to add your own sort algorithm into the sort event Public Sub TableView1_Sort() Dim Values, ValueSorted As New String[] Dim Nx, iNx As Integer ' Load sort column into string array For Nx = 0 To TableView1.Rows.Max...
by 01McAc
Wednesday 10th March 2021 2:17pm
Forum: General
Topic: TableView edit : 'freeze' column(s) ?
Replies: 5
Views: 4130

Re: TableView edit : 'freeze' column(s) ?

Hi Doctor, I think it shouldn't be to complicated. Unfortunately, I am not good with tableviews but I fiddled around with these tableview example (attached). Source of the example is https://gambas-buch.de/dwen/doku.php?id=k17:k17.8:start I set column 1 of the tableview to readonly by cancelling the...
by 01McAc
Tuesday 9th March 2021 5:12pm
Forum: Project showcase
Topic: InFile
Replies: 38
Views: 24131

Re: InFile

Thanks for the quick reply. Your code is working very well in a new project. I copied and change the code into my project and.... drum roll... nothing happened. To make long story short: The minute I removed the debug code in my task function, it works pretty well. Weird :idea: ' Gambas class file '...
by 01McAc
Tuesday 9th March 2021 3:16pm
Forum: Project showcase
Topic: InFile
Replies: 38
Views: 24131

Re: InFile

I had a look in your InFile project and have a question re the task GetFiles . What exactly triggers/runs the function Main() in GetFiles.class? The declaration TaskGetFiles = New GetFiles As "TaskGetFiles" ? I am asking because I try to adopt the tasks into my project. I exactly copied th...
by 01McAc
Tuesday 9th March 2021 1:39pm
Forum: General
Topic: New task doesn't start
Replies: 6
Views: 3986

Re: New task doesn't start

I'll have a look into the InFile project
by 01McAc
Tuesday 9th March 2021 12:44pm
Forum: General
Topic: New task doesn't start
Replies: 6
Views: 3986

Re: New task doesn't start

then after If $hTask = Null Then $hTask = New MyTask_FTS As "MyTask_FTS" you can use $hTask.CommandName() Cheers, it works and it speeds up the program in case of a complex DB operation. I have now an idea how tasks could work. BUT - what I don't understand yet - when I changed the name o...