Search found 9 matches

by steenhagen
Monday 1st January 2024 1:59pm
Forum: Component
Topic: Issue with Gambas3 Editor
Replies: 5
Views: 2031

Re: Issue with Gambas3 Editor

Dear Bruce, I cleared the cache as per your instructions, reinstalled Gambas, and turned the slider on. It still doesn't work. With the slider off, everything works fine again, so it's workable for me. I have Mint 20.3 with the latest version of Gambas3 on my computer. Thanks again for your help. Ki...
by steenhagen
Monday 1st January 2024 1:46pm
Forum: Component
Topic: Issue with Gambas3 Editor
Replies: 5
Views: 2031

Re: Issue with Gambas3 Editor

Hi Forum members, when I disable "Tools/Preferences/Help/Use offline documentation" (slider) in the menu, everything works again. Kind regards, Bert Dear Bruce, I will also try your option, maybe this works with the slider on. I'll let you know. Thank you very much for your response. (This...
by steenhagen
Monday 1st January 2024 10:42am
Forum: Component
Topic: Issue with Gambas3 Editor
Replies: 5
Views: 2031

Issue with Gambas3 Editor

Hello Panel Members, When I specify a language component in the Gambas3 editor and then type a period, I get a list of options. Additionally, there's an explanation, but unfortunately, I can't see it. I receive the error message "File or directory does not exist at line #??: with Stack backtrac...
by steenhagen
Tuesday 28th February 2023 11:58am
Forum: Beginners
Topic: mouseclick with keypress
Replies: 6
Views: 1009

Re: mouseclick with keypress

Hello Bruce,

The better option.

Thanks for your tip

Bert Steenhagen
by steenhagen
Sunday 26th February 2023 4:36pm
Forum: Beginners
Topic: mouseclick with keypress
Replies: 6
Views: 1009

Re: mouseclick with keypress

I have made a mistake, it has to be

Public Sub form_KeyPress()
If Key.Control Then
CtrlPressed = True
Endif
End


Key.Control not Key.ControlKey

ControlKey is a constant (16777249), always TRUE !!

Bert Steenhagen
by steenhagen
Sunday 26th February 2023 4:22pm
Forum: Beginners
Topic: mouseclick with keypress
Replies: 6
Views: 1009

Re: mouseclick with keypress

Hello Cogier, You have helped me well with your approach. I did it the other way around with the key-event public CtrlPressed as boolean Public Sub form_KeyPress() If Key.ControlKey Then CtrlPressed = True Endif End Public Sub form_KeyRelease() CtrlPressed = False End Public Sub mytable1_RowClick(Ro...
by steenhagen
Sunday 26th February 2023 1:39pm
Forum: Beginners
Topic: mouseclick with keypress
Replies: 6
Views: 1009

mouseclick with keypress

Hello,

How do I test the control key, when clicking on a row in a tableview. If CTRL-key is pressed then do this Else do that.
I can't find it on Internet or manuals.

Bert Steenhagen
by steenhagen
Tuesday 7th February 2023 8:13am
Forum: The Gambas IDE
Topic: console en findresults in IDE not working
Replies: 2
Views: 4572

Re: console en findresults in IDE not working

Hello Bruce,

You dit it !!!

I changed it and everything works again.

Thank you!!
by steenhagen
Sunday 5th February 2023 4:22pm
Forum: The Gambas IDE
Topic: console en findresults in IDE not working
Replies: 2
Views: 4572

console en findresults in IDE not working

Hello,

In the Gambas IDE the CONSOLE doesn't popup, also the FIND results.
Now I don't see my print output en find output. The buttons are visible but they don't work.
How do I get them back.

Bert Steenhagen