Search found 171 matches

by Quincunxian
Sunday 18th December 2022 1:09am
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11393

Re: 3D Models Viewer

The output from the last command:
dpkg-query: no packages found matching libgl-dev

So that answers that question.

Next steps ?
by Quincunxian
Sunday 18th December 2022 1:03am
Forum: General
Topic: Text Label formatting
Replies: 5
Views: 5349

Re: Text Label formatting

Thanks guys - Not sure what happened there, but the code from yesterday was not working and today it is :roll: GameText = "Game: <font color=red> " & AV.GameName & "</font>" GameText &= " - Player: <font color=yellow> " & AV.PlayerName & "</font...
by Quincunxian
Saturday 17th December 2022 3:29am
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11393

Re: 3D Models Viewer

You can also get the system information from Gambas. Help [? menu] & System Information. It gives a lot more data than the cat statement you provided. locate fails to find libGl.so - assume that this is becaue the version on my machine is named libGl.so.1.7.0 ( highlighted in red below ) -------...
by Quincunxian
Saturday 17th December 2022 3:03am
Forum: General
Topic: Text Label formatting
Replies: 5
Views: 5349

Text Label formatting

Does anyone have an example of the syntax for text label formatting? The gambas help gives this: ------------------------------------------------------------------------------------------------------------- A rich text is a string using a subset of the HTML format. The following HMTL markups are all...
by Quincunxian
Thursday 15th December 2022 10:33pm
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11393

Re: STL Viewer

Downloaded from git hub and extracted to my Project Folder.
On run, I get a 'cannot find dynamic library libGl.so'
by Quincunxian
Wednesday 23rd November 2022 7:12am
Forum: General
Topic: Allowable characters in sqlite3 database file names
Replies: 4
Views: 721

Re: Allowable characters in sqlite3 database file names

Hi Cedron.
What are the special characters that are giving you the issue ?
by Quincunxian
Tuesday 28th June 2022 10:35pm
Forum: General
Topic: Ideas for an auto-updater
Replies: 4
Views: 1467

Re: Ideas for an auto-updater

Something to note based on building something similar a few years ago.
Make sure that your process allows for updating the updater on the client machine.
You can normally do this centrally.
by Quincunxian
Tuesday 24th May 2022 2:04am
Forum: General
Topic: Copy lines from TextArea
Replies: 2
Views: 1204

Re: Copy lines from TextArea

The insert command will work when the cursor position is a positive integer or zero (no current text) TextArea.Pos will set or return the current cursor position. TextArea.Text = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" TextArea.Pos = 0 TextArea.Insert("bbbbb") TextArea.Select(0, 3) Tex...
by Quincunxian
Monday 11th April 2022 11:30pm
Forum: General
Topic: Newbie query - reading a data file
Replies: 4
Views: 3659

Re: Newbie query - reading a data file

Is this more like reading binary data? If you know the field types of each record then it should be possible to READ the file under Gambas. You may need to do some trial and error to get the field types right but should not be too hard. See: Binary Data Representation (very) rough example of reading...
by Quincunxian
Friday 1st April 2022 11:01pm
Forum: General
Topic: Splitter settings
Replies: 5
Views: 3202

Re: Splitter settings

The Layout parameter is used as a percentage so: Splitter1.Layout[20,80] will give the two child controls the available space based on a percentage calculation. The Splitter1.Settings[0] will equal the actual size of the first child control width being used. Note# I'm using the old HSplit control ( ...