Search found 1113 matches

by cogier
Saturday 31st December 2022 3:57pm
Forum: Project showcase
Topic: ClearLines
Replies: 1
Views: 4100

ClearLines

Here is an addictive game. Drag and drop the shapes to create horizontal and/or vertical lines that then disappear. How long can you last?

Image
ClearLines-1.0.3.tar.gz
(921.52 KiB) Downloaded 266 times
by cogier
Saturday 31st December 2022 3:52pm
Forum: Project showcase
Topic: a Gambas recent files Lister (TrayIcon)
Replies: 26
Views: 21461

Re: a Gambas recent files Lister (TrayIcon)

Thanks for this, it works a treat. Why the transparency?

Image
by cogier
Sunday 25th December 2022 12:50pm
Forum: Beginners
Topic: What does "Dialog Management" mean?
Replies: 4
Views: 1679

Re: What does "Dialog Management" mean?

I tried this and got a couple of buttons on the form (OK and Cancel) and the following code was already created.

Public Sub Run() As Boolean

  Return Not Me.ShowModal()

End

Public Sub btnOK_Click()

  Me.Close(True)

End

Public Sub btnCancel_Click()

  Me.Close

End
by cogier
Sunday 25th December 2022 12:41pm
Forum: Lounge
Topic: Merry Christmas all :)
Replies: 3
Views: 7660

Re: Merry Christmas all :)

Thanks for the good wishes and I hope you all (except the Russian spammers) enjoy a good day and may next year see an end to war.
by cogier
Wednesday 21st December 2022 2:39pm
Forum: General
Topic: Window resizing help
Replies: 6
Views: 1771

Re: Window resizing help

I am glad you got it working. Are you using Wayland? I noticed this on the Mailing List.
by cogier
Wednesday 7th December 2022 4:43pm
Forum: Project showcase
Topic: TOTP aka Time Based One Time Password.
Replies: 2
Views: 4632

Re: TOTP aka Time Based One Time Password.

Hi docfo and welcome to the forum.

I had a look at your program. It looks very good, but is very specialized. What plans do you have for such security?
by cogier
Wednesday 7th December 2022 4:39pm
Forum: Beginners
Topic: CDocumentation.ImplementAndNeed.1209
Replies: 3
Views: 1630

Re: CDocumentation.ImplementAndNeed.1209

I am unable to reproduce the error on my machine.
by cogier
Saturday 3rd December 2022 12:17pm
Forum: Project showcase
Topic: I recreated one of the first programs I ever wrote.
Replies: 2
Views: 4341

Re: I recreated one of the first programs I ever wrote.

Hi rokyed and welcome to the forum. I had a look at your program, it does the job, but I felt there were a few additions I could add to help you on your way with Gambas. Download available below. Feel free to keep or ignore any changes. I have made the form fully resizeable. Note that if you have a ...
by cogier
Friday 2nd December 2022 1:47pm
Forum: Beginners
Topic: How to add checkbox or switch button column to tableview
Replies: 4
Views: 1875

Re: How to add checkbox or switch button column to tableview

Hi bored and welcome to the forum.

I have to agree with thatbruce. The Gambas version 2.23 was released in April 2011! We are now up to version 3.17.3.

What distro are you using?
by cogier
Tuesday 29th November 2022 3:36pm
Forum: General
Topic: Spaces instead of Tabs in a text area, did I miss a better way?
Replies: 4
Views: 1756

Re: Spaces instead of Tabs in a text area, did I miss a better way?

Have you had a look at the Gambas TextEditor? It has a TabSize property. Or am I missing the point?