Search found 191 matches

by PJBlack
Friday 23rd July 2021 9:19am
Forum: General
Topic: Advise on a idea
Replies: 11
Views: 6814

Re: Advise on a idea

opening a connection at the same time should not be a problem ... reading at the same time should not be a problem but writing at the same time could be a problem ... see https://en.wikipedia.org/wiki/Deadlock and https://www.sqlite.org/lockingv3.html https://www.sqlite.org/wal.html however, since i...
by PJBlack
Thursday 22nd July 2021 6:04pm
Forum: General
Topic: Advise on a idea
Replies: 11
Views: 6814

Re: Advise on a idea

Does anyone have any examples of how to use sqlite with Gambas? https://gambaswiki.org/wiki/howto/databasesqlite https://gambaswiki.org/wiki/comp/gb.db/connection https://www.sqlite.org the difference between sqlite and real dbms is a) the lack of user management, b) sqlite is local and file based ...
by PJBlack
Thursday 22nd July 2021 9:34am
Forum: General
Topic: Advise on a idea
Replies: 11
Views: 6814

Re: Advise on a idea

i honestly don't understand the intention behind your question ... is it about computation time? then have a look at the command nice (i have seen functional somewhere in gambas too) and an application that compares the data ... uh yes ... if you have two mysql servers running anyway (i hope you mea...
by PJBlack
Monday 19th July 2021 7:23am
Forum: Project showcase
Topic: New project, a .desktop launcher editor
Replies: 6
Views: 4801

Re: New project, a .desktop launcher editor

after a first quick look i've changed a few things: changed project/properties/components/gb.gtk3 --> gb.gui (afaik everything works) Startup: Public Sub Main() FMain.GridView1.Columns.Count = 3 Public Sub Main() Application.Theme = "gambas-mono" FMain.GridView1.Columns.Count = 3 nothing e...
by PJBlack
Thursday 8th July 2021 1:17pm
Forum: Component
Topic: Any simple DBus examples?
Replies: 8
Views: 5817

Re: Any simple DBus examples?

BruceSteers wrote: Thursday 8th July 2021 11:55amA solution to what?
I thought it was about preventing the application from starting multiple times ...

sorry if I missed something
by PJBlack
Thursday 8th July 2021 10:38am
Forum: Component
Topic: Any simple DBus examples?
Replies: 8
Views: 5817

Re: Any simple DBus examples?

would using a PID file be a possible solution?
by PJBlack
Wednesday 7th July 2021 2:42pm
Forum: Component
Topic: Any simple DBus examples?
Replies: 8
Views: 5817

Re: Any simple DBus examples?

;)
by PJBlack
Wednesday 7th July 2021 11:07am
Forum: Component
Topic: Any simple DBus examples?
Replies: 8
Views: 5817

Re: Any simple DBus examples?

https://gambas-buch.de/dwen/doku.php?id=k24:k24.9:start 24.9.0 D-Bus 24.9.0.1 D-Bus and Gambas 24.9.0.2 D-Bus-Introspection 24.9.0.3 D-Bus-Signatur 24.9.1 DBusObject 24.9.2 DBus 24.9.2.1 Project 24.9.3 DBusApplication 24.9.4 DBusConnection 24.9.5 DBusObserver 24.5.2.1 Project 24.9.6 DBusSignal 24.9....
by PJBlack
Tuesday 29th June 2021 12:10am
Forum: General
Topic: app from terminal or gui? [SOLVED]
Replies: 3
Views: 2475

Re: app from terminal or gui?

MAYBE something like so:
    Try Debug Me.h

    If Not Error Then Debug "GUI Programm ..." Else Debug "Konsolenprogramm ..."
by PJBlack
Thursday 24th June 2021 4:17pm
Forum: Web
Topic: WebForm in various browser TABs
Replies: 2
Views: 9460

Re: WebForm in various browser TABs

hello,
I am just cooking and therefore not very concentrated ... but when skimming your code I noticed that you create a new object with every click ...