Search found 1564 matches

by BruceSteers
Tuesday 26th December 2023 12:43am
Forum: General
Topic: [Solved] Textbox set focus
Replies: 6
Views: 4026

Re: Textbox set focus

that is weird, it worked here just fine. (although i had to comment out all the Connect calls) what about the other fist more detailed method I said of changing frmSignon Form_Open() to Form_Show() rather than the additional alternative. frmSignon.class ' Gambas class file Public Sub Form_Show() btn...
by BruceSteers
Monday 25th December 2023 10:19pm
Forum: General
Topic: [Solved] Textbox set focus
Replies: 6
Views: 4026

Re: Textbox set focus

I'm not sure why it does not work, something to do with the form being loaded into a workspace. After the workspace has Added the frmSignon it seems to give it focus. I added this to the end of Main() in Startup.class Print Application.ActiveControl The result was frmSignon had focus not the textbox...
by BruceSteers
Monday 25th December 2023 7:12pm
Forum: General
Topic: [Solved] Textbox set focus
Replies: 6
Views: 4026

Re: Textbox set focus

Works as expected here.

Your code must be giving something focus that you don't really want.
by BruceSteers
Monday 25th December 2023 10:34am
Forum: Project showcase
Topic: MATE (and cinnamon) desktop icon organizer
Replies: 3
Views: 2525

Re: MATE (and cinnamon) desktop icon organizer

Does anyone know how to enable icons on the second monitor with cinnamon?

Cheers :)
by BruceSteers
Sunday 24th December 2023 3:03pm
Forum: Project showcase
Topic: MATE (and cinnamon) desktop icon organizer
Replies: 3
Views: 2525

MATE (and cinnamon) desktop icon organizer

Another possibly useful application for some.. From the ReadMe.... I made this because if i have more than one screen connected with MATE desktop it often misplaces icons off screen. Or if the HDMI lead is messed with, tv turned off, etc, icons can disappear off screen. On running this program a lis...
by BruceSteers
Sunday 24th December 2023 12:00pm
Forum: Project showcase
Topic: TurboSnake , the speedy little snake
Replies: 0
Views: 3873

TurboSnake , the speedy little snake

Well merry Christmas 2023 to all :) I've made my first gambas basic game :) I have here something that i was hoping to have fully refined come Christmas but I'll have to settle for , fairly ready. How it is not ready... It needs fully abusing to find any bugs. It needs a bit of a re-think on gamepla...
by BruceSteers
Friday 22nd December 2023 12:25pm
Forum: General
Topic: Qt6
Replies: 29
Views: 14341

Re: Qt6

I've got mine working okay. How my deb install differed to yours.... i also install xorg and not just specific parts like xserver-xorg xserver-xorg-video-fbdev xserver-xorg-video-intel apt install xorg installed openbox config (and qt specific version) and some things to get a working openbox enviro...
by BruceSteers
Friday 22nd December 2023 11:06am
Forum: General
Topic: Qt6
Replies: 29
Views: 14341

Re: Qt6

openbox is just a windowmanager, it's not a desktop environment. if you read the main openbox hompage http://openbox.org/wiki/Main_Page it says all about using openbox with your "desktop environment" without a desktop environment installed I think you can't use gambas gui applications. (ce...
by BruceSteers
Friday 22nd December 2023 10:54am
Forum: General
Topic: [Solved] GTK3 Keyboard
Replies: 3
Views: 4036

Re: GTK3 Keyboard

maybe you can simply send the logoff form the keypress in FMain_KeyPress. FMain.class Public Sub Form_Open() FMain.Workspace1.Add(frmSignedOff, 0) End Public Sub Form_KeyPress() Select Case Key.Code Case 65 'Key A Me.Text = "Key being captured by FMain" frmSignedOff.Form_KeyPress ' run frm...
by BruceSteers
Friday 22nd December 2023 2:08am
Forum: General
Topic: Qt6
Replies: 29
Views: 14341

Re: Qt6

So you don't have a desktop at all?
If not..
you'll need some kind of desktop (gui environment) to run a gui application

type

apt-cache search openbox

the will be a list of sessions.

lxde is minimal

sudo apt install openbox-lxde-session


If you do have a desktop , what type is it?