Search found 38 matches

by didier18
Saturday 19th January 2019 2:25pm
Forum: General
Topic: textLabel.Text ... stripping spaces from text
Replies: 5
Views: 7427

Re: textLabel.Text ... stripping spaces from text

Hello

To make a comparison, there is also this possibility:

Code: Select all

Public Sub Form_Open()

  Label1.Caption = "Welcome" & Space(7) & "gambas3"
  TextLabel1.Caption = "Welcome" & "\t" & "gambas3"

End
Have a good day.
by didier18
Sunday 16th December 2018 9:06am
Forum: General
Topic: MySQL & Empty string values
Replies: 3
Views: 5190

Re: MySQL & Empty string values

Hello Quincunxian Except that a null string may not exist, I don't see any difference between a null string and an empty string. On the other hand, an empty string ("") and a string that contains the character chr$(32) (so a string that contains a space like this (" ") is quite d...
by didier18
Tuesday 27th November 2018 5:53pm
Forum: General
Topic: Analien
Replies: 0
Views: 5497

Analien

Hello. (original text click on me) analien = analyse link Usually when installing a.sfs program, the programmer ensures that all dependencies related to the proper functioning of the program are installed at the same time as the program on the PC. But how do you do that if you want to install a prog...
by didier18
Wednesday 10th October 2018 9:03am
Forum: General
Topic: Gambas for Puppy-Linux
Replies: 19
Views: 28293

Re: Gambas for Puppy-Linux

---en--- Hello. A version of gambas3_3.11.4_bionic_amd64.sfs (click on me) is available... As indicated in the file name, this version is compatible with 64Bit bionic puppy-linux distributions such as the Bionicpup64 (click on me) ... Have a good day. ---fr--- Bonjour Une version de gambas3_3.11.4_b...
by didier18
Wednesday 10th October 2018 8:32am
Forum: General
Topic: Tooltip text missing
Replies: 1
Views: 3496

Re: Tooltip text missing

Hello Bill

Wouldn't that be related to the distribution environment?
Here under Mint 18,2 the "Tooltip" works well under Gambas3-3.11.4

Have a good day.
by didier18
Sunday 2nd September 2018 1:24pm
Forum: General
Topic: Gambas for Puppy-Linux
Replies: 19
Views: 28293

Re: Gambas for Puppy-Linux

Hello

The new version of gambas3_3.11.4 in".sfs" format (click on me) is available in 32Bit and 64Bit.

Have a nice day.
by didier18
Wednesday 1st August 2018 1:23pm
Forum: General
Topic: img2key
Replies: 3
Views: 5775

Re: img2key

Hello to all

Here is a version of img2key for Mint 18.2, 18.3 and Mint 19 (click on me).

Thanks to cogier for the precious help he gave me, both in translation, programming and especially his patience for the many tests performed.

I hope this version will be of service to you.

Have a nice day.
by didier18
Saturday 19th May 2018 8:35am
Forum: General
Topic: Portable Gambas Application (on USB)
Replies: 8
Views: 11248

Re: Portable Gambas Application (on USB)

Hello alexchernoff@ if i understand what you want to do, it's create a runtime application, so that it can be executed without gambas3? To make it simple, you need to put all the gambas3 packages that match the components you used in your application + the runtime package + all dependencies and make...
by didier18
Thursday 17th May 2018 2:06pm
Forum: General
Topic: Gambas for Puppy-Linux
Replies: 19
Views: 28293

Re: Gambas for Puppy-Linux

Hello

The new version of gambas3_3.11.2 in".sfs" format (click on me) is available in 32Bit and 64Bit.

Have a nice day.
by didier18
Thursday 17th May 2018 9:43am
Forum: General
Topic: Did you know?
Replies: 91
Views: 405656

Re: Did you know?

Hello Very good idea this "Did you know?" section. initiated by cogier. Thank you. So, did you know? It is possible to compare values, see which routine is called by which routine and optimize its code. To see the execution time of a command, a routine and even a complete program. This too...