Search found 173 matches

by Quincunxian
Monday 19th December 2022 10:54pm
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11898

Re: 3D Models Viewer

Thanks Martin.
I'll give it a try and see where I get to.
by Quincunxian
Monday 19th December 2022 1:22am
Forum: General
Topic: Did you know?
Replies: 91
Views: 410339

Re: Did you know?

Curious: I wonder if the IIf is somehow different or a duplication of function?
TestStr = IIf(X = Y, "Yes", "No")

I tend to use this to convert Boolean values to string when reading data and displaying for a specific view control.
by Quincunxian
Sunday 18th December 2022 1:09am
Forum: Project showcase
Topic: 3D Models Viewer
Replies: 12
Views: 11898

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: 5424

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: 11898

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: 5424

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: 11898

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: 790

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: 1591

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: 1282

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...