Search found 175 matches

by Quincunxian
Tuesday 14th July 2020 2:44am
Forum: General
Topic: DB connection not working after update to Mint 20 Ulyana
Replies: 6
Views: 5932

Re: DB connection not working after update to Mint 20 Ulyana

Thanks PJ & Cogier. I did try a remove/clean install before hand but apt auto-remove failed with the error 'package broken' Did a clean up manually using the advice from the main Gambas web site: Edit: @PJ - that is exactly the error message I get. How do I uninstall Gambas? If you have installe...
by Quincunxian
Monday 13th July 2020 2:47am
Forum: General
Topic: DB connection not working after update to Mint 20 Ulyana
Replies: 6
Views: 5932

DB connection not working after update to Mint 20 Ulyana

Greetings all, I upgraded to Mint 20 Ulyana which 'broke' Gambas. Note# The pre-check that you can do before upgrading listed gambas as one of the applications that would have issues. I was able to reinstall using the gambas-team/gambas-daily but now any program that has a sqlite db fails as the DB ...
by Quincunxian
Friday 19th June 2020 10:47pm
Forum: Project showcase
Topic: Resizer : The best resizing solution!
Replies: 7
Views: 8778

Re: Resizer : The best resizing solution!

You can also stop tool tips displaying without clearing them by setting:
Application.ShowTooltips = False
by Quincunxian
Saturday 6th June 2020 10:12pm
Forum: General
Topic: How to read keypress from exclusive external USB keypad .
Replies: 12
Views: 13196

Re: How to read keypress from exclusive external USB keypad .

Hi dinge and welcome to the forum. I'm trying to understand why/what you are doing before getting down to the code level. I assume you have a standard keyboard with a number pad on it. You want to plug in an external usb number pad and distinguish between the keyboard pad and the external pad. The s...
by Quincunxian
Monday 25th May 2020 10:10pm
Forum: General
Topic: View email message
Replies: 5
Views: 5578

Re: View email message

If the html messages are in raw html - you could pass them to a qt4 webview control then extract the text from that.

webview.url = html-mail-message
text-to-save = webview.text
by Quincunxian
Sunday 17th May 2020 11:04pm
Forum: General
Topic: Move a form without borders with Mask
Replies: 2
Views: 3398

Re: Move a form without borders with Mask

Hi DavideTr.
Welcome to the forum.

I needed to do this myself for a 'future project' so we both have a solution now.
This is just one way - there are potentially many more.
by Quincunxian
Friday 15th May 2020 10:32pm
Forum: General
Topic: Console qustions.
Replies: 4
Views: 5410

Re: Console qustions.

Hi Giorgos Sound Try this ALSA based command - it will need a bit of tweeking but it made some noise from my command line. $ ( speaker-test -t sine -f 1000 )& pid=$! ; sleep 2.0s ; kill -9 Found the above solution Here at StackExchange. Colour I 'sort of ' remember doing something this back in m...
by Quincunxian
Thursday 7th May 2020 12:03am
Forum: General
Topic: Scann gambas projects directory application
Replies: 3
Views: 5800

Re: Scann gambas projects directory application

I'm in a similar position with my Application, the 'Gambas Project Review Utility' ; It's about 85% done. I built it up over the last 5 or so year to help me with managing projects and doing exactly what tincho indicated. It scans a project and allows you to search for code, print source code, varia...
by Quincunxian
Monday 27th April 2020 9:18pm
Forum: General
Topic: Hello
Replies: 4
Views: 5820

Re: Hello

Hola Martin,
What does GambasCade do ?
by Quincunxian
Monday 27th April 2020 2:06am
Forum: Component
Topic: Drop & Drag within a Treeview
Replies: 6
Views: 10199

Re: Drop & Drag within a Treeview - Solved.

Hi Steve, I got a reply from the mailing list group from an Italian guy called Gianluigi. He updated my test project code with the following and it now works. the "Trv_Main.FindAt(Drag.X, Drag.Y)" is the key bit of code i think. The only thing that I want to do that is different in the att...