Re: [Gambas-user] New domain name for Gambas

2017-09-01 Thread Cristiano Guadagnino
I'd prefer gambashq.org. While g4mbas is indeed funny, I fear it may give
the false impression that Gambas is something childish, not a real mature
product like it is.

Just my 2 euro-cents :-).

Cris


On Fri, Sep 1, 2017 at 10:39 PM, Benoît Minisini via Gambas-user <
gambas-user@lists.sourceforge.net> wrote:

> Hi,
>
> As gambas.{org,net,com...} are all unavailable, I'm thinking about buying
> g4mbas.org (or .net, .com...) as a new domain name for Gambas.
>
> Another solution would be buying gambashq.org or gambas-something.org...
> But I find g4mbas more funny.
>
> What do you think about that, people?
>
> --
> Benoît Minisini
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] how to determine if array its empty

2017-07-01 Thread Cristiano Guadagnino
Thank you Jussi, that's a nice trick I didn't know of!
Actually, I didn't even notice there was an extra "if" in Gianluigi's
example.

Cris

On Sat, Jul 1, 2017 at 3:28 PM, Jussi Lahtinen <jussi.lahti...@gmail.com>
wrote:

> If you add the extra "if", then Gambas will do short-circuit evaluation.
> https://en.wikipedia.org/wiki/Short-circuit_evaluation
>
>
> Jussi
>
>
>
> On Sat, Jul 1, 2017 at 3:08 PM, Cristiano Guadagnino <crigu...@gmail.com>
> wrote:
>
> > Hi Gianluigi!
> >
> > On Sat, Jul 1, 2017 at 12:13 PM, Gianluigi <bagone...@gmail.com> wrote:
> >
> > > or
> > > If IsNull(myArray) Or If myArray.Count = 0 Then Print "Empty"
> > >
> >
> > I have not tried, but I don't think this will work. In an "or" expression
> > you have to evaluate both members, so if myArray is null the
> "myArray.Count
> > = 0" part will generate an out of bounds error.
> >
> > Cris
> > 
> > --
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > ___
> > Gambas-user mailing list
> > Gambas-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> >
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] how to determine if array its empty

2017-07-01 Thread Cristiano Guadagnino
Hi Gianluigi!

On Sat, Jul 1, 2017 at 12:13 PM, Gianluigi  wrote:

> or
> If IsNull(myArray) Or If myArray.Count = 0 Then Print "Empty"
>

I have not tried, but I don't think this will work. In an "or" expression
you have to evaluate both members, so if myArray is null the "myArray.Count
= 0" part will generate an out of bounds error.

Cris
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


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

2017-06-22 Thread Cristiano Guadagnino
Based on your example, I would not find the code using GOTO any more
readable. Quite to the contrary, instead.
And I don't understand why you cannot use a sub. What's the problem with
variables that cannot be solved by passing the needed variables or using
globals?

Anyway, coding style is a matter of taste, so go with what you prefer.
Unless the code needs to be read/perused by others, obviously.

Cris


On Thu, Jun 22, 2017 at 4:10 PM, PICCORO McKAY Lenz 
wrote:

> 2017-06-22 10:00 GMT-04:00 Jussi Lahtinen :
>
> > Usually the problem with goto is that it can render the code hard to
> debug
> > or read.
> >
> AH OK, so in large complex dependences must be avoid..
>
> i only use to avoid a similar to this:
>
> if isnull(value ) then
>' amount of 4000 lines of code
>
> else
>' amount of other lot of lines
> endif
>
> 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
>
>
> >
> >
> > Jussi
> >
> > On Thu, Jun 22, 2017 at 4:21 PM, PICCORO McKAY Lenz <
> > mckaygerh...@gmail.com>
> > wrote:
> >
> > > i have some GOTO to avoit large IF-ELSE code blocks and make readable
> the
> > > code..
> > >
> > > the usage of many GOTO instructions can be bad pracitce or make
> influence
> > > in the code?
> > >
> > > i remenber that in BASIC always tell me "dont use too much"
> > >
> > > of course GAMBAS IS NOT BASIC (umm that sound familiarr... ;-)
> > >
> > >
> > > Lenz McKAY Gerardo (PICCORO)
> > > http://qgqlochekone.blogspot.com
> > > 
> > > --
> > > Check out the vibrant tech community on one of the world's most
> > > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > > ___
> > > Gambas-user mailing list
> > > Gambas-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/gambas-user
> > >
> > 
> > --
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > ___
> > Gambas-user mailing list
> > Gambas-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> >
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] [Gambas Bug Tracker] Bug #1113: ODBC driver problem: driver connects but does not exec query

2017-06-21 Thread Cristiano Guadagnino
This is in no way "bad behavior of the ODBC and SQL standard", nor a
problem of Microsoft. It is standard practice (I have encountered it in ALL
the dbms with which I have been working through the years) that when a SQL
query returns no data the engine return a SQLCODE 100.
Negative SQLCODES always mean some kind of error has happened. Positive
SQLCODES are warnings.
SQLCODE 100 is one such warning, and rightly so. It means: your query has
returned no data. It there was no such warning, who could know if the query
returned no data because there's no data to be returned or because, for
example, you lost connectivity mid-way through the query?
So, SQLCODE 100 is a perfectly legal return code and should be treated as
success, at least if the program logic admits that there could be no data
to return.

Cris



On Wed, Jun 21, 2017 at 4:36 AM,  wrote:

> http://gambaswiki.org/bugtracker/edit?object=BUG.1113=L21haW4-
>
> Comment #13 by PICCORO LENZ MCKAY:
>
> i think your patch are not so "ugly" due relies on the bad behaviour of
> the ODBC and SQL standar, i mean umm jajaja its very confusing that the
> ODBC paper said after a "susessfull sql ddl" return SQL_NO_DATA event
> SQL_SUCCESS, but with M$ behind scenes.. no surprises..
>
> analizing, if the SQL running was successfully and its no a SQL DML must
> retrieve as response SQL_SUCCESS, the problem maybe are on that cases:
>
> UPDATE, DELETE and INSERT does not retrieve any rows, only notifies was
> afected rows.. so return a SQL_NO_DATA, but are DML, so the only case that
> return data its the SELECT case... so we can assume that any other
> statement will no return never some data.. only "affected rows" so for any
> SQL query made, we can assumed SQL_SUCCESS if no problem was happened.. the
> only exception will be SELECT and for those are not usefully due we not
> have proper CURSOR, only a FORWARD ONLY cursor...
>
> due that explanation, i think the only you can do its to assume that
> behaviour of the "ugly patch", so or SQL_SUCCESS or not...
>
>
> as a informative for others, SQL querys can be divided into two parts: The
> Data Manipulation Language (DML) querys and the Data Definition Language
> (DDL) querys
>
> CAUTION: in the stupid mysql and sqlite, the ALTER query has a "afected
> rows" behavior due some info are stored on tables...
>
> EXAMPLES OF SQL DML:
>
> SELECT – this retriebve data always or not
> UPDATE – not retrieve data, only "affected rows"
> DELETE – not retrieve data, only "affected rows"
> INSERT INTO – not retrieve data, only "affected rows"
>
> EXAMPLES OF SQL DDL:
>
> CREATE DATABASE – no any data, only "succesfull or not"
> ALTER DATABASE – no any data, only "succesfull or not"
> CREATE TABLE – no any data, only "succesfull or not"
> ALTER TABLE – no any data, only "succesfull or not"
> DROP TABLE – no any data, only "succesfull or not"
> CREATE INDEX – crea un índice.
> DROP INDEX – borra un índice.
>
> PICCORO LENZ MCKAY changed the state of the bug to: Accepted.
>
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Gambas-Documentation

2017-06-06 Thread Cristiano Guadagnino
I speak both spanish and english, so I can be of help, but my free time is
very limited, so ultimately it depends on the amount of work that needs to
be done.

Cris



   Sent with Mailtrack


On Tue, Jun 6, 2017 at 5:59 PM, Benoît Minisini via Gambas-user <
gambas-user@lists.sourceforge.net> wrote:

> Le 06/06/2017 à 17:54, PICCORO McKAY Lenz a écrit :
>
>> hi benoit, there many issues in gb.db specifically in odbc component, i
>> wish to be fixed in the next release please, thanks in advance
>>
>> currently i can to contribute to the documentation how-to's wiki parts
>> but i cannot write on both languajes, its very tedious for me write
>> english.. so if any could translate from spanish will be usefully
>>
>>
> I don't speak spanish, and your english is often unreadable, so we need
> some help...
>
> --
> Benoît Minisini
>
>
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] odbc a way to know if a sql DDL was susessfully or not?

2017-05-24 Thread Cristiano Guadagnino
PICCORO, the usual way to know if a sql statement succeeded or not is by
checking the sqlcode.
Negative sqlcodes indicate a problem.
Odbc should support returning sqlcodes to the caller.
Can you check if you have any sqlcodes returned to you in the results?
Oh and btw... What's wrong with using a try/catch?

Cris


Il 24 mag 2017 7:35 PM, "PICCORO McKAY Lenz"  ha
scritto:

> umm any idea : how can i know if using odbc a DDL like CREATE or DROP TABLE
> was executed correctly without error , BUT using the result object and not
> a try/catch block!
>
> Lenz McKAY Gerardo (PICCORO)
> http://qgqlochekone.blogspot.com
>
> 2017-05-24 10:07 GMT-04:00 PICCORO McKAY Lenz :
>
> > please pardom me, i explain me better:
> >
> > i mean: how can i know if a DDL like CREATE or DROP TABLE was executed
> > correctly without error , using the result object and not a try/catch
> block!
> >
> > Lenz McKAY Gerardo (PICCORO)
> > http://qgqlochekone.blogspot.com
> >
> > 2017-05-24 9:58 GMT-04:00 Benoît Minisini 
> :
> >
> >> Le 24/05/2017 à 15:47, PICCORO McKAY Lenz a écrit :
> >>
> >>> due the odbc does not provide a record count like mysql does (cos
> >>> provider
> >>> may o nor offer) on every sql query..
> >>>
> >>> how we can know if a DDL sql (i mean a select, a dropt table, or a
> create
> >>> table) was excecuted using the result object and without a try catch
> >>> method?
> >>>
> >>>
> >>> Lenz McKAY Gerardo (PICCORO)
> >>> http://qgqlochekone.blogspot.com
> >>>
> >>
> >> The record count is only for Result objects. So you should not get it
> for
> >> a CREATE or a DROP TABLE statement.
> >>
> >> A record count of -1 means that you have to use the MoveNext() method
> >> until the Available property is False to get each record. Once done,
> then
> >> you know how many records you get.
> >>
> >> I think the reason is that the underlying ODBC driver sends the result
> >> line by line, whereas the others (MySQL, PostgreSQL and SQLite drivers)
> >> send all the lines by default.
> >>
> >> Maybe the ODBC driver should store the entire query result in memory to
> >> simulate a standard Result object when it is internally "move forward"
> only?
> >>
> >> --
> >> Benoît Minisini
> >>
> >
> >
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] result from select can be movefirts from ODBC?

2017-05-17 Thread Cristiano Guadagnino
Hi PICCORO, I am a professional DBA working daily with IBM DB/2, Microsoft
SQL Server, Mysql.

First of all, let me tell you that a big effort is needed to read you
messages, because of your poor english and your writing style. I'm sorry if
I'm a bit blunt, but please... a little effort from you would be very
appreciated.
Anyway, if your native language is spanish I would appreciate if, when
speaking to me, you could add the spanish translation of your sentences...
it would help me understand better. I am italian but I know spanish quite
well.

That said, I fail to see why you're complaining about Mysql. I also fail to
see what mysql has to do with your failed efforts with ODBC. ODBC is a
protocol that tries to help developers by allowing them to "speak" the same
language to any underlying DBMS. ODBC then "translates" to their native
language. That's why ODBC cannot support (or badly supports) features that
are specific to a single DBMS system. Using a native driver, when
available, is absolutely preferred.
If your complaint is due to the fact that the only native implementation
for Gambas is the Mysql one, you have to understand that Mysql (usually in
the form of MariaDB) is available on all linux distributions and it is
free.
One other free DBMS available for all linuxes is Postgresql, but this is
not even nearly as widely used as Mysql. I would not be very surprised if,
in fact, the great majority of Gambas developers were using Mysql. What's
wrong with that?

Finally, a word about your "counting" problem. You never show the query you
need to do on your DBMS, but if you need a record count why don't you
simply issue a "SELECT COUNT(*) ..." on the db? Iterating over all the
records just to get a count doesn't seem like the best move... unless you
also need to do something on each record, obviously. Or am I missing
something?

Best regards
Cris


On Wed, May 17, 2017 at 6:54 PM, PICCORO McKAY Lenz 
wrote:

> tobias, i answered few seconds, yeah the if was in wrong place.. thanks for
> the corrections..
>
> and u dont know that ODBC module in gambas does not implement or have same
> behaviour of the others like sqlite or mysql..
>
> count does not retunrs nothing, max neither so i must implement my own
> count..
>
> seems that mayority gambas develpoers only used mysql? nobody performs on
> mayor scalar DBMS ? oracle, sybase, postgresql?
>
> Lenz McKAY Gerardo (PICCORO)
> http://qgqlochekone.blogspot.com
>
> 2017-05-17 12:32 GMT-04:00 Tobias Boege :
>
> > On Wed, 17 May 2017, PICCORO McKAY Lenz wrote:
> > > i try to filla gridview at demand, so due ODBC limitations i cannot
> count
> > > so inside my bean-like object i count and tehen return properties..
> > >
> > > the problem goes when i try to move to the fitrs record, i implement
> the
> > > code in wrong way? :
> > >
> > > Try resulobj = $conexionodbc.Exec(exisqueryrequest)
> > >
> > >   While (resulobj.Available)
> > >
> > > If resulobj.MoveNext() Then
> > >   resulhowmany = resulhowmany + 1
> > > Else
> > >   Break
> > > Endif
> > >
> > >   Wend
> > >
> > >   resulobj.MoveFirst ' <--- here said that its foward only, that's true
> > if
> > > comes from a simple select ?
> > >
> >
> > I don't understand your last question (and I have no idea about bean-like
> > objects outside of gardening) but according to the Result.MoveNext()
> > documentation [1]:
> >
> >   Returns TRUE if the result is void or if there is no next record.
> >
> > You seem to increment your counter when the move *fails*, which will give
> > you a wrong count. I usually do something like:
> >
> >   ' Modifies the internal Result record pointer!
> >   Private Sub CountResult(hRes As Result) As Integer
> > Dim iCount As Integer
> >
> > If hRes.MoveFirst() Then Return 0
> > iCount = 1
> > While Not hRes.MoveNext()
> >   Inc iCount
> > Wend
> > Return iCount
> >   End
> >
> > Regards,
> > Tobi
> >
> > [1] http://gambaswiki.org/wiki/comp/gb.db/result/movenext
> >
> > --
> > "There's an old saying: Don't change anything... ever!" -- Mr. Monk
> >
> > 
> > --
> > Check out the vibrant tech community on one of the world's most
> > engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> > ___
> > Gambas-user mailing list
> > Gambas-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/gambas-user
> >
> 
> --
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--

Re: [Gambas-user] ​ Re: Keyboard locked -- insisting one more time

2017-05-15 Thread Cristiano Guadagnino
Fernando, did you try setting up a new user on your system and trying to
run gambas as the new user?

Cris



  

Sent with Mailtrack



On Mon, May 15, 2017 at 12:53 PM, Fernando Cabral <
fernandojosecab...@gmail.com> wrote:

> Gláucio
>
> I see our systems and environment are quite similar, although not exactly
> the same. Have you installed something different that might have changed
> the IDE behavior? If I have, I have not been able to determine what it
> could be. What I know for sure is that one moment everything was working,
> next moment it was not anymore. What happened in-between, I can not figure
> out.
>
> Now, after running gambas as superuser ("sudo gambas3") I have given up the
> keyboard hypothesis (at least for now). I went back to the hypothesis that
> it has to do with some file or directory permission. Nevertheless, I have
> not been able to determine which file or directory it could be. As to the
> project tree, I have opened it up completely (rwxrwxrwx for the directories
> and at least rw-rw-rw- for the files. Even for the hidden ones.  It did not
> help.
>
> I have also searched for every single file and directory related to gambas.
> For this I used searches like "locate -i --regex .*gambas.*" and "gbr3" and
> "gbx3", etc. Saved the results to a file and checked file and directory
> permissions. I could not find and thing unexpected.
>
> I have exhausted my bag of tricks so I have resorted to either of two ugly
> workarounds:  running gambas as superuser or doing the edition in a virtual
> machine. In the last option, I just mount the project tree as a directory
> in the virtual machine. Then I make the changes in the virtual machine and
> test them in the real machine. Cumbersome, but has worked.
> I would ask you to try running "sudo gambas3". If you can edit your files
> as superuser, then it will be very likely that we have exactly the same
> problem.
>
> Saudações
>
> - fernando
>
> 2017-05-14 18:19 GMT-03:00 Glaucio Araujo :
>
> > Hi,
> >
> > I'm having exactly the same problem here in Xubuntu 17.04 with Gambas
> 3.9.1
> > and 3.9.2(PPA).
> >
> >
> > ​My system information:
> >
> > [System]
> > Gambas=3.9.2
> > OperatingSystem=Linux
> > Kernel=4.10.0-20-generic
> > Architecture=x86_64
> > Distribution=Ubuntu 17.04
> > Desktop=XFCE
> > Theme=Gtk
> > Language=pt_BR.UTF-8
> > Memory=3829M
> >
> > [Libraries]
> > Cairo=libcairo.so.2.11400.8
> > Curl=libcurl.so.4.4.0
> > DBus=libdbus-1.so.3.14.7
> > GStreamer=libgstreamer-1.0.so.0.1004.0
> > GTK+2=libgtk-x11-2.0.so.0.2400.31
> > GTK+3=libgtk-3.so.0.2200.11
> > OpenGL=libGL.so.1.2.0
> > Poppler=libpoppler.so.64.0.0
> > QT4=libQtCore.so.4.8.7
> > QT5=libQt5Core.so.5.7.1
> > SDL=libSDL-1.2.so.0.11.4
> > SQLite=libsqlite3.so.0.8.6
> >
> > [Environment]
> > CLUTTER_BACKEND=x11
> > DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
> > DEFAULTS_PATH=/usr/share/gconf/xubuntu.default.path
> > DERBY_HOME=/usr/lib/jvm/java-8-oracle/db
> > DESKTOP_SESSION=xubuntu
> > DISPLAY=:0.0
> > GB_GUI=gb.qt4
> > GDMSESSION=xubuntu
> > GLADE_CATALOG_PATH=:
> > GLADE_MODULE_PATH=:
> > GLADE_PIXMAP_PATH=:
> > GTK_MODULES=gail:atk-bridge
> > GTK_OVERLAY_SCROLLING=0
> > HOME=
> > J2REDIR=/usr/lib/jvm/java-8-oracle/jre
> > J2SDKDIR=/usr/lib/jvm/java-8-oracle
> > JAVA_HOME=/usr/lib/jvm/java-8-oracle
> > JOURNAL_STREAM=8:23426
> > LANG=pt_BR.UTF-8
> > LANGUAGE=pt_BR:pt:en
> > LOGNAME=
> > MANDATORY_PATH=/usr/share/gconf/xubuntu.mandatory.path
> > PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/
> > sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/
> > lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/
> > bin:/usr/lib/jvm/java-8-oracle/jre/bin
> > PWD=
> > QT_ACCESSIBILITY=1
> > QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1
> > QT_QPA_PLATFORMTHEME=gtk2
> > SESSION_MANAGER=local/:@/tmp/.ICE-unix/
> > 1227,unix/:/tmp/.ICE-unix/1227
> > SHELL=/bin/bash
> > SHLVL=0
> > SSH_AGENT_PID=1209
> > SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
> > TZ=:/etc/localtime
> > USER=
> > USERNAME=
> > WINDOWPATH=1
> > XAUTHORITY=/run/user/1000/gdm/Xauthority
> > XDG_CONFIG_DIRS=/etc/xdg/xdg-xubuntu:/etc/xdg:/etc/xdg
> > XDG_CURRENT_DESKTOP=XFCE
> > XDG_DATA_DIRS=/usr/share/xubuntu:/usr/share/xfce4:<
> > home>/.local/share/flatpak/exports/share/:/var/lib/
> > flatpak/exports/share/:/usr/local/share/:/usr/share/:/var/
> > lib/snapd/desktop:/usr/share
> > XDG_MENU_PREFIX=xfce-
> > XDG_RUNTIME_DIR=/run/user/1000
> > XDG_SEAT=seat0
> > XDG_SESSION_DESKTOP=xubuntu
> > XDG_SESSION_ID=1
> > XDG_SESSION_TYPE=x11
> > XDG_VTNR=1
> > _JAVA_OPTIONS=-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true
> > -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel​
> >
> >
> > ---
> >
> > Gláucio de Araujo
> >
> > Mail : glaucio.de.ara...@gmail.com
> > TIM  : (11) 95900-7801 (WhatsApp / Telegram)
> >
> >
> >
> >
> > > Thank you, Tobi for your patience 

Re: [Gambas-user] to all SuSE users

2016-09-21 Thread Cristiano Guadagnino
For Tumbleweed, kdesu is in the standard repos, while kdesudo is not
availbale in any of the repos I have mapped.

Cris




On Wed, Sep 21, 2016 at 2:54 AM, T Lee Davidson 
wrote:

> For Leap 42.1, kdesu is in the standard repository and kdesudo is not.
> However, kdesudo is available via a non-standard repository.
>
>
> On 09/20/2016 04:53 PM, Karl Reinl wrote:
> > Salut,
> >
> > tests on a freshly updated SuSE, to check Desktop.RunAsRoot from
> > gb.desktop shows that SuSE has no kdesudo, but uses kdesu instead.
> > Can anybody confirm that, or do I have a wired installation.
> >
> > thanks in advanced
> >
>
> --
> Lee
> __
>
> "Artificial Intelligence is no match for natural stupidity."
>
> 
> --
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
>
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user