Search found 1552 matches

by BruceSteers
Thursday 18th April 2024 7:40pm
Forum: Component
Topic: Change column width in a DataView not working
Replies: 1
Views: 8

Re: Change column width in a DataView not working

The code should look more like this... DataView1.View.Columns[1].Width = 50 you are missing the Width property DataView1.View.Columns[1] is a pointer to the the Column object not it's width property. PS. It can help a lot to just try hitting . (dot/full stop) after anything and see if the auto-compl...
by BruceSteers
Thursday 18th April 2024 5:21pm
Forum: Project showcase
Topic: Germinal - a terminal with some potential
Replies: 5
Views: 720

Re: Germinal - a terminal with some potential

hai bruce, you may should disable the selection of proportional fonts and just show monospaced ... cause its very ugly ;-) micha Probably a good idea. Cheers :) How do you like it though? Used Ctrl to move the cursor yet? I'm loving that feature, it makes things like editing a paste of the gambas d...
by BruceSteers
Wednesday 17th April 2024 4:12pm
Forum: Project showcase
Topic: Germinal - a terminal with some potential
Replies: 5
Views: 720

Re: Germinal - a terminal with some potential

I've just created a development branch on gitlab so i can test things there before merging to main and keep the revision raising to a min. I've just ironed out some bugs in the new routines. : :roll: I have made it so changing prompt line from showing full path to only folder also restores the comma...
by BruceSteers
Wednesday 17th April 2024 1:14pm
Forum: Project showcase
Topic: Germinal - a terminal with some potential
Replies: 5
Views: 720

Re: Germinal - a terminal with some potential

This program is also still a bit WIP I have been using it for a long time and it's fully functional but the recent cursor movement addition was so awesome i had to upload it to the world right away. (i probably should have fully tested/debugged it first) The custom command menu does not work and is ...
by BruceSteers
Wednesday 17th April 2024 10:15am
Forum: Project showcase
Topic: Germinal - a terminal with some potential
Replies: 5
Views: 720

Re: Germinal - a terminal with some potential

Btw. there's some bugs in gb.form.terminal that i'm reporting and hopefully Benoit can find a fix. Basically do not resize the terminal when there is a long command line present. It seems okay with short command lines but if there is a long command (more than one line) then resizing the terminal wil...
by BruceSteers
Tuesday 16th April 2024 4:02pm
Forum: Project showcase
Topic: Germinal - a terminal with some potential
Replies: 5
Views: 720

Germinal - a terminal with some potential

Germinal A gambas terminal application (bash) Main Features.. * Bookmark folders and use the bookmarks to either cd the dir or input the text * Customize look, Color, transparency, font * Show bash history in a searchable list. (see snapshot) * Edit current command line in a TextEditor * Select/Del...
by BruceSteers
Saturday 13th April 2024 11:19pm
Forum: Lounge
Topic: Playground is broken
Replies: 8
Views: 577

Re: Playground is broken

How complex is the playground code? does it need a docker to be secure? I made something similar http://138.68.116.47/cgi-bin/Scripter.gambas It can use gbs3 or Eval and forbids use of Shell and Exec with only this much code.. ' Gambas class file Export Public p As Process Public Sub WebButton1_Clic...
by BruceSteers
Saturday 13th April 2024 10:28pm
Forum: Lounge
Topic: Playground is broken
Replies: 8
Views: 577

Re: Playground is broken

I think it's broken again. Do the Run/Play buttons on the gambas wiki also use the same system as that's showing the same message... "docker start" requires at least 1 argument. See 'docker start --help'. Usage: docker start [OPTIONS] CONTAINER [CONTAINER...] Start one or more stopped cont...
by BruceSteers
Saturday 13th April 2024 2:21pm
Forum: Beginners
Topic: Background colours in TextEditor
Replies: 3
Views: 892

Re: Background colours in TextEditor

Thank you! You're welcome. You'll see you can set Color , Bold, and many other properties for certain types of text that will show when a TextEditor.Highlight mode like "gambas" or "sh" is used. And that's pretty cool. I have it my ScripEd text editor I can fully customize every...
by BruceSteers
Saturday 13th April 2024 11:52am
Forum: Beginners
Topic: Background colours in TextEditor
Replies: 3
Views: 892

Re: Background colours in TextEditor

The TextEditor uses a TextHighlighterTheme that overrides basic Control properties like Background/Foreground. https://gambaswiki.org/wiki/comp/gb.form.editor/texteditor/theme https://gambaswiki.org/wiki/comp/gb.highlight/texthighlightertheme Change the Background like this.... TextEditor1.Theme[&qu...