Search found 266 matches
- Saturday 16th January 2021 12:44am
- Forum: General
- Topic: Non english su command
- Replies: 1
- Views: 9
Non english su command
Hi all. I'm making a gambas upgrader and i have a function in it that allows you to type the su password in at the start of the compile process so you do not have to when it gets to running 'make install' It does this by when the make install command is sent to the terminal it reads the terminal out...
- Friday 15th January 2021 2:28pm
- Forum: Project showcase
- Topic: Gambas httpd server
- Replies: 8
- Views: 235
Re: Gambas httpd server
Funny though
looking at my gambas components i see gambas already has gb.httpd an embedded http server
looking at my gambas components i see gambas already has gb.httpd an embedded http server
- Monday 11th January 2021 2:18pm
- Forum: Component
- Topic: Compiling on ALL supported distros
- Replies: 31
- Views: 2422
Re: Compiling on ALL supported distros
If gambas is already installed I'm working on this similar thing but it's a gambas program.... It's very WIP , no docs yet and only a few tooltips. https://gitlab.com/bsteers4/gcu like the script it uses the .gitlab-ci file to get supported distros / dependencies / commands.and auto-detects your sys...
- Saturday 09th January 2021 10:03pm
- Forum: Lounge
- Topic: Gambas adoption, script kiddies & old codgers
- Replies: 16
- Views: 317
Re: Gambas adoption, script kiddies & old codgers
Hi Bruce, If you have anything educational I am happy to add them in the Wordpress area. Have a look at Gerry's book which is complete with example programs. These could then be pointed to on the forum. You can email me at admin AT gambas DOT one . I thought simple examples were wanted for the curr...
- Saturday 09th January 2021 9:42pm
- Forum: Lounge
- Topic: Gambas adoption, script kiddies & old codgers
- Replies: 16
- Views: 317
- Saturday 09th January 2021 2:13pm
- Forum: Lounge
- Topic: Gambas adoption, script kiddies & old codgers
- Replies: 16
- Views: 317
Re: Gambas adoption, script kiddies & old codgers
This seems a good idea.
I could add some things to it.
I made a few apps like the Icon maker that were designed to be very simple and commented throughout to explain what's happening as a form of tutorial.
I could add some things to it.
I made a few apps like the Icon maker that were designed to be very simple and commented throughout to explain what's happening as a form of tutorial.
- Saturday 09th January 2021 1:40pm
- Forum: Web
- Topic: HTTP server in Gambas with gb.net
- Replies: 5
- Views: 275
Re: HTTP server in Gambas with gb.net
Interesting..
Thanks for the example and for sharing
I don't have a use for it sorry so i have not tried it.
( I assume the same for most other people here as you have had no replies)
But Benoit is interested so keep at it and we may find it to be a part of gambas one day
BruceS
Thanks for the example and for sharing

I don't have a use for it sorry so i have not tried it.
( I assume the same for most other people here as you have had no replies)
But Benoit is interested so keep at it and we may find it to be a part of gambas one day

BruceS

- Friday 08th January 2021 4:50pm
- Forum: General
- Topic: User Define Types
- Replies: 10
- Views: 125
Re: User Define Types
The assignments for EmployeeRecord are not in a sub/function they are in the global space. that can't be right. Maybe try assigning the values in the Form_Open() Sub you also may need to initialise the pointer first with 'New' ... Ie... EmployeeRecord = New Employee Public Struct Employee EmployeeNo...
- Wednesday 06th January 2021 6:14pm
- Forum: General
- Topic: How do you merge Gambas project code?
- Replies: 7
- Views: 100
Re: How do you merge Gambas project code?
PS,
If you are sharing your code with others git is ideal.
the other person can submit the merge requests or make a branch and you can view all the changes before accepting the merge.
That's how it happens at a Gambas top level with Bens main gambas repository.
If you are sharing your code with others git is ideal.
the other person can submit the merge requests or make a branch and you can view all the changes before accepting the merge.
That's how it happens at a Gambas top level with Bens main gambas repository.
- Wednesday 06th January 2021 5:40pm
- Forum: General
- Topic: How do you merge Gambas project code?
- Replies: 7
- Views: 100
Re: How do you merge Gambas project code?
git is great for this. just create a new branch from your main branch and make changes to the new branch , once done just make a merge request. you can use commands like 'git status' and git diff' to see changes. I've made a manager for managing all my git folders. No documentation yet i'm afraid. i...