Search found 187 matches

by grayghost4
Saturday 13th April 2024 2:04am
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 514

Re: can not use gambas repoes to get update

# Run the following commands in a terminal (copy & paste)... # A folder called 'gambas-stable' will be created in the working directory mkdir gambas-stable # why not add this to it to make sure ? git clone --depth=1 https://gitlab.com/gambas/gambas.git --branch=stable gambas-stable cd gambas-sta...
by grayghost4
Saturday 13th April 2024 12:25am
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 514

Re: can not use gambas repoes to get update

It did not do that on my Debian system ... I had to make the directory my self
by grayghost4
Friday 12th April 2024 11:51pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 514

Re: can not use gambas repoes to get update

that still does not create the directory ...gambas-stable
by grayghost4
Friday 12th April 2024 12:25pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 514

Re: can not use gambas repoes to get update

The first command should be :

mkdir $HOME/gambas-stable
by grayghost4
Wednesday 10th April 2024 10:03pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 514

Re: can not use gambas repoes to get update

it allmost works :( Setting up libegl1-mesa-dev:amd64 (22.3.6-1+deb12u1) ... Setting up libgtk-3-dev:amd64 (3.24.38-2~deb12u1) ... Setting up libgtkglext1-dev:amd64 (1.2.0-11) ... Setting up libsdl-ttf2.0-dev:amd64 (2.0.11-6) ... Setting up libimlib2-dev (1.10.0-4+deb12u1) ... Setting up libwebkit2g...
by grayghost4
Wednesday 10th April 2024 8:36pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 514

Re: can not use gambas repoes to get update

Did you use sudo add-apt-repository ppa:gambas-team/gambas3 to add the repository as you may not have the gpg keys
No that command would not work :(

Guess I will wait for Debian 13 next Year
by grayghost4
Wednesday 10th April 2024 7:26pm
Forum: General
Topic: [solved] can not use gambas repoes to get update
Replies: 15
Views: 514

[solved] can not use gambas repoes to get update

I am using Debian 12.5 and have manual installed the repoes but when I try to update I get this message how can I install the key to fix it ? hc@marvin-rogstrixgl10dhgl10dh:~$ sudo apt update [sudo] password for mhc: Hit:1 http://ftp.us.debian.org/debian bookworm InRelease Hit:2 http://deb.debian.or...
by grayghost4
Sunday 7th April 2024 3:38am
Forum: Beginners
Topic: New to Gambas.. seek some help
Replies: 14
Views: 2470

Re: New to Gambas.. seek some help

This checks two different text boxs and only allows a number or editing key strokes, the two boxes are grouped together so one sub checks both boxes. Public Sub accountinfoBoxes_keypress() If Key.Code If Last.Name = "TBankroute" Or Last.Name = "TBaccNum" And Not (IsDigit(Key.Text...
by grayghost4
Wednesday 3rd April 2024 7:10pm
Forum: The Gambas IDE
Topic: Formatting code with Ctrl+Shift+F has changed to Ctrl+Shift+T (V 3.19.0)
Replies: 4
Views: 3755

Re: Formatting code with Ctrl+Shift+F has changed to Ctrl+Shift+T

I am using Debian 12.5 and gambas 3.18.0 the latest in the deb system and it is still ctrl shift F ....
what version did it get changed to "T" ?
by grayghost4
Wednesday 3rd April 2024 2:17pm
Forum: General
Topic: [Solved] Get the Previous Sunday from a Date
Replies: 25
Views: 1697

Re: [Solved - sort of] Get the Previous Sunday from a Date

I read the original post as wanting the sunday of the last full week to print the last week activity report. as I need to get the Sunday to Monday dates for a report that run for the previous week (no matter what day the report would be run this week it would always report back the previous Monday t...