Re: [Gambas-user] Software farm difference between download and install

2017-06-25 Thread PICCORO McKAY Lenz
umm quite xtrange.. so then both are the same? i dont think so.. download will download event if requirements are not fit, install will check requirements.. that its a process that are diferents.. for sure.. lest try Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-25 10:22

Re: [Gambas-user] usage of too much GOTO can be bad pracitce ?

2017-06-25 Thread PICCORO McKAY Lenz
hi T, as example in my client mail, i cannot understand the "*" in the words.. only due i alredy know that are markdown similar.. are emphasis--- due i used console program never check the spell, its my faul.. sorry i always got a Scolding by that-- got corrected but when take me too many time..

Re: [Gambas-user] usage of too much GOTO can be bad pracitce or make influence in the code?

2017-06-25 Thread PICCORO McKAY Lenz
2017-06-25 12:13 GMT-04:30 Tobias Boege : > PICCORO, read this mail at your own risk. I won't accept invoices for > wasting your professional time. > you forgive it the EULA M$ license ;-) Oh wow, that's a high footstool you're sitting on. > well its due there's only one source of A&Q for gambas

Re: [Gambas-user] usage of too much GOTO can be bad pracitce or make influence in the code?

2017-06-25 Thread Jussi Lahtinen
People gave you good correct answers. Gambas is not C, and you cannot fix bad code structure by using goto. Remember that people here are spending quite a lot of time to decrypt your messages to be able to help you. And you don't even bother to use spell checker. Little bit respect towards others.

Re: [Gambas-user] usage of too much GOTO can be bad pracitce or make influence in the code?

2017-06-25 Thread Fernando Cabral
> > On Sun, 25 Jun 2017, PICCORO McKAY Lenz wrote: > > this are poor ilustrated to most of users here in the list due i think > > nobody here know (in experience) code in assemble like me.. > > Lenz, I think you should pay attention to what Tobi has said. Very instructive and comprehensive (althoug

Re: [Gambas-user] usage of too much GOTO can be bad pracitce or make influence in the code?

2017-06-25 Thread Tobias Boege
PICCORO, read this mail at your own risk. I won't accept invoices for wasting your professional time. On Sun, 25 Jun 2017, PICCORO McKAY Lenz wrote: > due to many inconsistence responses i must spend time (again) to > investigating.. > > the problem of goto comes from C to object conversion compi

Re: [Gambas-user] usage of too much GOTO can be bad pracitce ?

2017-06-25 Thread T Lee Davidson
Lenz McKAY Gerardo, Please check your spelling before posting a message to the list. Most email clients have a built-in spell checker. And, it just might help us better understand what you are saying, especially given that English is obviously not your first language. Thanks. -- Lee On 06/

Re: [Gambas-user] usage of too much GOTO can be bad pracitce or make influence in the code?

2017-06-25 Thread Fernando Cabral
2017-06-25 6:31 GMT-03:00 Christof Thalhofer : > > > I never understood the religious cruzification of Goto. > > No doubt you can use a GOTO in a effective and understandable way. Especially if you are just jumping a few lines downwards as you mentioned. But my 40-year long experience with more t

Re: [Gambas-user] Software farm difference between download and install

2017-06-25 Thread Gianluigi
Does not look like this here Both installed and downloaded projects are displayed in the Installed Software menu. Same thing for menu Examples 2017-06-25 15:12 GMT+02:00 PICCORO McKAY Lenz : > download will only put the code at the location in home.. > > install added some extra steps and put by

Re: [Gambas-user] usage of too much GOTO can be bad pracitce ?

2017-06-25 Thread PICCORO McKAY Lenz
niger, please when edited the Subject mantain the original suject.. if users want to automatically response in conversatin any mail from gambas, please disable digest mode and use dary mode.. each mail will coming separatelly this its very usefully for gmail like inbos where each mail are in-conv

Re: [Gambas-user] Software farm difference between download and install

2017-06-25 Thread PICCORO McKAY Lenz
download will only put the code at the location in home.. install added some extra steps and put by example a menu desktop entry Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2017-06-25 8:57 GMT-04:00 Gianluigi : > I apologize if is already been asked, I did not find the answer.

[Gambas-user] Software farm difference between download and install

2017-06-25 Thread Gianluigi
I apologize if is already been asked, I did not find the answer. I not known differences between download and install in Software farm. There are? Regards Gianluigi -- Check out the vibrant tech community on one of the wor

Re: [Gambas-user] usage of too much GOTO can be bad pracitce ?

2017-06-25 Thread Nigel Verity
I don't believe the use of GOTO is bad practice in terms of the efficiency and performance of the program, but its convenience often leads to lazy "spaghetti" code design which, in turn, usually leads to bugs. The use of RETURN is a much tidier way of breaking out of a SUB or FUNCTION, which h

Re: [Gambas-user] usage of too much GOTO can be bad pracitce or make influence in the code?

2017-06-25 Thread PICCORO McKAY Lenz
due to many inconsistence responses i must spend time (again) to investigating.. the problem of goto comes from C to object conversion compilation.. many goto's produce many labels and "jump"'s in assembler code translation when a C program are compling.. so the resulting program will be more slo

Re: [Gambas-user] usage of too much GOTO can be bad pracitce or make influence in the code?

2017-06-25 Thread Christof Thalhofer
Am 22.06.2017 um 16:10 schrieb PICCORO McKAY Lenz: > so i put > > if not isnull() > goto codepiecelabel1 > endif > ' amount of lines > > codepiecelabel1: > ' here the 4000 lines > > > i cannot use a sub procedures due manage some variables I never understood the religious cruzification of