From t.lee.davidson at ...626... Fri Apr 1 02:19:33 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Thu, 31 Mar 2016 20:19:33 -0400 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: <56FCC9E5.7070103@...174...> References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> <56FCC9E5.7070103@...174...> Message-ID: <56FDBE95.3030703@...626...> Thank you, Frank. That is an interesting example. It uses an array of variant arrays as the underlying data-store similar to what I had done in the past with objects. And, they extend Object[] with a custom sort routine. Neat. On 03/31/2016 02:55 AM, Frank wrote: > Hi TLD, I found something that might help: > > I have put the whole code here but the bit you talk about start at line 76. > > found it here:http://gambas-buch.de/dw/doku.php?id=k17:k17.7:k17.7.4:start -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From t.lee.davidson at ...626... Fri Apr 1 02:21:12 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Thu, 31 Mar 2016 20:21:12 -0400 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> Message-ID: <56FDBEF8.80800@...626...> That's exactly what I needed, Gianluigi. Thank you. It works well even preserving distinct rows with duplicate key values. I added a few comments to your code and added it as an example to http://gambaswiki.org/wiki/comp/gb.qt4/gridview/sorted. (I hope that's okay with you. If not, please let me know and I'll modify or remove it.) -- Lee __________ "Artificial Intelligence is no match for natural stupidity." On 03/31/2016 04:51 AM, Gianluigi wrote: > Without using the database, have taught me so: > > Public Sub TableView1_Sort() > Dim Values, ValueSorted As New String[] > Dim Nx, iNx As Integer > Dim tmp As String > > For Nx = 0 To TableView1.Rows.Max > Values.Add(TableView1[Nx, TableView1.Columns.Sort].Text) > Next > ValueSorted = Values.Copy() > ValueSorted.Sort(TableView1.Columns.Ascending) > For Nx = 0 To ValueSorted.Max > For iNx = 0 To TableView1.Columns.Max > Swap TableView1[Nx, iNx].Text, > TableView1[Values.Find(ValueSorted[Nx], 0, Nx), iNx].Text > Next > Values.Clear() > For iNx = 0 To TableView1.Rows.Max > Values.Add(TableView1[iNx, TableView1.Columns.Sort].Text) > Next > Next > TableView1.Refresh() > End > > Regards > Gianluigi From bagonergi at ...626... Fri Apr 1 10:32:29 2016 From: bagonergi at ...626... (Gianluigi) Date: Fri, 1 Apr 2016 10:32:29 +0200 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: <56FDBEF8.80800@...626...> References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> <56FDBEF8.80800@...626...> Message-ID: Hello Lee, thank you (also from my teacher Milio :-) ), all is a perfect explanation. Regards Gianluigi 2016-04-01 2:21 GMT+02:00 T Lee Davidson : > That's exactly what I needed, Gianluigi. Thank you. > > It works well even preserving distinct rows with duplicate key values. > > I added a few comments to your code and added it as an example to > http://gambaswiki.org/wiki/comp/gb.qt4/gridview/sorted. (I > hope that's okay with you. If not, please let me know and I'll modify or > remove it.) > > > -- > Lee > __________ > > "Artificial Intelligence is no match for natural stupidity." > > > On 03/31/2016 04:51 AM, Gianluigi wrote: > > Without using the database, have taught me so: > > > > Public Sub TableView1_Sort() > > Dim Values, ValueSorted As New String[] > > Dim Nx, iNx As Integer > > Dim tmp As String > > > > For Nx = 0 To TableView1.Rows.Max > > Values.Add(TableView1[Nx, TableView1.Columns.Sort].Text) > > Next > > ValueSorted = Values.Copy() > > ValueSorted.Sort(TableView1.Columns.Ascending) > > For Nx = 0 To ValueSorted.Max > > For iNx = 0 To TableView1.Columns.Max > > Swap TableView1[Nx, iNx].Text, > > TableView1[Values.Find(ValueSorted[Nx], 0, Nx), iNx].Text > > Next > > Values.Clear() > > For iNx = 0 To TableView1.Rows.Max > > Values.Add(TableView1[iNx, TableView1.Columns.Sort].Text) > > Next > > Next > > TableView1.Refresh() > > End > > > > Regards > > Gianluigi > > > ------------------------------------------------------------------------------ > Transform Data into Opportunity. > Accelerate data analysis in your applications with > Intel Data Analytics Acceleration Library. > Click to learn more. > http://pubads.g.doubleclick.net/gampad/clk?id=278785471&iu=/4140 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bugtracker at ...3416... Sat Apr 2 18:56:39 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 02 Apr 2016 16:56:39 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #908: Compilation error - QT5 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.908&from=L21haW4- Comment #8 by Fabien BODARD: UUUUP !!! I can't compile new installations From bugtracker at ...3416... Sun Apr 3 13:41:10 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sun, 03 Apr 2016 11:41:10 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #908: Compilation error - QT5 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.908&from=L21haW4- Comment #9 by Beno?t MINISINI: Is it better with revision #7715? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From markus.schatten at ...2005... Sun Apr 3 15:00:19 2016 From: markus.schatten at ...2005... (Markus Schatten) Date: Sun, 3 Apr 2016 15:00:19 +0200 Subject: [Gambas-user] Gambas apps on Launchpad PPA? Message-ID: Dear friends, does anyone have experience with uploading software written in Gambad to Launchpad PPA? I was able to find this answer: http://askubuntu.com/questions/325151/how-to-upload-software-written-in-gambas-into-a-launchpad-ppa which says that the build environment should be specified as a dependency, so it *should* work. Has anyone tried that, e.g. does it work? All the best, M. -- -- Markus Schatten, PhD Assistant professor and head of Artificial Intelligence Lab University of Zagreb Faculty of Organization and Informatics Pavlinska 2, 42000 Varazdin, Croatia http://www.foi.hr/nastavnici/schatten.markus/index.html http://www.researchgate.net/profile/Markus_Schatten1 http://ai.foi.hr From bugtracker at ...3416... Sun Apr 3 16:57:31 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sun, 03 Apr 2016 14:57:31 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #908: Compilation error - QT5 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.908&from=L21haW4- Comment #10 by Fabien BODARD: Hes thank you Fabien BODARD changed the state of the bug to: Fixed. From sebikul at ...626... Sun Apr 3 18:10:39 2016 From: sebikul at ...626... (Sebastian Kulesz) Date: Sun, 03 Apr 2016 16:10:39 +0000 Subject: [Gambas-user] Gambas apps on Launchpad PPA? In-Reply-To: References: Message-ID: You can use this [0] project of mine as an example. All you need to do is set the stable ppa as a dependency, and upload a source package with a Debian/ folder similar to the one the project has. Remember to include a makefile too, you can find and example there as well. [0] https://github.com/sebikul/mundus On Sun, Apr 3, 2016, 10:02 Markus Schatten wrote: > Dear friends, > > does anyone have experience with uploading software written in Gambad to > Launchpad PPA? > > I was able to find this answer: > > > http://askubuntu.com/questions/325151/how-to-upload-software-written-in-gambas-into-a-launchpad-ppa > > which says that the build environment should be specified as a dependency, > so it *should* work. Has anyone tried that, e.g. does it work? > > All the best, > > M. > > > -- > -- > Markus Schatten, PhD > Assistant professor and head of Artificial Intelligence Lab > University of Zagreb > Faculty of Organization and Informatics > Pavlinska 2, 42000 Varazdin, Croatia > http://www.foi.hr/nastavnici/schatten.markus/index.html > http://www.researchgate.net/profile/Markus_Schatten1 > http://ai.foi.hr > > ------------------------------------------------------------------------------ > Transform Data into Opportunity. > Accelerate data analysis in your applications with > Intel Data Analytics Acceleration Library. > Click to learn more. > http://pubads.g.doubleclick.net/gampad/clk?id=278785471&iu=/4140 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bugtracker at ...3416... Sun Apr 3 18:29:18 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sun, 03 Apr 2016 16:29:18 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #908: Compilation error - QT5 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.908&from=L21haW4- Comment #11 by Fabien BODARD: I've spoken too soon CXX gb_qt5_la-CCheckBox.lo CXX gb_qt5_la-CFrame_moc.lo CXX gb_qt5_la-CFrame.lo CXX gb_qt5_la-CPanel.lo In file included from CPanel.cpp:29:0: /usr/include/qt/QtCore/qsharedpointer_impl.h: Dans la fonction membre ?bool QWeakPointer::isNull() const?: ../gambas.h:70:27: erreur?: ISO C++ interdit la comparaison entre un pointeur et un entier [-fpermissive] #define NULL ((intptr_t)0) ^ /usr/include/qt/QtCore/qcompilerdetection.h:985:28: note?: in expansion of macro ?NULL? # define Q_NULLPTR NULL ^ /usr/include/qt/QtCore/qsharedpointer_impl.h:594:46: note?: in expansion of macro ?Q_NULLPTR? inline bool isNull() const { return d == Q_NULLPTR || d->strongref.load() == 0 || value == Q_NULLPTR; } ^ /usr/include/qt/QtCore/qsharedpointer_impl.h: Dans la fonction membre ?T* QWeakPointer::data() const?: ../gambas.h:70:27: erreur?: ISO C++ interdit la comparaison entre un pointeur et un entier [-fpermissive] #define NULL ((intptr_t)0) ^ /usr/include/qt/QtCore/qcompilerdetection.h:985:28: note?: in expansion of macro ?NULL? # define Q_NULLPTR NULL ^ /usr/include/qt/QtCore/qsharedpointer_impl.h:597:42: note?: in expansion of macro ?Q_NULLPTR? inline T *data() const { return d == Q_NULLPTR || d->strongref.load() == 0 ? Q_NULLPTR : value; } ^ Makefile:982?: la recette pour la cible ??gb_qt5_la-CPanel.lo?? a ?chou?e make[3]: *** [gb_qt5_la-CPanel.lo] Erreur 1 make[3]?: on quitte le r?pertoire ??/home/fabien/Documents/Developpement/gambas/trunk/gb.qt5/src?? Makefile:1330?: la recette pour la cible ??install-recursive?? a ?chou?e make[2]: *** [install-recursive] Erreur 1 make[2]?: on quitte le r?pertoire ??/home/fabien/Documents/Developpement/gambas/trunk/gb.qt5/src?? Makefile:448?: la recette pour la cible ??install-recursive?? a ?chou?e make[1]: *** [install-recursive] Erreur 1 make[1]?: on quitte le r?pertoire ??/home/fabien/Documents/Developpement/gambas/trunk/gb.qt5?? Makefile:438?: la recette pour la cible ??install-recursive?? a ?chou?e make: *** [install-recursive] Erreur 1 [fabien at ...3590... gambas]$ Fabien BODARD changed the state of the bug to: Opened. From markus.schatten at ...2005... Sun Apr 3 19:52:56 2016 From: markus.schatten at ...2005... (Markus Schatten) Date: Sun, 3 Apr 2016 19:52:56 +0200 Subject: [Gambas-user] Gambas apps on Launchpad PPA? In-Reply-To: References: Message-ID: Dear Sebastian, thank you a lot! This is exactly what I was looking for! All the best, M. On Sunday, April 3, 2016, Sebastian Kulesz wrote: > You can use this [0] project of mine as an example. All you need to do is > set the stable ppa as a dependency, and upload a source package with a > Debian/ folder similar to the one the project has. > Remember to include a makefile too, you can find and example there as well. > > [0] https://github.com/sebikul/mundus > > On Sun, Apr 3, 2016, 10:02 Markus Schatten > wrote: > > > Dear friends, > > > > does anyone have experience with uploading software written in Gambad to > > Launchpad PPA? > > > > I was able to find this answer: > > > > > > > http://askubuntu.com/questions/325151/how-to-upload-software-written-in-gambas-into-a-launchpad-ppa > > > > which says that the build environment should be specified as a > dependency, > > so it *should* work. Has anyone tried that, e.g. does it work? > > > > All the best, > > > > M. > > > > > > -- > > -- > > Markus Schatten, PhD > > Assistant professor and head of Artificial Intelligence Lab > > University of Zagreb > > Faculty of Organization and Informatics > > Pavlinska 2, 42000 Varazdin, Croatia > > http://www.foi.hr/nastavnici/schatten.markus/index.html > > http://www.researchgate.net/profile/Markus_Schatten1 > > http://ai.foi.hr > > > > > ------------------------------------------------------------------------------ > > Transform Data into Opportunity. > > Accelerate data analysis in your applications with > > Intel Data Analytics Acceleration Library. > > Click to learn more. > > http://pubads.g.doubleclick.net/gampad/clk?id=278785471&iu=/4140 > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Transform Data into Opportunity. > Accelerate data analysis in your applications with > Intel Data Analytics Acceleration Library. > Click to learn more. > http://pubads.g.doubleclick.net/gampad/clk?id=278785471&iu=/4140 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- -- Markus Schatten, PhD Assistant professor and head of Artificial Intelligence Lab University of Zagreb Faculty of Organization and Informatics Pavlinska 2, 42000 Varazdin, Croatia http://www.foi.hr/nastavnici/schatten.markus/index.html http://www.researchgate.net/profile/Markus_Schatten1 http://ai.foi.hr From bagonergi at ...626... Tue Apr 5 16:17:40 2016 From: bagonergi at ...626... (Gianluigi) Date: Tue, 5 Apr 2016 16:17:40 +0200 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> <56FDBEF8.80800@...626...> Message-ID: Hello Lee, Milio propose this change to avoid the arrows appear upside than sorting. Instead of: ValueSorted.Sort(GridView1.Columns.Ascending) this code: If GridView1.Columns.Ascending Then ValueSorted.Sort(gb.Ascent) Else ValueSorted.Sort(gb.Descent) Endif Regards Gianluigi 2016-04-01 10:32 GMT+02:00 Gianluigi : > Hello Lee, > thank you (also from my teacher Milio :-) ), all is a perfect explanation. > > Regards > Gianluigi > > 2016-04-01 2:21 GMT+02:00 T Lee Davidson : > >> That's exactly what I needed, Gianluigi. Thank you. >> >> It works well even preserving distinct rows with duplicate key values. >> >> I added a few comments to your code and added it as an example to >> http://gambaswiki.org/wiki/comp/gb.qt4/gridview/sorted. (I >> hope that's okay with you. If not, please let me know and I'll modify or >> remove it.) >> >> >> -- >> Lee >> __________ >> >> "Artificial Intelligence is no match for natural stupidity." >> >> >> On 03/31/2016 04:51 AM, Gianluigi wrote: >> > Without using the database, have taught me so: >> > >> > Public Sub TableView1_Sort() >> > Dim Values, ValueSorted As New String[] >> > Dim Nx, iNx As Integer >> > Dim tmp As String >> > >> > For Nx = 0 To TableView1.Rows.Max >> > Values.Add(TableView1[Nx, TableView1.Columns.Sort].Text) >> > Next >> > ValueSorted = Values.Copy() >> > ValueSorted.Sort(TableView1.Columns.Ascending) >> > For Nx = 0 To ValueSorted.Max >> > For iNx = 0 To TableView1.Columns.Max >> > Swap TableView1[Nx, iNx].Text, >> > TableView1[Values.Find(ValueSorted[Nx], 0, Nx), iNx].Text >> > Next >> > Values.Clear() >> > For iNx = 0 To TableView1.Rows.Max >> > Values.Add(TableView1[iNx, TableView1.Columns.Sort].Text) >> > Next >> > Next >> > TableView1.Refresh() >> > End >> > >> > Regards >> > Gianluigi >> >> >> ------------------------------------------------------------------------------ >> Transform Data into Opportunity. >> Accelerate data analysis in your applications with >> Intel Data Analytics Acceleration Library. >> Click to learn more. >> http://pubads.g.doubleclick.net/gampad/clk?id=278785471&iu=/4140 >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > > From t.lee.davidson at ...626... Tue Apr 5 20:11:35 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Tue, 5 Apr 2016 14:11:35 -0400 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> <56FDBEF8.80800@...626...> Message-ID: <5703FFD7.8030806@...626...> Yes, I agree since the Mode for String[].Sort is integer and GridView.Columns.Ascending is boolean. But, how about this? ValueSorted.Sort(IIf(TableView1.Columns.Ascending, gb.Ascent, gb.Descent)) On 04/05/2016 10:17 AM, Gianluigi wrote: > Hello Lee, > Milio propose this change to avoid the arrows appear upside than sorting. > Instead of: > ValueSorted.Sort(GridView1.Columns.Ascending) > this code: > If GridView1.Columns.Ascending Then > ValueSorted.Sort(gb.Ascent) > Else > ValueSorted.Sort(gb.Descent) > Endif > Regards > Gianluigi > -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From matti.eber at ...3240... Tue Apr 5 21:17:50 2016 From: matti.eber at ...3240... (Matti) Date: Tue, 5 Apr 2016 21:17:50 +0200 Subject: [Gambas-user] Gambas mime type Message-ID: <57040F5E.2010505@...3240...> Unfortunately, I have to set up my system (openSUSE 42.1) completely new. I installed Gambas 3.8.4 from http://download.opensuse.org/repositories/Education/openSUSE_Leap_42.1/, and it runs ok as it did before. But the packager seems to have made a mistake, as *.gambas files are regarded as plain text documents and won't start by clicking on them. So, does anyone know how to make KDE run *.gambas files automatically? I only found http://gambaswiki.org/wiki/howto/autorun, which is very old (gbr2). I have a file /usr/share/applications/gambas3.desktop with the content [Desktop Entry] Categories=Development;IDE; Type=Application StartupNotify=true Terminal=false Encoding=UTF-8 Exec=gambas3.gambas Name=Gambas3 Icon=gambas3 GenericName=Basic Development Environment 3 GenericName[de]=Visual Basic ?hnliche Entwicklungsumgebung 3 Comment=Visual Basic like Development Environment 3 Comment[de]=Eine Visual Basic ?hnliche Entwicklungsumgebung 3 And a file /usr/share/mimelnk/application/x-gambas3.desktop with the content [Desktop Entry] Type=MimeType MimeType=application/x-gambasscript Patterns=*.g;*.G Icon=x-gambasscript Hidden=false X-KDE-IsAlso=text/plain Comment=Gambas Document Comment[af]=Gambas Dokument ... #SUSE-Overwrite Comment[sr at ...3592...]=Gambas dokument ... X-SuSE-translate=false Anybody an idea what to do? Thanks, Matti From bagonergi at ...626... Tue Apr 5 21:51:58 2016 From: bagonergi at ...626... (Gianluigi) Date: Tue, 5 Apr 2016 21:51:58 +0200 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: <5703FFD7.8030806@...626...> References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> <56FDBEF8.80800@...626...> <5703FFD7.8030806@...626...> Message-ID: OK is the same 2016-04-05 20:11 GMT+02:00 T Lee Davidson : > Yes, I agree since the Mode for String[].Sort is integer and > GridView.Columns.Ascending is boolean. > > But, how about this? > ValueSorted.Sort(IIf(TableView1.Columns.Ascending, gb.Ascent, gb.Descent)) > > > On 04/05/2016 10:17 AM, Gianluigi wrote: > > Hello Lee, > > Milio propose this change to avoid the arrows appear upside than sorting. > > Instead of: > > ValueSorted.Sort(GridView1.Columns.Ascending) > > this code: > > If GridView1.Columns.Ascending Then > > ValueSorted.Sort(gb.Ascent) > > Else > > ValueSorted.Sort(gb.Descent) > > Endif > > Regards > > Gianluigi > > > > -- > Lee > __________ > > "Artificial Intelligence is no match for natural stupidity." > > > ------------------------------------------------------------------------------ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bagonergi at ...626... Tue Apr 5 22:15:37 2016 From: bagonergi at ...626... (Gianluigi) Date: Tue, 5 Apr 2016 22:15:37 +0200 Subject: [Gambas-user] Gambas mime type In-Reply-To: <57040F5E.2010505@...3240...> References: <57040F5E.2010505@...3240...> Message-ID: Here you have watched? http://gambas.8142.n7.nabble.com/gambas3-broken-after-opensuse-13-1-upgrade-td47482.html http://gambas.8142.n7.nabble.com/How-to-overcome-Bytecode-too-recent-Please-upgrade-Gambas-td46081.html Regards Gianluigi 2016-04-05 21:17 GMT+02:00 Matti : > Unfortunately, I have to set up my system (openSUSE 42.1) completely new. > I installed Gambas 3.8.4 from > http://download.opensuse.org/repositories/Education/openSUSE_Leap_42.1/, > and it runs ok as it did before. > > But the packager seems to have made a mistake, as *.gambas files are > regarded as plain text documents and won't start by clicking on them. > > So, does anyone know how to make KDE run *.gambas files automatically? > I only found http://gambaswiki.org/wiki/howto/autorun, which is very old > (gbr2). > > I have a file /usr/share/applications/gambas3.desktop with the content > [Desktop Entry] > Categories=Development;IDE; > Type=Application > StartupNotify=true > Terminal=false > Encoding=UTF-8 > Exec=gambas3.gambas > Name=Gambas3 > Icon=gambas3 > GenericName=Basic Development Environment 3 > GenericName[de]=Visual Basic ?hnliche Entwicklungsumgebung 3 > Comment=Visual Basic like Development Environment 3 > Comment[de]=Eine Visual Basic ?hnliche Entwicklungsumgebung 3 > > And a file /usr/share/mimelnk/application/x-gambas3.desktop with the > content > [Desktop Entry] > Type=MimeType > MimeType=application/x-gambasscript > Patterns=*.g;*.G > Icon=x-gambasscript > Hidden=false > X-KDE-IsAlso=text/plain > Comment=Gambas Document > Comment[af]=Gambas Dokument > ... > #SUSE-Overwrite Comment[sr at ...3592...]=Gambas dokument > ... > X-SuSE-translate=false > > Anybody an idea what to do? > Thanks, Matti > > > ------------------------------------------------------------------------------ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bagonergi at ...626... Tue Apr 5 22:46:44 2016 From: bagonergi at ...626... (Gianluigi) Date: Tue, 5 Apr 2016 22:46:44 +0200 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: <5703FFD7.8030806@...626...> References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> <56FDBEF8.80800@...626...> <5703FFD7.8030806@...626...> Message-ID: Lee look what you made a mistake: (no TableView1 but GridView1) ValueSorted.Sort(IIf(GridView1.Columns.Ascending, gb.Ascent, gb.Descent)) Ciao Gianluigi 2016-04-05 20:11 GMT+02:00 T Lee Davidson : > Yes, I agree since the Mode for String[].Sort is integer and > GridView.Columns.Ascending is boolean. > > But, how about this? > ValueSorted.Sort(IIf(TableView1.Columns.Ascending, gb.Ascent, gb.Descent)) > > > On 04/05/2016 10:17 AM, Gianluigi wrote: > > Hello Lee, > > Milio propose this change to avoid the arrows appear upside than sorting. > > Instead of: > > ValueSorted.Sort(GridView1.Columns.Ascending) > > this code: > > If GridView1.Columns.Ascending Then > > ValueSorted.Sort(gb.Ascent) > > Else > > ValueSorted.Sort(gb.Descent) > > Endif > > Regards > > Gianluigi > > > > -- > Lee > __________ > > "Artificial Intelligence is no match for natural stupidity." > > > ------------------------------------------------------------------------------ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From t.lee.davidson at ...626... Wed Apr 6 03:03:15 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Tue, 5 Apr 2016 21:03:15 -0400 Subject: [Gambas-user] How to sort a TableView? In-Reply-To: References: <56FC3498.7050108@...626...> <56FC7052.4020502@...626...> <56FDBEF8.80800@...626...> <5703FFD7.8030806@...626...> Message-ID: <57046053.1000807@...626...> Oops. Good catch. Thank you for pointing that out. Fixed. On 04/05/2016 04:46 PM, Gianluigi wrote: > Lee look what you made a mistake: > (no TableView1 but GridView1) > ValueSorted.Sort(IIf(GridView1.Columns.Ascending, gb.Ascent, gb.Descent)) > > Ciao > Gianluigi -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From t.lee.davidson at ...626... Wed Apr 6 03:47:38 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Tue, 5 Apr 2016 21:47:38 -0400 Subject: [Gambas-user] Gambas mime type In-Reply-To: <57040F5E.2010505@...3240...> References: <57040F5E.2010505@...3240...> Message-ID: <57046ABA.80500@...626...> On 04/05/2016 03:17 PM, Matti wrote: > Unfortunately, I have to set up my system (openSUSE 42.1) completely new. > I installed Gambas 3.8.4 fromhttp://download.opensuse.org/repositories/Education/openSUSE_Leap_42.1/, and it runs ok as it did before. > > But the packager seems to have made a mistake, as *.gambas files are regarded as plain text documents and won't start by clicking on them. > > So, does anyone know how to make KDE run *.gambas files automatically? Matti, I think the mistake in "/usr/share/mimelnk/application/x-gambas3.desktop" is the Patterns being set to "*.g;*.G". I tried correcting that to "*.gambas;*.Gambas" on my system. But, I got impatient and didn't want bother seeing if a reboot would cause the new pattern to be picked up. Here's a quick fix. Ensure that you have a file "~/.local/share/applications/gbr3.desktop" with the content: [Desktop Entry] Exec=/usr/bin/gbr3 MimeType=application/gambas; Name=gbr3 NoDisplay=true Type=Application (It can sometimes take a minute or so for the system to recognize changes in "~/.local/share/applications".) Then go to System Settings -> Applications -> File Associations. Search for "gambas". It should be: Filename patterns: *.gambas Description: application/gambas Application Preference Order: gbr3 If it's not there, add it. -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From bugtracker at ...3416... Wed Apr 6 13:18:49 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 06 Apr 2016 11:18:49 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4- Tobias BOEGE reported a new bug. Summary ------- Segfault with Subst$(), IIf() and Null Type : Bug Priority : Medium Gambas version : 3.8.90 (TRUNK) Product : Unknown Description ----------- Code such as Print Subst$("&1", IIf(False, "x", "")) results in a segfault on my system. It is crucial that there is an IIf() inside a Subst$() evaluation and that the IIf() evaluates to Null, or the empty string for that matter. The segfault occurs in STRING_subst(): #0 STRING_subst (str=, len=4, get_param=get_param at ...2861...=0x4118cb ) at gbx_string.c:707 #1 0x0000000000412411 in SUBR_subst (code=) at gbx_subr_string.c:584 #2 0x000000000043d28b in EXEC_loop () at gbx_exec_loop.c:514 Let me know if debugging symbols are required. From bugtracker at ...3416... Wed Apr 6 13:18:56 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 06 Apr 2016 11:18:56 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4- Tobias BOEGE added an attachment: subst-iif-segfault-0.0.1.tar.gz From abbat.81 at ...787... Wed Apr 6 13:56:46 2016 From: abbat.81 at ...787... (abbat81) Date: Wed, 6 Apr 2016 04:56:46 -0700 (MST) Subject: [Gambas-user] Error message in 1 line PLEASE FIX IT ! Message-ID: <1459943806918-55850.post@...3046...> Many times i got red errror messages in one line which can't be read because it hides behind resolution of screen. I think it't time to fix it -- View this message in context: http://gambas.8142.n7.nabble.com/Error-message-in-1-line-PLEASE-FIX-IT-tp55850.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Wed Apr 6 15:04:18 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 6 Apr 2016 15:04:18 +0200 Subject: [Gambas-user] Error message in 1 line PLEASE FIX IT ! In-Reply-To: <1459943806918-55850.post@...3046...> References: <1459943806918-55850.post@...3046...> Message-ID: <57050952.1080404@...1...> Le 06/04/2016 13:56, abbat81 a ?crit : > Many times i got red errror messages in one line which can't be read because > it hides behind resolution of screen. > > I think it't time to fix it > I don't understand what you mean. Do you have a screenshot? -- Beno?t Minisini From bugtracker at ...3416... Wed Apr 6 15:12:43 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 06 Apr 2016 13:12:43 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at ...3416... Wed Apr 6 15:15:24 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 06 Apr 2016 13:15:24 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4- Comment #1 by Beno?t MINISINI: IIf() does not matter there. Subst$("&1", "") crashes the same way. From bugtracker at ...3416... Wed Apr 6 15:19:38 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 06 Apr 2016 13:19:38 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4- Comment #2 by Beno?t MINISINI: Fixed in revision #7726. Beno?t MINISINI changed the state of the bug to: Fixed. From jf.monteiro at ...43... Wed Apr 6 14:48:35 2016 From: jf.monteiro at ...43... (=?UTF-8?Q?Jos=C3=A9_Monteiro?=) Date: Wed, 6 Apr 2016 05:48:35 -0700 (MST) Subject: [Gambas-user] Lenght of a string Message-ID: <1459946915635-55855.post@...3046...> len("Jos? Ant?nio") = 14 I need to fill a text file and upload it to a system in order to make an invoice. The field "name" must have lenght = 115. If shorter than that you must complement it with spaces. So: for i = 1 to (115 - len(name)) name = name & Space$(1) next The result is --> "Jos? Ant?nio" + 101 spaces But, in the text file, "Jos? Ant?nio" + 101 spaces is considered as having lenght = 113, not 115. The text file, then, is rejected by the system, because the following fields are not being correctly interpreted. Any sugestions? Thanks in advance -- View this message in context: http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html Sent from the gambas-user mailing list archive at Nabble.com. From oliver at ...3593... Wed Apr 6 16:00:06 2016 From: oliver at ...3593... (Oliver Etchebarne Bejarano) Date: Wed, 6 Apr 2016 09:00:06 -0500 Subject: [Gambas-user] Lenght of a string In-Reply-To: <1459946915635-55855.post@...3046...> References: <1459946915635-55855.post@...3046...> Message-ID: <57051666.7060901@...3593...> You are writing utf-8 characteres, so the '?' and the '?' are two bytes long ("Jos? Ant?nio" is 12 chars but 14 bytes long). I think you should either remove the tildes, or use UTF-8 string functions (like String.len() instead of len()) for the calculations, and then change the encoding to something like latin-1. And hope that your system can understand the new encoding well... El 06/04/16 a las 07:48, Jos? Monteiro escribi?: > len("Jos? Ant?nio") = 14 > I need to fill a text file and upload it to a system in order to make an > invoice. > The field "name" must have lenght = 115. If shorter than that you must > complement it with spaces. > So: > > for i = 1 to (115 - len(name)) > name = name & Space$(1) > next > > The result is --> "Jos? Ant?nio" + 101 spaces > > But, in the text file, "Jos? Ant?nio" + 101 spaces is considered as having > lenght = 113, not 115. > The text file, then, is rejected by the system, because the following fields > are not being correctly interpreted. > Any sugestions? > Thanks in advance > > > > -- > View this message in context: http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html > Sent from the gambas-user mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Oliver Etchebarne Bejarano Responsable del ?rea de TIC Ica Server E.I.R.L. From oliver at ...3593... Wed Apr 6 15:57:20 2016 From: oliver at ...3593... (Oliver Etchebarne Bejarano) Date: Wed, 6 Apr 2016 08:57:20 -0500 Subject: [Gambas-user] Lenght of a string In-Reply-To: <1459946915635-55855.post@...3046...> References: <1459946915635-55855.post@...3046...> Message-ID: <570515C0.1040504@...3593...> You are writing utf-8 characteres, so the '?' and the '?' are two bytes long ("Jos? Ant?nio" is 12 chars but 14 bytes long). I think you should either remove the tildes, or use UTF-8 string functions (like String.len() instead of len()) for the calculations, and then change the encoding to something like latin-1. And hope that your system can understand the new encoding well... El 06/04/16 a las 07:48, Jos? Monteiro escribi?: > len("Jos? Ant?nio") = 14 > I need to fill a text file and upload it to a system in order to make an > invoice. > The field "name" must have lenght = 115. If shorter than that you must > complement it with spaces. > So: > > for i = 1 to (115 - len(name)) > name = name & Space$(1) > next > > The result is --> "Jos? Ant?nio" + 101 spaces > > But, in the text file, "Jos? Ant?nio" + 101 spaces is considered as having > lenght = 113, not 115. > The text file, then, is rejected by the system, because the following fields > are not being correctly interpreted. > Any sugestions? > Thanks in advance > > > > -- > View this message in context: http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html > Sent from the gambas-user mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Oliver Etchebarne Bejarano Responsable del ?rea de TIC Ica Server E.I.R.L. From jf.monteiro at ...43... Wed Apr 6 15:19:44 2016 From: jf.monteiro at ...43... (=?UTF-8?Q?Jos=C3=A9_Monteiro?=) Date: Wed, 6 Apr 2016 06:19:44 -0700 (MST) Subject: [Gambas-user] Lenght of a string In-Reply-To: <57051666.7060901@...3593...> References: <1459946915635-55855.post@...3046...> <57051666.7060901@...3593...> Message-ID: <1459948784514-55858.post@...3046...> Thank you, Oliver. Using String.len(name) completely solves the problem. -- View this message in context: http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855p55858.html Sent from the gambas-user mailing list archive at Nabble.com. From d4t4full at ...626... Wed Apr 6 16:32:14 2016 From: d4t4full at ...626... (ML) Date: Wed, 6 Apr 2016 11:32:14 -0300 Subject: [Gambas-user] Lenght of a string In-Reply-To: <57051666.7060901@...3593...> References: <1459946915635-55855.post@...3046...> <57051666.7060901@...3593...> Message-ID: <57051DEE.4040402@...626...> Jos?, A side note, no need also to use a FOR-NEXT to fill X spaces. You can do it in a single step: 'for i = 1 to (115 - len(name)) ' name = name & Space$(1) 'next name = String.Left$(name & Space$(115), 115) If you need the spaces at the left (for example to right-align numbers), you do the opposite: numberString = String.Right$(Space$(places) & Str$(number), places) 'The number will be right-aligned to "places" spaces and returned in numberString. As Oliver pointed, you should use the UTF-8 versions of the calls; otherwise you will have less than the expected characters in the resulting string. Regards, zxMarce. On 2016-04-06 11:00, Oliver Etchebarne Bejarano wrote: > You are writing utf-8 characteres, so the '?' and the '?' are two bytes > long ("Jos? Ant?nio" is 12 chars but 14 bytes long). > > I think you should either remove the tildes, or use UTF-8 string > functions (like String.len() instead of len()) for the calculations, and > then change the encoding to something like latin-1. And hope that your > system can understand the new encoding well... > > > El 06/04/16 a las 07:48, Jos? Monteiro escribi?: >> len("Jos? Ant?nio") = 14 >> I need to fill a text file and upload it to a system in order to make an >> invoice. >> The field "name" must have lenght = 115. If shorter than that you must >> complement it with spaces. >> So: >> >> for i = 1 to (115 - len(name)) >> name = name & Space$(1) >> next >> >> The result is --> "Jos? Ant?nio" + 101 spaces >> >> But, in the text file, "Jos? Ant?nio" + 101 spaces is considered as having >> lenght = 113, not 115. >> The text file, then, is rejected by the system, because the following fields >> are not being correctly interpreted. >> Any sugestions? >> Thanks in advance >> >> >> >> -- >> View this message in context: http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html >> Sent from the gambas-user mailing list archive at Nabble.com. >> >> ------------------------------------------------------------------------------ >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user From jf.monteiro at ...43... Wed Apr 6 16:58:32 2016 From: jf.monteiro at ...43... (Jose Monteiro) Date: Wed, 6 Apr 2016 14:58:32 +0000 (UTC) Subject: [Gambas-user] Lenght of a string In-Reply-To: <57051DEE.4040402@...626...> References: <57051DEE.4040402@...626...> Message-ID: <1904948789.162240.1459954712757.JavaMail.yahoo@...3424...> Thank you again.This one line solution is much more elegant. On Wednesday, April 6, 2016 11:33 AM, ML wrote: Jos?, A side note, no need also to use a FOR-NEXT to fill X spaces. You can do it in a single step: ? 'for i = 1 to (115 - len(name)) ? '? name = name & Space$(1) ? 'next ? name = String.Left$(name & Space$(115), 115) If you need the spaces at the left (for example to right-align numbers), you do the opposite: ? numberString = String.Right$(Space$(places) & Str$(number), places) 'The number will be right-aligned to "places" spaces and returned in numberString. As Oliver pointed, you should use the UTF-8 versions of the calls; otherwise you will have less than the expected characters in the resulting string. Regards, zxMarce. On 2016-04-06 11:00, Oliver Etchebarne Bejarano wrote: > You are writing utf-8 characteres, so the '?' and the '?' are two bytes > long ("Jos? Ant?nio" is 12 chars but 14 bytes long). > > I think you should either remove the tildes, or use UTF-8 string > functions (like String.len() instead of len()) for the calculations, and > then change the encoding to something like latin-1. And hope that your > system can understand the new encoding well... > > > El 06/04/16 a las 07:48, Jos? Monteiro escribi?: >> len("Jos? Ant?nio") = 14 >> I need to fill a text file and upload it to a system in order to make an >> invoice. >> The field "name" must have lenght = 115. If shorter than that you must >> complement it with spaces. >> So: >> >>? for i = 1 to (115 - len(name)) >>? ? name = name & Space$(1) >>? next >> >> The result is --> "Jos? Ant?nio" + 101 spaces >> >> But, in the text file, "Jos? Ant?nio" + 101 spaces is considered as having >> lenght = 113, not 115. >> The text file, then, is rejected by the system, because the following fields >> are not being correctly interpreted. >> Any sugestions? >> Thanks in advance >> >> >> >> -- >> View this message in context: http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html >> Sent from the gambas-user mailing list archive at Nabble.com. >> >> ------------------------------------------------------------------------------ >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user ------------------------------------------------------------------------------ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From t.lee.davidson at ...626... Wed Apr 6 17:37:33 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Wed, 6 Apr 2016 11:37:33 -0400 Subject: [Gambas-user] Gambas mime type In-Reply-To: <57046ABA.80500@...626...> References: <57040F5E.2010505@...3240...> <57046ABA.80500@...626...> Message-ID: <57052D3D.8060107@...626...> Matti, I was wrong about the pattern in "/usr/share/mimelnk/application/x-gambas3.desktop". That mimetype file is for Gambas scripts, not Gambas executables. And, I recommend ignoring my instruction to create "~/.local/share/applications/gbr3.desktop". It might be much better to just create the association in System Settings. Once there, go to Applications -> File Associations and search on "gambas". There should be two there already which you can use as examples to create a "x-gambas" type. You can switch back an forth between the types as you create the new one. I chose the "application-x-gambas" icon from System icons, added "*.gambas" as a filename pattern, described it as "Gambas executable", and added "/usr/bin/gbr3" in Application Preference Order. Once I clicked Apply, the file, "~/.local/share/applications/gbr3.desktop", was created and the mimetype database updated automatically. On 04/05/2016 09:47 PM, T Lee Davidson wrote: > On 04/05/2016 03:17 PM, Matti wrote: >> Unfortunately, I have to set up my system (openSUSE 42.1) completely new. >> I installed Gambas 3.8.4 fromhttp://download.opensuse.org/repositories/Education/openSUSE_Leap_42.1/, and it runs ok as it did >> before. >> >> But the packager seems to have made a mistake, as *.gambas files are regarded as plain text documents and won't start by >> clicking on them. >> >> So, does anyone know how to make KDE run *.gambas files automatically? > > Matti, > > I think the mistake in "/usr/share/mimelnk/application/x-gambas3.desktop" is the Patterns being set to "*.g;*.G". I tried > correcting that to "*.gambas;*.Gambas" on my system. But, I got impatient and didn't want bother seeing if a reboot would cause > the new pattern to be picked up. > > Here's a quick fix. > > Ensure that you have a file "~/.local/share/applications/gbr3.desktop" with the content: > [Desktop Entry] > Exec=/usr/bin/gbr3 > MimeType=application/gambas; > Name=gbr3 > NoDisplay=true > Type=Application > > (It can sometimes take a minute or so for the system to recognize changes in "~/.local/share/applications".) > > Then go to System Settings -> Applications -> File Associations. Search for "gambas". It should be: > Filename patterns: *.gambas > Description: application/gambas > Application Preference Order: gbr3 > > If it's not there, add it. > -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From matti.eber at ...3240... Wed Apr 6 17:58:42 2016 From: matti.eber at ...3240... (Matti) Date: Wed, 6 Apr 2016 17:58:42 +0200 Subject: [Gambas-user] Gambas mime type In-Reply-To: <57052D3D.8060107@...626...> References: <57040F5E.2010505@...3240...> <57046ABA.80500@...626...> <57052D3D.8060107@...626...> Message-ID: <57053232.6050807@...3240...> Lee, I sent a mail this morning to thank you - but it never reached the list (used the wrong mail account). I followed your first fix, and everything is working as expected. So, don't care, and thanks again! Matti Am 06.04.2016 um 17:37 schrieb T Lee Davidson: > Matti, > > I was wrong about the pattern in "/usr/share/mimelnk/application/x-gambas3.desktop". That mimetype file is for Gambas scripts, > not Gambas executables. > > And, I recommend ignoring my instruction to create "~/.local/share/applications/gbr3.desktop". It might be much better to just > create the association in System Settings. > > Once there, go to Applications -> File Associations and search on "gambas". There should be two there already which you can use > as examples to create a "x-gambas" type. You can switch back an forth between the types as you create the new one. > > I chose the "application-x-gambas" icon from System icons, added "*.gambas" as a filename pattern, described it as "Gambas > executable", and added "/usr/bin/gbr3" in Application Preference Order. > > Once I clicked Apply, the file, "~/.local/share/applications/gbr3.desktop", was created and the mimetype database updated > automatically. > > > On 04/05/2016 09:47 PM, T Lee Davidson wrote: >> On 04/05/2016 03:17 PM, Matti wrote: >>> Unfortunately, I have to set up my system (openSUSE 42.1) completely new. >>> I installed Gambas 3.8.4 fromhttp://download.opensuse.org/repositories/Education/openSUSE_Leap_42.1/, and it runs ok as it did >>> before. >>> >>> But the packager seems to have made a mistake, as *.gambas files are regarded as plain text documents and won't start by >>> clicking on them. >>> >>> So, does anyone know how to make KDE run *.gambas files automatically? >> Matti, >> >> I think the mistake in "/usr/share/mimelnk/application/x-gambas3.desktop" is the Patterns being set to "*.g;*.G". I tried >> correcting that to "*.gambas;*.Gambas" on my system. But, I got impatient and didn't want bother seeing if a reboot would cause >> the new pattern to be picked up. >> >> Here's a quick fix. >> >> Ensure that you have a file "~/.local/share/applications/gbr3.desktop" with the content: >> [Desktop Entry] >> Exec=/usr/bin/gbr3 >> MimeType=application/gambas; >> Name=gbr3 >> NoDisplay=true >> Type=Application >> >> (It can sometimes take a minute or so for the system to recognize changes in "~/.local/share/applications".) >> >> Then go to System Settings -> Applications -> File Associations. Search for "gambas". It should be: >> Filename patterns: *.gambas >> Description: application/gambas >> Application Preference Order: gbr3 >> >> If it's not there, add it. >> From bugtracker at ...3416... Thu Apr 7 03:40:16 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 01:40:16 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Zainudin AHMAD reported a new bug. Summary ------- Offline documentation not update Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Product : Wiki Description ----------- - I have remove wiki directory and wiki.tar.bz2 file in directory ./local/share/gambas3 - and update/download gambas wiki offline from preference window (attach pic-1) it's succes (to download) and it's syas "the documentation is up to date" - when I look(online wiki) in web browser (attach pic-2) some part has change - but in offline wiki it's not change/not update (attach pic-3) the timestamp still 2015-06-04 (attach pic-4) thaks note : I remove the wiki directory and wiki.tar.bz2 because description in preference window always "the documentation is up to date" and button is disable System information ------------------ [System] Gambas=3.8.90 r7601 OperatingSystem=Linux Kernel=3.2.0-88-generic Architecture=x86 Distribution=Ubuntu 12.04.5 LTS Desktop=LXDE Theme=Gtk Language=en_US.UTF-8 Memory=494M [Libraries] Cairo=libcairo.so.2.11000.2 Curl=libcurl.so.4.2.0 DBus=libdbus-1.so.3.5.8 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.7.0 GTK+2=libgtk-x11-2.0.so.0.2400.10 GTK+3=libgtk-3.so.0.400.2 OpenGL=libGL.so.96.43.23 Poppler=libpoppler.so.19.0.0 QT4=libQtCore.so.4.8.1 QT5=libQt5Core.so.5.0.2 SDL=libSDL-1.2.so.0.11.3 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-pDyLiVAzRW,guid=620c78edb37a3bef27f606160000003c DEFAULTS_PATH=/usr/share/gconf/Lubuntu.default.path DESKTOP_SESSION=Lubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=Lubuntu GNOME_KEYRING_CONTROL=/tmp/keyring-Fvyg87 GNOME_KEYRING_PID=1630 HOME= LANG=en_US.UTF-8 LC_ADDRESS=en_US.UTF-8 LC_IDENTIFICATION=en_US.UTF-8 LC_MEASUREMENT=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_NAME=en_US.UTF-8 LC_NUMERIC=en_US.UTF-8 LC_PAPER=en_US.UTF-8 LC_TELEPHONE=en_US.UTF-8 LC_TIME=en_US.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/Lubuntu.mandatory.path PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games PWD= SAL_USE_VCLPLUGIN=gtk SHELL=/bin/bash SSH_AGENT_PID=1621 SSH_AUTH_SOCK=/tmp/keyring-Fvyg87/ssh TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/lubuntu/:/etc/xdg/xdg-Lubuntu:/etc/xdg XDG_CONFIG_HOME=/.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/etc/xdg/lubuntu:/usr/share/Lubuntu:/usr/local/share/:/usr/share/:/usr/share:/usr/share/gdm:/var/lib/menu-xdg XDG_MENU_PREFIX=lxde- XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_COOKIE=2d9710af0959f6893eb828f100000008-1454502296.442251-1328032402 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 _LXSESSION_PID=1591 From bugtracker at ...3416... Thu Apr 7 03:40:33 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 01:40:33 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png From bugtracker at ...3416... Thu Apr 7 03:40:43 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 01:40:43 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Zainudin AHMAD added an attachment: pic-2.png From bugtracker at ...3416... Thu Apr 7 03:42:04 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 01:42:04 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Zainudin AHMAD added an attachment: pic-3.png From bugtracker at ...3416... Thu Apr 7 03:42:13 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 01:42:13 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Zainudin AHMAD added an attachment: pic-4.png From bugtracker at ...3416... Thu Apr 7 03:53:44 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 01:53:44 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #859: Report preview, caption label use English In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.859&from=L21haW4- Comment #5 by Zainudin AHMAD: it's seems fix, change become "two-sided" thanks Zainudin AHMAD changed the state of the bug to: Fixed. From bugtracker at ...3416... Thu Apr 7 03:59:14 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 01:59:14 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #861: browse project using wrong file manager(not default) In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.861&from=L21haW4- Comment #5 by Zainudin AHMAD: the problem is from xdg-open not from gambas, so this is invalid report. Zainudin AHMAD changed the state of the bug to: Invalid. From bugtracker at ...3416... Thu Apr 7 09:54:26 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 07:54:26 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #912: qt5 looks ugly and flat compared to qt4 Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.912&from=L21haW4- Antonio OREFICE reported a new bug. Summary ------- qt5 looks ugly and flat compared to qt4 Type : Bug Priority : Medium Gambas version : 3.8 Product : QT5 component Description ----------- As you can see in the image attached, depsite the qt5 style matches the qt4 style (oxygen) The look of the resulting ui is completely different: My gambas version is stable 3.8.4 http://wpage.unina.it/aorefice/sharevari/gb/ide.png http://wpage.unina.it/aorefice/sharevari/gb/qt4.png http://wpage.unina.it/aorefice/sharevari/gb/qt5.png System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=4.4.5-1-ARCH Architecture=x86_64 Distribution=Arch Linux Desktop=KDE4 Theme=Oxygen Language=it_IT.utf8 Memory=7934M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.603.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.7.4 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.3.2 QT5=libQt5Core.so.5.6.0 SDL=libSDL-1.2.so.0.11.4 [Environment] ANT_HOME=/usr/share/apache-ant DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/0/bus DESKTOP_SESSION=kde-plasma DISPLAY=:0 DM_CONTROL=/var/run/xdmctl GB_GUI=gb.qt4 GS_LIB=/.fonts GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/.gtkrc-2.0:/home/.gtkrc-2.0-kde4:/home/.kde4/share/config/gtkrc-2.0 GTK_MODULES=canberra-gtk-module GTK_RC_FILES=/etc/gtk/gtkrc:/.gtkrc:/home/.kde4/share/config/gtkrc HG=/usr/bin/hg HOME= INFINALITY_FT= INFINALITY_FT_AUTOFIT_FORCE_SLIGHT_HINTING=true INFINALITY_FT_AUTOHINT_HORIZONTAL_STEM_DARKEN_STRENGTH=0 INFINALITY_FT_AUTOHINT_INCREASE_GLYPH_HEIGHTS=false INFINALITY_FT_AUTOHINT_SNAP_STEM_HEIGHT=0 INFINALITY_FT_AUTOHINT_VERTICAL_STEM_DARKEN_STRENGTH=25 INFINALITY_FT_BOLD_EMBOLDEN_X_VALUE=0 INFINALITY_FT_BOLD_EMBOLDEN_Y_VALUE=0 INFINALITY_FT_BRIGHTNESS=0 INFINALITY_FT_CHROMEOS_STYLE_SHARPENING_STRENGTH=0 INFINALITY_FT_CONTRAST=-20 INFINALITY_FT_FILTER_PARAMS=7 25 44 25 7 INFINALITY_FT_FRINGE_FILTER_STRENGTH=0 INFINALITY_FT_GAMMA_CORRECTION=0 100 INFINALITY_FT_GLOBAL_EMBOLDEN_X_VALUE=0 INFINALITY_FT_GLOBAL_EMBOLDEN_Y_VALUE=0 INFINALITY_FT_GRAYSCALE_FILTER_STRENGTH=0 INFINALITY_FT_STEM_ALIGNMENT_STRENGTH=0 INFINALITY_FT_STEM_FITTING_STRENGTH=0 INFINALITY_FT_STEM_SNAPPING_SLIDING_SCALE=0 INFINALITY_FT_USE_KNOWN_SETTINGS_ON_SELECTED_FONTS=true INFINALITY_FT_USE_VARIOUS_TWEAKS=true INFINALITY_FT_WINDOWS_STYLE_SHARPENING_STRENGTH=0 KDE_FULL_SESSION=true KDE_MULTIHEAD=false KDE_SESSION_UID=0 KDE_SESSION_VERSION=4 KWIN_TRIPLE_BUFFER=1 LANG=it_IT.utf8 LC_COLLATE=C LOGNAME= MAIL=/var/spool/mail MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins NXDIR=/usr/lib/nx PATH=/usr/lib/nx/bin:/usr/lib/hardening-wrapper/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/opt/kde/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl PWD= QT_GRAPHICSSYSTEM=raster QT_NO_GLIB=1 QT_PLUGIN_PATH=/home/.kde4/lib/kde4/plugins/:/usr/lib/kde4/plugins/ SESSION_MANAGER=local/:@/tmp/.ICE-unix/30422,unix/:/tmp/.ICE-unix/30422 SHELL=/usr/bin/zsh SHLVL=1 TZ=:/etc/localtime USER= WINDOWPATH=7 XCURSOR_SIZE=0 XCURSOR_THEME=Oxygen_White XDG_CURRENT_DESKTOP=KDE XDG_DATA_DIRS=/usr/share:/usr/share:/usr/local/share XDG_DESKTOP_DIR=$HOME/Desktop" XDG_RUNTIME_DIR=/run/user/0 XDG_SEAT=seat0 XDG_SESSION_ID=c12 XDG_VTNR=7 XDM_MANAGED=method=classic _=/usr/lib/kde4/libexec/start_kdeinit_wrapper __GL_YIELD=USLEEP From bugtracker at ...3416... Thu Apr 7 11:02:20 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 09:02:20 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #912: qt5 looks ugly and flat compared to qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.912&from=L21haW4- Comment #1 by Beno?t MINISINI: I confirm. But the buggy QT5 Oxygen style is guilty there. I will see if I can workaround these bugs the same way I did with Breeze, but I can't be sure! Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at ...3416... Thu Apr 7 11:06:24 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 09:06:24 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #912: qt5 looks ugly and flat compared to qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.912&from=L21haW4- Comment #2 by Antonio OREFICE: Thank you, Is there something i can report to qt5 oxygen style mantainers? From bugtracker at ...3416... Thu Apr 7 11:14:57 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 09:14:57 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #912: qt5 looks ugly and flat compared to qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.912&from=L21haW4- Comment #3 by Beno?t MINISINI: They have the same problem than with Breeze. They decided that most of controls (edit fields, buttons...) must have a huge margin around them. Then, if you want them to have a small height, they decided to remove the border! And as for the combo-box, the border is not removed, but the inner text lost its left margin, putting it on the left border of the control. No idea what they smoke... 8-/ I applied the fix in revision #7728. It mainly works, but I think other workarounds are needed, as Oxygen and Breeze are not the same code. Beno?t MINISINI changed the state of the bug to: Working. From bugtracker at ...3416... Thu Apr 7 11:19:31 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 07 Apr 2016 09:19:31 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #912: qt5 looks ugly and flat compared to qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.912&from=L21haW4- Comment #4 by Antonio OREFICE: ...indeed, if i make the control higher, the border is displayed. Thank you for pointing it out, i don't think i'll go to submit the bug; as they seem very committed to that... "padding thing". From sourceforge-raindog2 at ...94... Thu Apr 7 20:21:49 2016 From: sourceforge-raindog2 at ...94... (Rob Kudla) Date: Thu, 07 Apr 2016 14:21:49 -0400 Subject: [Gambas-user] [Gambas Bug Tracker] Bug #826: Redirect links to gambasdoc.org/lang to gambaswiki/wiki/lang In-Reply-To: <562F21B6.1090207@...3340...> References: <562CDF22.5030603@...3340...> <562F21B6.1090207@...3340...> Message-ID: <5706A53D.5040609@...94...> On 10/27/2015 03:03 AM, Christof Thalhofer wrote: > Thanks. Do you know Robert Kudla? I know I'm late to the party, but I'm Rob Kudla. I owned the gambasdoc.org domain name for its entire existence, and hosted the gambas wiki on one of my company's ancient colocated servers. (I also contributed some seriously terrible code in the form of the original gb.pcre module.) Unfortunately, sometime last year our colo servers disappeared from the net, and after a bunch of fingerpointing, we never did get the servers nor their disks back. (I have at least a dump of the gambasdoc database somewhere, but it sounds like a redirect is more in order anyway.) My own personal domain was also affected, and is still offline a year later. I'd offered for 3 years in a row to transfer the domain to Benoit or someone else, but no one ever made it happen. I just noticed the domain had expired, and thought I'd check in to see if anyone had written me an email about it at this address, which I don't really check anymore because Gambas was my last project on Sourceforge and I haven't used it (er, sorry...) for 5 or 6 years now. It's still in the grace period, so if you or someone else who's been complaining about the links being broken would like to register it and have me transfer it to you, you'd be welcome to. But currently I can't afford to renew it myself, nor provide hosting. I think the grace period goes for another 4 days, so if you'd like it, you'd better move fast. If I don't respond to emails here, send to lists at my last name dot org and I'm more likely to see it (unless your domain is sourceforge.net in which case it'll be marked as read automatically). I'd like to thank Benoit, Fabien and the other main contributors for making Gambas as useful to me as it was for all those years, but I'm pretty much a web+mobile guy at this point (wrote one desktop app for my wife last year, but it was for the Raspberry Pi in python... which I gotta say kinda sucks, in my book. Not the Pi, but python.) I wish there were other IDEs in the free software world that were as full-featured and nimble as Gambas, but I've returned to my 25-year emacs habit in their absence. Rob From chrisml at ...3340... Fri Apr 8 11:37:35 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Fri, 8 Apr 2016 11:37:35 +0200 Subject: [Gambas-user] [Gambas Bug Tracker] Bug #826: Redirect links to gambasdoc.org/lang to gambaswiki/wiki/lang In-Reply-To: <5706A53D.5040609@...94...> References: <562CDF22.5030603@...3340...> <562F21B6.1090207@...3340...> <5706A53D.5040609@...94...> Message-ID: <57077BDF.2020408@...3340...> Am 07.04.2016 um 20:21 schrieb Rob Kudla: > On 10/27/2015 03:03 AM, Christof Thalhofer wrote: >> Thanks. Do you know Robert Kudla? > > I know I'm late to the party, but I'm Rob Kudla. Hi Rob, nice to read from you. :-) > I think the grace period goes for > another 4 days, so if you'd like it, you'd better move fast. Hm ok. Anyone interested in the further existence of gambasdoc.org? I can host the domain, but only if there is a serious common interest. In the meantime, I think, a lot of broken links disappeared from the Google index and I doubt that it is worth to rescue that old domain. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 836 bytes Desc: OpenPGP digital signature URL: From bugtracker at ...3416... Fri Apr 8 13:26:07 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 11:26:07 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Julio SANCHEZ changed the state of the bug to: Working. From bugtracker at ...3416... Fri Apr 8 13:50:03 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 11:50:03 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Julio SANCHEZ changed the state of the bug to: Opened. From bugtracker at ...3416... Fri Apr 8 21:38:37 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 19:38:37 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #913: I can not not install or download, Farm example because they use gb.qt4 Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.913&from=L21haW4- Julio SANCHEZ reported a new bug. Summary ------- I can not not install or download, Farm example because they use gb.qt4 Type : Bug Priority : Medium Gambas version : 3.8 Product : Development Environment Description ----------- Hello: I can not not install or download, Farm example because they use gb.qt4 https://www.gambas-es.org/files/images/6/programas_componentes_qbqt4.png Should I stop download, and edit and change the component QT5, right? Regards Julio System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.10.1-picaros Architecture=x86 Distribution=debian 7.9 Desktop=LXDE Theme=Fusion Language=es_ES.UTF-8 Memory=2017M [Libraries] Cairo=libcairo.so.0.0.0 Cairo=libcairo.so.2.11400.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.404.0 GTK+2=libgtk-x11-2.0.so.0.2400.25 GTK+3=libgtk-3.so.0.1400.5 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.19.0.0 Poppler=libpoppler.so.57.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-tNNu7Xnd1Y,guid=3a9bec30353f398b290d2dda5707fdb2 DESKTOP_SESSION=LXDE DISPLAY=:0.0 GB_GUI=gb.qt5 GDMSESSION=lightdm-xsession HOME=/home/ LANG=es_ES.UTF-8 LOGNAME= OLDPWD=/home/ PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/ QT_IM_MODULE=compose SAL_USE_VCLPLUGIN=gtk SHELL=/bin/bash SSH_AGENT_PID=2630 SSH_AUTH_SOCK=/tmp/ssh-DffCNiBKHMMQ/agent.2581 TZ=:/etc/localtime USER= XAUTHORITY=/home//.Xauthority XDG_CONFIG_HOME=/home//.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/usr/local/share/:/usr/share/:/usr/share/gdm/:/var/lib/menu-xdg/ XDG_MENU_PREFIX=lxde- XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_COOKIE=0b88073d0ec401b0461acf7a507836b1-1460141488.829664-1927857870 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 _LXSESSION_PID=2581 From bugtracker at ...3416... Fri Apr 8 21:38:51 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 19:38:51 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #913: I can not not install or download, Farm example because they use gb.qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.913&from=L21haW4- Julio SANCHEZ added an attachment: programas componentes qbqt4.png From bugtracker at ...3416... Fri Apr 8 21:45:18 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 19:45:18 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #913: I can not not install or download, Farm example because they use gb.qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.913&from=L21haW4- Comment #1 by Beno?t MINISINI: You must contact the author of the program and ask him not to use gb.qt4 only if possible, and then publish a new version of his example. I will modify the IDE so that it asks you whether you want to install the program sources anyway, so that you can modify it to fix it. Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at ...3416... Fri Apr 8 21:48:47 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 19:48:47 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Julio SANCHEZ reported a new bug. Summary ------- Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm Type : Bug Priority : Medium Gambas version : 3.8 Product : Development Environment Description ----------- Hello: When I activated the offline help, sometimes when I write code get the error: "CDocumentation.ImplementAndNeed.1138 Not an object " The ide still works, but not let me compile or run. Regards System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.10.1-picaros Architecture=x86 Distribution=debian 7.9 Desktop=LXDE Theme=Fusion Language=es_ES.UTF-8 Memory=2017M [Libraries] Cairo=libcairo.so.0.0.0 Cairo=libcairo.so.2.11400.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.404.0 GTK+2=libgtk-x11-2.0.so.0.2400.25 GTK+3=libgtk-3.so.0.1400.5 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.19.0.0 Poppler=libpoppler.so.57.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-tNNu7Xnd1Y,guid=3a9bec30353f398b290d2dda5707fdb2 DESKTOP_SESSION=LXDE DISPLAY=:0.0 GB_GUI=gb.qt5 GDMSESSION=lightdm-xsession HOME=/home/ LANG=es_ES.UTF-8 LOGNAME= OLDPWD=/home/ PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD=/home/ QT_IM_MODULE=compose SAL_USE_VCLPLUGIN=gtk SHELL=/bin/bash SSH_AGENT_PID=2630 SSH_AUTH_SOCK=/tmp/ssh-DffCNiBKHMMQ/agent.2581 TZ=:/etc/localtime USER= XAUTHORITY=/home//.Xauthority XDG_CONFIG_HOME=/home//.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/usr/local/share/:/usr/share/:/usr/share/gdm/:/var/lib/menu-xdg/ XDG_MENU_PREFIX=lxde- XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_COOKIE=0b88073d0ec401b0461acf7a507836b1-1460141488.829664-1927857870 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 _LXSESSION_PID=2581 From bugtracker at ...3416... Fri Apr 8 21:48:59 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 19:48:59 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Julio SANCHEZ added an attachment: error cdocumentation.png From bugtracker at ...3416... Fri Apr 8 21:49:50 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 19:49:50 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Julio SANCHEZ changed the state of the bug to: Accepted. From bugtracker at ...3416... Fri Apr 8 23:45:12 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 21:45:12 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #909: _TreeView_Item.Clear() throws Null object In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.909&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at ...3416... Fri Apr 8 23:45:25 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 08 Apr 2016 21:45:25 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #909: _TreeView_Item.Clear() throws Null object In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.909&from=L21haW4- Comment #1 by Beno?t MINISINI: Fixed in revision #7732. Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at ...3416... Sat Apr 9 10:33:34 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 09 Apr 2016 08:33:34 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Julio SANCHEZ changed the state of the bug to: Opened. From bugtracker at ...3416... Sat Apr 9 10:36:31 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 09 Apr 2016 08:36:31 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #913: I can not not install or download, Farm example because they use gb.qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.913&from=L21haW4- Comment #2 by Julio SANCHEZ: Beno?t: "I will modify the IDE so that it asks you whether you want to install the program sources anyway," Ok, thank you Regards Julio From bugtracker at ...3416... Sun Apr 10 04:01:53 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sun, 10 Apr 2016 02:01:53 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #915: [5] Too many arguments. FMain.FMain.0 Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.915&from=L21haW4- Frigo 2010 reported a new bug. Summary ------- [5] Too many arguments. FMain.FMain.0 Type : Bug Priority : High Gambas version : 3.8.90 (TRUNK) Product : Unknown Description ----------- Hallo Habe versucht eine Task Data Ausgabe in ein Label zu schreiben, seit dem kommt ein undefinierter Fehler in FMain, der sich nicht mehr beheben l?sst. Das L?schen vom Label sowie Code behebt diesen fehler nicht! Erstelle ich eine Ausf?hrbare Datei *.gambas, kommt der Fehler [5] Too many arguments. FMain.FMain.0 ---------------------------------- Hello Tried a Task Data output in a label to write, since comes an undefined error in Fmain which no longer can be remedied. Deleting Releases and code does not correct this error! I Create Executable * .gambas, comes the error [5] Too many arguments. FMain.FMain.0 From bugtracker at ...3416... Sun Apr 10 04:02:02 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sun, 10 Apr 2016 02:02:02 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #915: [5] Too many arguments. FMain.FMain.0 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.915&from=L21haW4- Frigo 2010 added an attachment: Error_GB.PNG From bugtracker at ...3416... Sun Apr 10 14:51:01 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sun, 10 Apr 2016 12:51:01 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #915: [5] Too many arguments. FMain.FMain.0 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.915&from=L21haW4- Comment #1 by Frigo 2010: Der Fehler ist nicht in der 3.8.4 Version! Dort konnte ich ihn durch das l?schen des Labels und neu anlagen beheben. Ein weiterer Test mit der Revision 7734 ergab den gleichen Fehler wieder! ----------------------------------------- The error is not in the 3.8.4 version! There I was able to delete it, the label and fix new plants. Another test of the revision 7734 gave the same error again! From bagonergi at ...626... Sun Apr 10 21:15:19 2016 From: bagonergi at ...626... (Gianluigi) Date: Sun, 10 Apr 2016 21:15:19 +0200 Subject: [Gambas-user] Action with a TextBox Message-ID: I can not imagine a case for using Action with a TextBox. Nevertheless I tried to see how it works but I can not do it. Can someone help me. I attach example that does not work. Regards Gianluigi -------------- next part -------------- A non-text attachment was scrubbed... Name: TestAction-0.0.1.tar.gz Type: application/x-gzip Size: 11762 bytes Desc: not available URL: From mmcg29440 at ...3163... Sun Apr 10 22:48:03 2016 From: mmcg29440 at ...3163... (Martin McGlensey) Date: Sun, 10 Apr 2016 16:48:03 -0400 Subject: [Gambas-user] How to stay on an added record after a save Message-ID: Hello, I have a datasource on a form. Data controls are within the datasource. When I add a record to the datasource using XXXXX.Create(True) a new record is created and the datacontrols on the form add data to the datasource. Then I save the data to the datasource using XXXXX.Save. This appears to work OK. The problem is that after a save the form datacontrols are empty. I want the form to display the data I just entered and saved. How can I do this. I want to add a record. Then enter data and save the record and have the data appear on the form after the save. I know it should be possible but, I need help to do it. Regards, Marty From bugtracker at ...3416... Mon Apr 11 01:59:22 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sun, 10 Apr 2016 23:59:22 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #912: qt5 looks ugly and flat compared to qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.912&from=L21haW4- Comment #5 by Beno?t MINISINI: Workaround for the push buttons implemented in revision #7729. Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at ...3416... Mon Apr 11 02:00:40 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 00:00:40 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #915: [5] Too many arguments. FMain.FMain.0 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.915&from=L21haW4- Comment #2 by Beno?t MINISINI: Please send your project and explain exactly how to reproduce the error. Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at ...3416... Mon Apr 11 02:01:07 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 00:01:07 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #913: I can not not install or download, Farm example because they use gb.qt4 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.913&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Working. From bugtracker at ...3416... Mon Apr 11 02:55:11 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 00:55:11 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Comment #1 by Beno?t MINISINI: Can you send me the project that raises that bug? And explain me how to reproduce it exactly (what you type, in which order, if you delete characters, and so on.) Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at ...3416... Mon Apr 11 02:56:43 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 00:56:43 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Comment #1 by Beno?t MINISINI: The message "The documentation is up to date" means that your local copy is the same as what is exported by the server, which is not necessarily the latest version. In other words, I have to generate the offline documentation archive more regularly! Beno?t MINISINI changed the state of the bug to: Accepted. From author.ilmi at ...626... Mon Apr 11 03:21:34 2016 From: author.ilmi at ...626... (zainudin ahmad) Date: Mon, 11 Apr 2016 08:21:34 +0700 Subject: [Gambas-user] Action with a TextBox In-Reply-To: References: Message-ID: Hi related with this: "clicked for a Button, a ToggleButton, a ToolButton or a Menu, shown or hidden for a SidePanel, a ToolBar or a Window." source : http://gambaswiki.org/wiki/comp/gb.qt4/action/raise attach file for textbox example On Mon, Apr 11, 2016 at 2:15 AM, Gianluigi wrote: > I can not imagine a case for using Action with a TextBox. > Nevertheless I tried to see how it works but I can not do it. > Can someone help me. > I attach example that does not work. > Regards > Gianluigi > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/ > gampad/clk?id=1444514301&iu=/ca-pub-7940484522588532 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -------------- next part -------------- A non-text attachment was scrubbed... Name: Action-TextBox-0.0.1.tar.gz Type: application/x-gzip Size: 11625 bytes Desc: not available URL: From author.ilmi at ...626... Mon Apr 11 03:27:46 2016 From: author.ilmi at ...626... (zainudin ahmad) Date: Mon, 11 Apr 2016 08:27:46 +0700 Subject: [Gambas-user] How to stay on an added record after a save In-Reply-To: References: Message-ID: I am use this trick : .... XXXX.Create() $bNewRecord = True .... ------------------------ When save : if $bNewRecord then XXXX.MoveLast() 'if your new data show in last row or maybe XXXX.MoveFirst() 'if your new data show in first row .... On Mon, Apr 11, 2016 at 3:48 AM, Martin McGlensey wrote: > Hello, > > > > > > I have a datasource on a form. Data controls are within the datasource. > When > I add a record to the datasource using XXXXX.Create(True) a new record is > created and the datacontrols on the form add data to the datasource. Then I > save the data to the datasource using XXXXX.Save. This appears to work OK. > The problem is that after a save the form datacontrols are empty. I want > the > form to display the data I just entered and saved. How can I do this. I > want > to add a record. Then enter data and save the record and have the data > appear on the form after the save. I know it should be possible but, I need > help to do it. > > > > Regards, > > Marty > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/ > gampad/clk?id=1444514301&iu=/ca-pub-7940484522588532 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From pinozollo at ...626... Mon Apr 11 04:01:59 2016 From: pinozollo at ...626... (Pino Zollo) Date: Sun, 10 Apr 2016 22:01:59 -0400 Subject: [Gambas-user] Repository of GAMBAS programs Message-ID: <570B0597.4050307@...626...> Ones there was a repository of GAMBAS programs. Is it still available ? Thanks Pino From t.lee.davidson at ...626... Mon Apr 11 05:43:14 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Sun, 10 Apr 2016 23:43:14 -0400 Subject: [Gambas-user] Repository of GAMBAS programs In-Reply-To: <570B0597.4050307@...626...> References: <570B0597.4050307@...626...> Message-ID: <570B1D52.4080306@...626...> Yes: http://gambaswiki.org/wiki/app But, some of the apps are a bit outdated. The new repository is the Gambas Farm which is accessible from within the Gambas IDE in versions, I think, greater than 3.8.X. (Someone please correct or confirm the version number.) On 04/10/2016 10:01 PM, Pino Zollo wrote: > Ones there was a repository of GAMBAS programs. > > Is it still available ? > > Thanks > > Pino > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/ > gampad/clk?id=1444514301&iu=/ca-pub-7940484522588532 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From taboege at ...626... Mon Apr 11 10:25:43 2016 From: taboege at ...626... (Tobias Boege) Date: Mon, 11 Apr 2016 10:25:43 +0200 Subject: [Gambas-user] Repository of GAMBAS programs In-Reply-To: <570B1D52.4080306@...626...> References: <570B0597.4050307@...626...> <570B1D52.4080306@...626...> Message-ID: <20160411082543.GA708@...2774...> On Sun, 10 Apr 2016, T Lee Davidson wrote: > Yes: http://gambaswiki.org/wiki/app > > But, some of the apps are a bit outdated. > > The new repository is the Gambas Farm which is accessible from within the Gambas IDE in versions, I think, greater than 3.8.X. > (Someone please correct or confirm the version number.) > It was 3.7.0 according to the release notes. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From bugtracker at ...3416... Mon Apr 11 13:25:57 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 11:25:57 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #915: [5] Too many arguments. FMain.FMain.0 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.915&from=L21haW4- Comment #3 by Frigo 2010: Hallo, unter Rev. 7736 funktioniert das ohne Probleme wieder.... habe es mit dem laufenen Projekt und mit einem Test Projekt, keine Probleme mehr! ---------------------------- Hello, under Rev. 7736 works without problems again .... did it with the accumulated project and a test project, no more problems! Frigo 2010 changed the state of the bug to: Working. From bagonergi at ...626... Mon Apr 11 13:51:46 2016 From: bagonergi at ...626... (Gianluigi) Date: Mon, 11 Apr 2016 13:51:46 +0200 Subject: [Gambas-user] Action with a TextBox In-Reply-To: References: Message-ID: Hello Zainudin, Thank you very much for demonstration. Then the activation of a TextBox not automatically run Action. Regards Gianluigi 2016-04-11 3:21 GMT+02:00 zainudin ahmad : > Hi > > related with this: > > "clicked for a Button, a ToggleButton, a ToolButton or a Menu, shown or > hidden for a SidePanel, a ToolBar or a Window." > > source : http://gambaswiki.org/wiki/comp/gb.qt4/action/raise > > > attach file for textbox example > > > > On Mon, Apr 11, 2016 at 2:15 AM, Gianluigi wrote: > > > I can not imagine a case for using Action with a TextBox. > > Nevertheless I tried to see how it works but I can not do it. > > Can someone help me. > > I attach example that does not work. > > Regards > > Gianluigi > > > > > > > ------------------------------------------------------------------------------ > > Find and fix application performance issues faster with Applications > > Manager > > Applications Manager provides deep performance insights into multiple > > tiers of > > your business applications. It resolves application problems quickly and > > reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/ > > gampad/clk?id=1444514301&iu=/ca-pub-7940484522588532 > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/ > gampad/clk?id=1444514301&iu=/ca-pub-7940484522588532 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From bugtracker at ...3416... Mon Apr 11 14:17:05 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 12:17:05 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #915: [5] Too many arguments. FMain.FMain.0 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.915&from=L21haW4- Comment #4 by Bruce BRUEN: Hope this helps. Very simple project attached. [System] Gambas=3.8.90 r7732 OperatingSystem=Linux Kernel=4.1.15-pclos1 Architecture=x86 Distribution=PCLinuxOS Desktop=LXDE Theme=Gtk Language=en_AU.UTF-8 Memory=1005M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.3.0.0 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.603.0 GTK+2=libgtk-x11-2.0.so.0.2400.26 GTK+3=libgtk-3.so.0.1400.14 OpenGL=libGL.so.1.2.0 OpenGL=libGL.so.173.14.39 OpenGL=libGL.so.96.43.23 Poppler=libpoppler.so.13.0.0 Poppler=libpoppler.so.19.0.0 Poppler=libpoppler.so.46.0.0 Poppler=libpoppler.so.54.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.4.2 SDL=libSDL-1.2.so.0.11.4 [Environment] BROWSER=/usr/bin/www-browser CANBERRA_DRIVER=pulse DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-O2fSDZJF1X,guid=951efdc9718dfd5ecb30be32570b8453 DESKTOP_SESSION=LXDE DISPLAY=:0 GB_GUI=gb.qt4 GCONF_TMPDIR=/tmp GDMSESSION=04LXDE GDM_XSERVER_LOCATION=local GIT_PAGER=less -FRS GPG_AGENT_INFO=/tmp/gpg-OBBa3I/S.gpg-agent:3157:1 GTK_MODULES=canberra-gtk-module G_FILENAME_ENCODING=@...3501... HISTCONTROL=ignoredups HISTSIZE=1000 HOME= HOSTNAME= INPUTRC=/etc/inputrc LANG=en_AU.UTF-8 LANGUAGE=en_AU:en_GB:en LC_ADDRESS=en_AU.UTF-8 LC_COLLATE=en_AU.UTF-8 LC_CTYPE=en_AU.UTF-8 LC_IDENTIFICATION=en_AU.UTF-8 LC_MEASUREMENT=en_AU.UTF-8 LC_MESSAGES=en_AU.UTF-8 LC_MONETARY=en_AU.UTF-8 LC_NAME=en_AU.UTF-8 LC_NUMERIC=en_AU.UTF-8 LC_PAPER=en_AU.UTF-8 LC_SOURCED=1 LC_TELEPHONE=en_AU.UTF-8 LC_TIME=en_AU.UTF-8 LESS=-MM LESSCHARSET=utf-8 LESSKEY=/etc/.less LESSOPEN=|/usr/bin/lesspipe.sh %s LOGNAME= LS_COLORS= MAIL=/var/spool/mail/ MDV_MENU_STYLE=discovery META_CLASS=desktop NLSPATH=/usr/share/locale/%l/%N PATH=/bin:/usr/bin:/usr/local/bin:/usr/games:/usr/lib/qt4/bin:/usr/lib/qt5/bin:/usr/bin:/usr/sbin:/usr/lib/kde4/libexec:/bin:/sbin:/usr/X11R6/bin:/usr/games:/usr/local/bin:/usr/local/sbin:/usr/lib/qt5/bin:/usr/bin:/usr/sbin:/usr/lib/kde4/libexec:/bin:/sbin:/usr/X11R6/bin:/usr/games:/usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin:/usr/lib/kde4/libexec PKG_CONFIG_PATH=/usr/lib/pkgconfig PWD= PYTHONDONTWRITEBYTECODE=1 PYTHONSTARTUP=/etc/pythonrc.py QT4DOCDIR=/usr/share/doc/qt4 QT5DOCDIR=/usr/share/doc/qt5 QTDIR=/usr/lib/qt4 QTDIR5=/usr/lib/qt5 QTINC=/usr/lib/qt3/include QTLIB=/usr/lib QT_PLUGIN_PATH=/usr/lib/qt4/plugins/:/usr/lib/kde4/plugins/:/usr/lib64/kde4/plugins:/usr/lib/kde4/plugins QT_XFT=0 SAL_USE_VCLPLUGIN=gtk SHELL=/bin/bash SHLVL=1 SSH_AGENT_PID=3182 SSH_ASKPASS=/usr/lib/ssh/ssh-askpass SSH_AUTH_SOCK=/tmp/ssh-4HbzoEIpJE2q/agent.3030 TMP=/tmp TMPDIR=/tmp TZ=:/etc/localtime USER= WINDOWPATH=8 XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/discovery:/etc/xdg XDG_CONFIG_HOME=/.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/usr/local/share:/usr/share/gdm:/var/lib/menu-xdg:/usr/share:/usr/share/gdm/ XDG_MENU_PREFIX=lxde- XDG_SESSION_COOKIE=82ab6c261883e9ffe2a80b674b7b435e-1460372562.172307-1339672192 XMODIFIERS=@...3498...=none _=/usr/bin/gambas3 _LXSESSION_PID=3030 From bugtracker at ...3416... Mon Apr 11 14:17:27 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 12:17:27 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #915: [5] Too many arguments. FMain.FMain.0 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.915&from=L21haW4- Bruce BRUEN added an attachment: 2manyargs-0.0.1.tar.gz From jf.monteiro at ...43... Mon Apr 11 17:18:59 2016 From: jf.monteiro at ...43... (=?UTF-8?Q?Jos=C3=A9_Monteiro?=) Date: Mon, 11 Apr 2016 08:18:59 -0700 (MST) Subject: [Gambas-user] How to replace chr$(13) from a text file Message-ID: <1460387939025-55908.post@...3046...> By now I tried to use: Mglobal.info = Replace$(TextArea1.Text, Chr$(13), "|") Unfortunately, the global variable "info" still has new lines and a parser refuses to accept it. -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-replace-chr-13-from-a-text-file-tp55908.html Sent from the gambas-user mailing list archive at Nabble.com. From charlie at ...2793... Mon Apr 11 18:10:49 2016 From: charlie at ...2793... (Charlie) Date: Mon, 11 Apr 2016 09:10:49 -0700 (MST) Subject: [Gambas-user] How to replace chr$(13) from a text file In-Reply-To: <1460387939025-55908.post@...3046...> References: <1460387939025-55908.post@...3046...> Message-ID: <1460391049721-55910.post@...3046...> Not sure why but if you add Chr(13) to the TextArea and then save the output as a file then look at the Hex in the file the Chr(13) is '0A' which is Chr(10). The code below works. *Public Mglobal As String Public Sub Form_Open() TextArea1.text = "Hello" & Chr(13) & "World" & Chr(13) & "Hello " & Chr(13) & "World" & Chr(13) File.Save("~/delete.txt", TextArea1.text) 'Have a look at this file in a Hex viewer End Public Sub Button1_Click() Mglobal = TextArea1.Text Mglobal = Replace$(TextArea1.Text, Chr$(10), "|") TextArea1.text = Mglobal End* -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-replace-chr-13-from-a-text-file-tp55908p55910.html Sent from the gambas-user mailing list archive at Nabble.com. From bugtracker at ...3416... Mon Apr 11 19:22:36 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 17:22:36 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #916: Inputbox can not handle large messages Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.916&from=L21haW4- C THAL reported a new bug. Summary ------- Inputbox can not handle large messages Type : Bug Priority : Low Gambas version : Unknown Product : Unknown Description ----------- If the message of the inputbox exceeds more than a couple of digits, the input field is hidden and so the inputbox is useless. From bugtracker at ...3416... Mon Apr 11 19:22:44 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 17:22:44 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #916: Inputbox can not handle large messages In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.916&from=L21haW4- C THAL added an attachment: gambas-inputbox-bug.tar.gz From bugtracker at ...3416... Mon Apr 11 19:23:23 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 17:23:23 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #916: Inputbox can not handle large messages In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.916&from=L21haW4- C THAL added an attachment: gambas-inputbox-bug.tar.gz From bagonergi at ...626... Mon Apr 11 19:23:48 2016 From: bagonergi at ...626... (Gianluigi) Date: Mon, 11 Apr 2016 19:23:48 +0200 Subject: [Gambas-user] How to replace chr$(13) from a text file In-Reply-To: <1460391049721-55910.post@...3046...> References: <1460387939025-55908.post@...3046...> <1460391049721-55910.post@...3046...> Message-ID: And instead so? Mglobal.info = Replace$(TextArea1.Text, "\n", "|") Regards Gianluigi 2016-04-11 18:10 GMT+02:00 Charlie : > Not sure why but if you add Chr(13) to the TextArea and then save the > output > as a file then look at the Hex in the file the Chr(13) is '0A' which is > Chr(10). > The code below works. > *Public Mglobal As String > Public Sub Form_Open() > TextArea1.text = "Hello" & Chr(13) & "World" & Chr(13) & "Hello " & Chr(13) > & "World" & Chr(13) > File.Save("~/delete.txt", TextArea1.text) 'Have a look at this file in a > Hex > viewer > End > Public Sub Button1_Click() > Mglobal = TextArea1.Text > Mglobal = Replace$(TextArea1.Text, Chr$(10), "|") > TextArea1.text = Mglobal > End* > > > > -- > View this message in context: > http://gambas.8142.n7.nabble.com/How-to-replace-chr-13-from-a-text-file-tp55908p55910.html > Sent from the gambas-user mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! http://pubads.g.doubleclick.net/ > gampad/clk?id=1444514301&iu=/ca-pub-7940484522588532 > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bugtracker at ...3416... Mon Apr 11 19:25:51 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 17:25:51 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #916: Inputbox can not handle large messages In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.916&from=L21haW4- Comment #1 by C THAL: oh my gosh ... please delete one of the gambas-inputbox-bug.tar.gz files ... they are dupes From karl.reinl at ...9... Mon Apr 11 19:08:26 2016 From: karl.reinl at ...9... (Karl Reinl) Date: Mon, 11 Apr 2016 19:08:26 +0200 Subject: [Gambas-user] How to replace chr$(13) from a text file In-Reply-To: <1460387939025-55908.post@...3046...> References: <1460387939025-55908.post@...3046...> Message-ID: <1460394506.4282.1.camel@...40...> Am Montag, den 11.04.2016, 08:18 -0700 schrieb Jos? Monteiro: > By now I tried to use: > > Mglobal.info = Replace$(TextArea1.Text, Chr$(13), "|") > > Unfortunately, the global variable "info" still has new lines and a parser > refuses to accept it. Salut Jos?, try this : Mglobal.info = Replace(TextArea1.Text, gb.NewLine, "|") This line ist not tested ! -- Amicalement Charlie From bugtracker at ...3416... Mon Apr 11 20:53:43 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 11 Apr 2016 18:53:43 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Comment #2 by Julio SANCHEZ: Beno?t: [ When help you have enabled offline] And you write for 1st time the type of a variable , writing "as" and then space, the error occurs . Then the error does not occur , but you can not run the application , having to exit and re- enter the ide gambas3.8.4 I attached youtube video with the capture of the error: https://youtu.be/uKondqqgrqQ From vuott at ...325... Mon Apr 11 23:36:12 2016 From: vuott at ...325... (Ru Vuott) Date: Mon, 11 Apr 2016 21:36:12 +0000 (UTC) Subject: [Gambas-user] gb.media: segmentation fault 11 References: <497660076.1846193.1460410572143.JavaMail.yahoo.ref@...3424...> Message-ID: <497660076.1846193.1460410572143.JavaMail.yahoo@...3424...> Hello, using MediaPlayer application, and more generally MediaPlayer Class of gb.media Component (same with gb.media.form - MediaView), I obtain a segmentation fault 11. Regards [System] Gambas=3.8.90 r7737 OperatingSystem=Linux Kernel=4.4.0-15-generic Architecture=x86_64 Distribution=Linux Mint 17.3 Rosa Desktop=GNOME Theme=Cleanlooks Language=it_IT.UTF-8 Memory=3952M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.23 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 From jf.monteiro at ...43... Tue Apr 12 09:34:44 2016 From: jf.monteiro at ...43... (=?UTF-8?Q?Jos=C3=A9_Monteiro?=) Date: Tue, 12 Apr 2016 00:34:44 -0700 (MST) Subject: [Gambas-user] How to replace chr$(13) from a text file In-Reply-To: References: <1460387939025-55908.post@...3046...> <1460391049721-55910.post@...3046...> Message-ID: <1460446484042-55919.post@...3046...> Works very well, GianLuigi. Thanks. -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-replace-chr-13-from-a-text-file-tp55908p55919.html Sent from the gambas-user mailing list archive at Nabble.com. From jf.monteiro at ...43... Tue Apr 12 09:35:28 2016 From: jf.monteiro at ...43... (=?UTF-8?Q?Jos=C3=A9_Monteiro?=) Date: Tue, 12 Apr 2016 00:35:28 -0700 (MST) Subject: [Gambas-user] How to replace chr$(13) from a text file In-Reply-To: <1460391049721-55910.post@...3046...> References: <1460387939025-55908.post@...3046...> <1460391049721-55910.post@...3046...> Message-ID: <1460446528842-55920.post@...3046...> I will give it a try. Thanks Charlie. -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-replace-chr-13-from-a-text-file-tp55908p55920.html Sent from the gambas-user mailing list archive at Nabble.com. From eilert-sprachen at ...221... Tue Apr 12 10:51:53 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Tue, 12 Apr 2016 10:51:53 +0200 Subject: [Gambas-user] How to replace chr$(13) from a text file In-Reply-To: <1460387939025-55908.post@...3046...> References: <1460387939025-55908.post@...3046...> Message-ID: <570CB729.7070201@...221...> The New Line in Linux is chr$(10), not chr$(13). So here the Replace will not find anything: Am 11.04.2016 17:18, schrieb Jos? Monteiro: > By now I tried to use: > > Mglobal.info = Replace$(TextArea1.Text, Chr$(13), "|") > > Unfortunately, the global variable "info" still has new lines and a parser > refuses to accept it. When you use Chr$(10) instead, it will run as expected. The "\n" in Linux means Chr$(10), just like gb.NewLine. If you had a Windows text file, it would be Chr$(10) Chr$(13) instead and you would have to delete both. But in a pure Windows environment, a "\n" would mean this automatically. Regards Rolf From jf.monteiro at ...43... Tue Apr 12 11:19:40 2016 From: jf.monteiro at ...43... (Jose Monteiro) Date: Tue, 12 Apr 2016 09:19:40 +0000 (UTC) Subject: [Gambas-user] How to replace chr$(13) from a text file In-Reply-To: <570CB729.7070201@...221...> References: <570CB729.7070201@...221...> Message-ID: <713466934.1179167.1460452780542.JavaMail.yahoo@...3424...> Thank you, Rolf. On Tuesday, April 12, 2016 5:51 AM, Rolf-Werner Eilert wrote: The New Line in Linux is chr$(10), not chr$(13). So here the Replace will not find anything: Am 11.04.2016 17:18, schrieb Jos? Monteiro: > By now I tried to use: > > Mglobal.info = Replace$(TextArea1.Text, Chr$(13), "|") > > Unfortunately, the global variable "info" still has new lines and a parser > refuses to accept it. When you use Chr$(10) instead, it will run as expected. The "\n" in Linux means Chr$(10), just like gb.NewLine. If you had a Windows text file, it would be Chr$(10) Chr$(13) instead and you would have to delete both. But in a pure Windows environment, a "\n" would mean this automatically. Regards Rolf ------------------------------------------------------------------------------ Find and fix application performance issues faster with Applications Manager Applications Manager provides deep performance insights into multiple tiers of your business applications. It resolves application problems quickly and reduces your MTTR. Get your free trial! https://ad.doubleclick.net/ddm/clk/302982198;130105516;z _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From herberthguzman at ...626... Tue Apr 12 21:00:04 2016 From: herberthguzman at ...626... (herberth guzman) Date: Tue, 12 Apr 2016 13:00:04 -0600 Subject: [Gambas-user] Problems with gb.qt5 and X11Systray Message-ID: Hi Benoit I want to integrate my project with QT5, but I have several problems 1- Systray (X11Systray) does not work with this component. 2- Public Sub Toggle_Enter() and ToggleTask_Leave It does not behave as gb.qt4. 3- The following code does not work with gb.qt5 Dim iId As Integer iId = Last.tag If iId = $iLast And If Not Desktop.Windows.FromHandle(iId).Minimized Then Desktop.Windows.FromHandle(iId).Minimized = True Return Endif Desktop.Windows.FromHandle(iId).Activate() That I can do to work well Systray (X11Systray) with gb.qt5 The gb.desktop.x11 component does not work with gb.qt5, In the revision #7098 you added experimental support, he worked well. Now not work. Can you help me please Waiting your answer. Attached Images. https://drive.google.com/open?id=0B2gI4jYOofp0c0dJaUNpcUlBNlk Regards Herberth Guzm?n [System] Gambas=3.8.90 OperatingSystem=Linux Kernel=4.4.0-15-generic Architecture=x86_64 Distribution=Ubuntu Xenial Xerus (development branch) Desktop=Innova Theme=Breeze Language=es_GT.UTF-8 Memory=1982M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.800.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-CHz6fr1zp4,guid=ae44c14bcf8af88fefd32766570d09de DEFAULTS_PATH=/usr/share/gconf/Innova.default.path DESKTOP_SESSION=Innova DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=Innova GDM_LANG=es_ES GPG_AGENT_INFO=/tmp/gpg-GIjzOn/S.gpg-agent:1250:1 GTK2_MODULES=overlay-scrollbar GTK_MODULES=gail:atk-bridge HOME= LANG=es_GT.UTF-8 LANGUAGE=es_GT:es LOGNAME= MANDATORY_PATH=/usr/share/gconf/Innova.mandatory.path PAM_KWALLET5_LOGIN=/tmp/kwallet5_.socket PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT_ACCESSIBILITY=1 QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_QPA_PLATFORMTHEME=appmenu-qt5 SHELL=/bin/bash SHLVL=0 SSH_AGENT_PID=1249 SSH_AUTH_SOCK=/tmp/ssh-Pp16BMxJ350S/agent.1095 TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-Innova:/etc/xdg XDG_CURRENT_DESKTOP=Innova XDG_DATA_DIRS=/usr/share/Innova:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=Innova XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 From bagonergi at ...626... Tue Apr 12 21:41:17 2016 From: bagonergi at ...626... (Gianluigi) Date: Tue, 12 Apr 2016 21:41:17 +0200 Subject: [Gambas-user] Gambas user mail list malfunction Message-ID: I noted a malfunction in the receive mail from the ML. I get less messages than those that appear here [0] For example I have answered to the question of Jos? Monteiro just because I'm hooked to mail Charlie but all messages of Monteiro I have not received them also the last Vuott and others. Anyone know why? Regards Gianluigi [0] http://gambas.8142.n7.nabble.com/gambas-user-f3.html From shordi at ...626... Wed Apr 13 00:28:02 2016 From: shordi at ...626... (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Wed, 13 Apr 2016 00:28:02 +0200 Subject: [Gambas-user] Gambas user mail list malfunction In-Reply-To: References: Message-ID: Jose Monteiro mails are marked as SPAM by google servers claiming they are hotmail messages that are noncompliant with hotmail tests... Check your spam folder. Regards 2016-04-12 21:41 GMT+02:00 Gianluigi : > I noted a malfunction in the receive mail from the ML. > I get less messages than those that appear here [0] > For example I have answered to the question of Jos? Monteiro just because > I'm hooked to mail Charlie but all messages of Monteiro I have not received > them also the last Vuott and others. > Anyone know why? > Regards > Gianluigi > > [0] http://gambas.8142.n7.nabble.com/gambas-user-f3.html > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From eilert-sprachen at ...221... Wed Apr 13 08:40:03 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 13 Apr 2016 08:40:03 +0200 Subject: [Gambas-user] Proposal about Separator Message-ID: <570DE9C3.501@...221...> Look at the screenshot. I set a separator between the ToolButton and the next ComboBox. The separator produces a thin gray line which looks as if it was the border of the ToolButton on its left. So it would be great if the separator's border could be switched off to make it completely "invisible". Is it possible to implement that? Regards Rolf -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas.png Type: image/png Size: 5753 bytes Desc: not available URL: From shordi at ...626... Wed Apr 13 09:59:54 2016 From: shordi at ...626... (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Wed, 13 Apr 2016 09:59:54 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: <570DE9C3.501@...221...> References: <570DE9C3.501@...221...> Message-ID: I don't understand: If you don't want see it, don't set it... int' it? Regards 2016-04-13 8:40 GMT+02:00 Rolf-Werner Eilert : > Look at the screenshot. I set a separator between the ToolButton and the > next ComboBox. > > The separator produces a thin gray line which looks as if it was the > border of the ToolButton on its left. So it would be great if the > separator's border could be switched off to make it completely "invisible". > > Is it possible to implement that? > > Regards > Rolf > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From eilert-sprachen at ...221... Wed Apr 13 10:38:05 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 13 Apr 2016 10:38:05 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: References: <570DE9C3.501@...221...> Message-ID: <570E056D.3060103@...221...> What I miss is a Border property. If you switch Visible off, the whole separator distance is skipped, i. e. it is "out of order", same like Enabled switched off. Rolf Am 13.04.2016 09:59, schrieb Jorge Carri?n: > I don't understand: If you don't want see it, don't set it... int' it? > > Regards > > 2016-04-13 8:40 GMT+02:00 Rolf-Werner Eilert : > >> Look at the screenshot. I set a separator between the ToolButton and the >> next ComboBox. >> >> The separator produces a thin gray line which looks as if it was the >> border of the ToolButton on its left. So it would be great if the >> separator's border could be switched off to make it completely "invisible". >> >> Is it possible to implement that? >> >> Regards >> Rolf >> >> >> >> ------------------------------------------------------------------------------ >> Find and fix application performance issues faster with Applications >> Manager >> Applications Manager provides deep performance insights into multiple >> tiers of >> your business applications. It resolves application problems quickly and >> reduces your MTTR. Get your free trial! >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> >> > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From shordi at ...626... Wed Apr 13 10:46:47 2016 From: shordi at ...626... (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Wed, 13 Apr 2016 10:46:47 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: <570E056D.3060103@...221...> References: <570DE9C3.501@...221...> <570E056D.3060103@...221...> Message-ID: Why don't use a Button instead a ToolButton? A toolButton is a button that doesn't show its borders without mouse cursor upon it... 2016-04-13 10:38 GMT+02:00 Rolf-Werner Eilert : > What I miss is a Border property. If you switch Visible off, the whole > separator distance is skipped, i. e. it is "out of order", same like > Enabled switched off. > > Rolf > > Am 13.04.2016 09:59, schrieb Jorge Carri?n: > > I don't understand: If you don't want see it, don't set it... int' it? > > > > Regards > > > > 2016-04-13 8:40 GMT+02:00 Rolf-Werner Eilert < > eilert-sprachen at ...221...>: > > > >> Look at the screenshot. I set a separator between the ToolButton and the > >> next ComboBox. > >> > >> The separator produces a thin gray line which looks as if it was the > >> border of the ToolButton on its left. So it would be great if the > >> separator's border could be switched off to make it completely > "invisible". > >> > >> Is it possible to implement that? > >> > >> Regards > >> Rolf > >> > >> > >> > >> > ------------------------------------------------------------------------------ > >> Find and fix application performance issues faster with Applications > >> Manager > >> Applications Manager provides deep performance insights into multiple > >> tiers of > >> your business applications. It resolves application problems quickly and > >> reduces your MTTR. Get your free trial! > >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > >> > >> > > > ------------------------------------------------------------------------------ > > Find and fix application performance issues faster with Applications > Manager > > Applications Manager provides deep performance insights into multiple > tiers of > > your business applications. It resolves application problems quickly and > > reduces your MTTR. Get your free trial! > > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bagonergi at ...626... Wed Apr 13 10:49:42 2016 From: bagonergi at ...626... (Gianluigi) Date: Wed, 13 Apr 2016 10:49:42 +0200 Subject: [Gambas-user] Gambas user mail list malfunction In-Reply-To: References: Message-ID: It is true Jorge, as the hidden folder I always forget. I'm a real idiot I'm so sorry, thank you Regards Gianluigi 2016-04-13 0:28 GMT+02:00 Jorge Carri?n : > Jose Monteiro mails are marked as SPAM by google servers claiming they are > hotmail messages that are noncompliant with hotmail tests... Check your > spam folder. > > Regards > > 2016-04-12 21:41 GMT+02:00 Gianluigi : > > > I noted a malfunction in the receive mail from the ML. > > I get less messages than those that appear here [0] > > For example I have answered to the question of Jos? Monteiro just because > > I'm hooked to mail Charlie but all messages of Monteiro I have not > received > > them also the last Vuott and others. > > Anyone know why? > > Regards > > Gianluigi > > > > [0] http://gambas.8142.n7.nabble.com/gambas-user-f3.html > > > > > ------------------------------------------------------------------------------ > > Find and fix application performance issues faster with Applications > > Manager > > Applications Manager provides deep performance insights into multiple > > tiers of > > your business applications. It resolves application problems quickly and > > reduces your MTTR. Get your free trial! > > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From eilert-sprachen at ...221... Wed Apr 13 10:59:52 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 13 Apr 2016 10:59:52 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: References: <570DE9C3.501@...221...> <570E056D.3060103@...221...> Message-ID: <570E0A88.6000206@...221...> That's the point, I like the look without border. What I intended was to make an optical separation between the list + toolbutton on the left and the two at the right. Or did you mean something else? Am 13.04.2016 10:46, schrieb Jorge Carri?n: > Why don't use a Button instead a ToolButton? A toolButton is a button that > doesn't show its borders without mouse cursor upon it... > > 2016-04-13 10:38 GMT+02:00 Rolf-Werner Eilert : > >> What I miss is a Border property. If you switch Visible off, the whole >> separator distance is skipped, i. e. it is "out of order", same like >> Enabled switched off. >> >> Rolf >> >> Am 13.04.2016 09:59, schrieb Jorge Carri?n: >>> I don't understand: If you don't want see it, don't set it... int' it? >>> >>> Regards >>> >>> 2016-04-13 8:40 GMT+02:00 Rolf-Werner Eilert < >> eilert-sprachen at ...221...>: >>>> Look at the screenshot. I set a separator between the ToolButton and the >>>> next ComboBox. >>>> >>>> The separator produces a thin gray line which looks as if it was the >>>> border of the ToolButton on its left. So it would be great if the >>>> separator's border could be switched off to make it completely >> "invisible". >>>> Is it possible to implement that? >>>> >>>> Regards >>>> Rolf >>>> >>>> >>>> >>>> >> ------------------------------------------------------------------------------ >>>> Find and fix application performance issues faster with Applications >>>> Manager >>>> Applications Manager provides deep performance insights into multiple >>>> tiers of >>>> your business applications. It resolves application problems quickly and >>>> reduces your MTTR. Get your free trial! >>>> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >>>> _______________________________________________ >>>> Gambas-user mailing list >>>> Gambas-user at lists.sourceforge.net >>>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>>> >>>> >> ------------------------------------------------------------------------------ >>> Find and fix application performance issues faster with Applications >> Manager >>> Applications Manager provides deep performance insights into multiple >> tiers of >>> your business applications. It resolves application problems quickly and >>> reduces your MTTR. Get your free trial! >>> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> >> >> ------------------------------------------------------------------------------ >> Find and fix application performance issues faster with Applications >> Manager >> Applications Manager provides deep performance insights into multiple >> tiers of >> your business applications. It resolves application problems quickly and >> reduces your MTTR. Get your free trial! >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From taboege at ...626... Wed Apr 13 11:06:45 2016 From: taboege at ...626... (Tobias Boege) Date: Wed, 13 Apr 2016 11:06:45 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: <570E0A88.6000206@...221...> References: <570DE9C3.501@...221...> <570E056D.3060103@...221...> <570E0A88.6000206@...221...> Message-ID: <20160413090645.GA714@...2774...> On Wed, 13 Apr 2016, Rolf-Werner Eilert wrote: > That's the point, I like the look without border. What I intended was to > make an optical separation between the list + toolbutton on the left and > the two at the right. > > Or did you mean something else? > I'm also confused how "optical" the separation should be. You don't want to separate the two by a visible line, right? Just some horizontal space. Then replace the Separator by an empty HBox of the desired size. That's what I do in these cases. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From eilert-sprachen at ...221... Wed Apr 13 11:10:48 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 13 Apr 2016 11:10:48 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: <20160413090645.GA714@...2774...> References: <570DE9C3.501@...221...> <570E056D.3060103@...221...> <570E0A88.6000206@...221...> <20160413090645.GA714@...2774...> Message-ID: <570E0D18.8050303@...221...> Aaaah thanks so much, that does the job perfectly! Rolf Am 13.04.2016 11:06, schrieb Tobias Boege: > On Wed, 13 Apr 2016, Rolf-Werner Eilert wrote: >> That's the point, I like the look without border. What I intended was to >> make an optical separation between the list + toolbutton on the left and >> the two at the right. >> >> Or did you mean something else? >> > I'm also confused how "optical" the separation should be. You don't want to > separate the two by a visible line, right? Just some horizontal space. Then > replace the Separator by an empty HBox of the desired size. That's what I do > in these cases. > > Regards, > Tobi > From gambas.fr at ...626... Wed Apr 13 11:52:12 2016 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 13 Apr 2016 11:52:12 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: <570E0D18.8050303@...221...> References: <570DE9C3.501@...221...> <570E056D.3060103@...221...> <570E0A88.6000206@...221...> <20160413090645.GA714@...2774...> <570E0D18.8050303@...221...> Message-ID: Prefer a Panel with Arrange to none to a HBox. HBox alway call an arrange internal procedure. 2016-04-13 11:10 GMT+02:00 Rolf-Werner Eilert : > Aaaah thanks so much, that does the job perfectly! > > Rolf > > Am 13.04.2016 11:06, schrieb Tobias Boege: >> On Wed, 13 Apr 2016, Rolf-Werner Eilert wrote: >>> That's the point, I like the look without border. What I intended was to >>> make an optical separation between the list + toolbutton on the left and >>> the two at the right. >>> >>> Or did you mean something else? >>> >> I'm also confused how "optical" the separation should be. You don't want to >> separate the two by a visible line, right? Just some horizontal space. Then >> replace the Separator by an empty HBox of the desired size. That's what I do >> in these cases. >> >> Regards, >> Tobi >> > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Fabien Bodard From bugtracker at ...3416... Wed Apr 13 12:49:27 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 10:49:27 GMT Subject: [Gambas-user] =?utf-8?q?=5BGambas_Bug_Tracker=5D_Bug_=23917=3A_Vi?= =?utf-8?q?olaci=C3=B3n_de_segmento_=28=60core=27_generado=29?= Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.917&from=L21haW4- Jose FRANCISCO reported a new bug. Summary ------- Violaci?n de segmento (`core' generado) Type : Bug Priority : High Gambas version : Unknown Product : Unknown Description ----------- gambas3 crashes and displays in the terminal: gb.gui: warning: 'gb.qt4' component not found, using 'gb.qt5' instead appmenu-qt: handleReparent 143 The given QMenuBar is already registered by appmenu-qt5, skipping appmenu-qt: handleReparent 143 The given QMenuBar is already registered by appmenu-qt5, skipping Violaci?n de segmento (`core' generado) System information ------------------ This happens in Ubuntu 16.04 From bugtracker at ...3416... Wed Apr 13 12:55:16 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 10:55:16 GMT Subject: [Gambas-user] =?utf-8?q?=5BGambas_Bug_Tracker=5D_Bug_=23917=3A_Vi?= =?utf-8?q?olaci=C3=B3n_de_segmento_=28=60core=27_generado=29?= In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.917&from=L21haW4- Comment #1 by Beno?t MINISINI: Please provide the full output of your compilation and installation process. Thanks. Beno?t MINISINI changed the state of the bug to: NeedsInfo. From eilert-sprachen at ...221... Wed Apr 13 13:03:08 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 13 Apr 2016 13:03:08 +0200 Subject: [Gambas-user] Proposal about Separator In-Reply-To: References: <570DE9C3.501@...221...> <570E056D.3060103@...221...> <570E0A88.6000206@...221...> <20160413090645.GA714@...2774...> <570E0D18.8050303@...221...> Message-ID: <570E276C.2020201@...221...> Yes, that works well, too. Rolf Am 13.04.2016 11:52, schrieb Fabien Bodard: > Prefer a Panel with Arrange to none to a HBox. HBox alway call an > arrange internal procedure. > > > 2016-04-13 11:10 GMT+02:00 Rolf-Werner Eilert : >> Aaaah thanks so much, that does the job perfectly! >> >> Rolf >> >> Am 13.04.2016 11:06, schrieb Tobias Boege: >>> On Wed, 13 Apr 2016, Rolf-Werner Eilert wrote: >>>> That's the point, I like the look without border. What I intended was to >>>> make an optical separation between the list + toolbutton on the left and >>>> the two at the right. >>>> >>>> Or did you mean something else? >>>> >>> I'm also confused how "optical" the separation should be. You don't want to >>> separate the two by a visible line, right? Just some horizontal space. Then >>> replace the Separator by an empty HBox of the desired size. That's what I do >>> in these cases. >>> >>> Regards, >>> Tobi >>> >> >> ------------------------------------------------------------------------------ >> Find and fix application performance issues faster with Applications Manager >> Applications Manager provides deep performance insights into multiple tiers of >> your business applications. It resolves application problems quickly and >> reduces your MTTR. Get your free trial! >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > From bugtracker at ...3416... Wed Apr 13 18:13:45 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 16:13:45 GMT Subject: [Gambas-user] =?utf-8?q?=5BGambas_Bug_Tracker=5D_Bug_=23917=3A_Vi?= =?utf-8?q?olaci=C3=B3n_de_segmento_=28=60core=27_generado=29?= In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.917&from=L21haW4- Jose FRANCISCO changed the state of the bug to: Opened. From johny.provoost at ...27... Wed Apr 13 18:48:36 2016 From: johny.provoost at ...27... (Johny Provoost) Date: Wed, 13 Apr 2016 18:48:36 +0200 Subject: [Gambas-user] Mediaview Length and Pos Message-ID: <570E7864.9010502@...27...> Is it possible to get the length and the Position of the played media with the Mediaview object. Greetings, Johny From herberthguzman at ...626... Wed Apr 13 19:56:41 2016 From: herberthguzman at ...626... (herberth guzman) Date: Wed, 13 Apr 2016 11:56:41 -0600 Subject: [Gambas-user] ERROR: WebForm.Main.115: Class.Load Message-ID: Regards, Running gb.web.form ERROR: WebForm.Main.115: Class.Load: Cannot load class 'WebformTest': Unable to load class file. I copy the files lib.js. and style.css at the root of the project and .public. And I did not get my project to execute a Message( "Hello"). Only displayed in the web navergador doing nothing. I need help to run my project please. Thank you Herberth Guzm?n [System] Gambas=3.8.90 OperatingSystem=Linux Kernel=4.4.0-15-generic Architecture=x86_64 Distribution=Ubuntu Xenial Xerus (development branch) Desktop=Innova Theme=Breeze Language=es_GT.UTF-8 Memory=1982M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-1.0.so.0.800.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-C6OF4kPSIc,guid=b77fb3dcd6dec45baaac2ddd570e8389 DEFAULTS_PATH=/usr/share/gconf/Innova.default.path DESKTOP_SESSION=Innova DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=Innova GDM_LANG=es_ES GPG_AGENT_INFO=/tmp/gpg-irTerF/S.gpg-agent:1392:1 GTK2_MODULES=overlay-scrollbar GTK_MODULES=gail:atk-bridge HOME= LANG=es_GT.UTF-8 LANGUAGE=es_GT:es LOGNAME= MANDATORY_PATH=/usr/share/gconf/Innova.mandatory.path PAM_KWALLET5_LOGIN=/tmp/kwallet5_.socket PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT_ACCESSIBILITY=1 QT_IM_MODULE=compose QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 QT_QPA_PLATFORMTHEME=appmenu-qt5 SHELL=/bin/bash SHLVL=0 SSH_AGENT_PID=1391 SSH_AUTH_SOCK=/tmp/ssh-B6VyiRNGi7a5/agent.1123 TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-Innova:/etc/xdg XDG_CURRENT_DESKTOP=Innova XDG_DATA_DIRS=/usr/share/Innova:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=Innova XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 From gambas at ...1... Wed Apr 13 20:02:21 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 13 Apr 2016 20:02:21 +0200 Subject: [Gambas-user] ERROR: WebForm.Main.115: Class.Load In-Reply-To: References: Message-ID: <570E89AD.4000805@...1...> Le 13/04/2016 19:56, herberth guzman a ?crit : > Regards, > > Running gb.web.form > > ERROR: > WebForm.Main.115: Class.Load: Cannot load class 'WebformTest': Unable to > load class file. > > > I copy the files lib.js. and style.css at the root of the project and > .public. > > And I did not get my project to execute a Message( "Hello"). > Only displayed in the web navergador doing nothing. > > I need help to run my project please. > Thank you > > Herberth Guzm?n > No source project, no help! -- Beno?t Minisini From herberthguzman at ...626... Wed Apr 13 20:45:50 2016 From: herberthguzman at ...626... (herberth guzman) Date: Wed, 13 Apr 2016 12:45:50 -0600 Subject: [Gambas-user] ERROR: WebForm.Main.115: Class.Load Message-ID: Le 13/04/2016 19:56, herberth guzman a ?crit : > Regards, > > Running gb.web.form > > ERROR: > WebForm.Main.115: Class.Load: Cannot load class 'WebformTest': Unable to > load class file. > > > I copy the files lib.js. and style.css at the root of the project and > .public. > > And I did not get my project to execute a Message( "Hello"). > Only displayed in the web navergador doing nothing. > > I need help to run my project please. > Thank you > > Herberth Guzm?n > >No source project, no help! >-- >Beno?t Minisini Link Attached Project https://drive.google.com/open?id=0B2gI4jYOofp0WTlGR0lGLUNvSDA -- Herberth Guzm?n From gambas at ...1... Wed Apr 13 20:57:27 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Wed, 13 Apr 2016 20:57:27 +0200 Subject: [Gambas-user] Mediaview Length and Pos In-Reply-To: <570E7864.9010502@...27...> References: <570E7864.9010502@...27...> Message-ID: <570E9697.5040905@...1...> Le 13/04/2016 18:48, Johny Provoost a ?crit : > Is it possible to get the length and the Position of the played media > with the Mediaview object. > > Greetings, > Johny > I added two new properties for that in revision #7738. Regards, -- Beno?t Minisini From bugtracker at ...3416... Wed Apr 13 21:54:20 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 19:54:20 GMT Subject: [Gambas-user] =?utf-8?q?=5BGambas_Bug_Tracker=5D_Bug_=23917=3A_Vi?= =?utf-8?q?olaci=C3=B3n_de_segmento_=28=60core=27_generado=29?= In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.917&from=L21haW4- Comment #2 by Beno?t MINISINI: I guess Gambas Ubuntu official packages are still broken. I suggest that you uninstall all of them and use the repository at: https://launchpad.net/~gambas-team/+archive/ubuntu/gambas3 Tell me if it fixes your problem. Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at ...3416... Wed Apr 13 21:55:34 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 19:55:34 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Comment #3 by Beno?t MINISINI: Is it possible for you to compile and test the development version? From bugtracker at ...3416... Wed Apr 13 21:56:25 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 19:56:25 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4- Comment #2 by Beno?t MINISINI: Offline documentation has been updated. Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at ...3416... Wed Apr 13 22:21:45 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 20:21:45 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #908: Compilation error - QT5 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.908&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Working. From johny.provoost at ...27... Wed Apr 13 22:46:49 2016 From: johny.provoost at ...27... (Johny Provoost) Date: Wed, 13 Apr 2016 22:46:49 +0200 Subject: [Gambas-user] Mediaview Length and Pos In-Reply-To: <570E9697.5040905@...1...> References: <570E7864.9010502@...27...> <570E9697.5040905@...1...> Message-ID: <570EB039.1020402@...27...> Thank you, I install tomorrow. Time to go to bed now. Regards, Op 13-04-16 om 20:57 schreef Beno?t Minisini: > Le 13/04/2016 18:48, Johny Provoost a ?crit : >> Is it possible to get the length and the Position of the played media >> with the Mediaview object. >> >> Greetings, >> Johny >> > I added two new properties for that in revision #7738. > > Regards, > From bugtracker at ...3416... Wed Apr 13 23:26:47 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 13 Apr 2016 21:26:47 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #908: Compilation error - QT5 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.908&from=L21haW4- Comment #12 by Beno?t MINISINI: Is it better with revision #7742? From johny.provoost at ...27... Thu Apr 14 11:20:20 2016 From: johny.provoost at ...27... (Johny Provoost) Date: Thu, 14 Apr 2016 11:20:20 +0200 Subject: [Gambas-user] Mediaview Length and Pos In-Reply-To: <570E9697.5040905@...1...> References: <570E7864.9010502@...27...> <570E9697.5040905@...1...> Message-ID: <570F60D4.3040107@...27...> Ok got revision #7740 now and 'Duration' and 'Position' works perfectly. Thank you very much. Johny Op 13-04-16 om 20:57 schreef Beno?t Minisini: > Le 13/04/2016 18:48, Johny Provoost a ?crit : >> Is it possible to get the length and the Position of the played media >> with the Mediaview object. >> >> Greetings, >> Johny >> > I added two new properties for that in revision #7738. > > Regards, > From bugtracker at ...3416... Thu Apr 14 13:02:11 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 14 Apr 2016 11:02:11 GMT Subject: [Gambas-user] =?utf-8?q?=5BGambas_Bug_Tracker=5D_Bug_=23917=3A_Vi?= =?utf-8?q?olaci=C3=B3n_de_segmento_=28=60core=27_generado=29?= In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.917&from=L21haW4- Jose FRANCISCO changed the state of the bug to: Opened. From bugtracker at ...3416... Thu Apr 14 13:04:59 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 14 Apr 2016 11:04:59 GMT Subject: [Gambas-user] =?utf-8?q?=5BGambas_Bug_Tracker=5D_Bug_=23917=3A_Vi?= =?utf-8?q?olaci=C3=B3n_de_segmento_=28=60core=27_generado=29?= In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.917&from=L21haW4- Comment #3 by Jose FRANCISCO: I have used the repository at: https://launchpad.net/~gambas-team/+archive/ubuntu/gambas3 and shows this: http://ppa.launchpad.net/gambas-team/gambas3/ubuntu/dists/xenial/main/binary-i386/Packages 404 Not Found The problem is not solved. From bugtracker at ...3416... Thu Apr 14 13:26:07 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 14 Apr 2016 11:26:07 GMT Subject: [Gambas-user] =?utf-8?q?=5BGambas_Bug_Tracker=5D_Bug_=23917=3A_Vi?= =?utf-8?q?olaci=C3=B3n_de_segmento_=28=60core=27_generado=29?= In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.917&from=L21haW4- Comment #4 by Sebastian KULESZ: Ubuntu Xenial has not yet been released, and is still in beta. Just yesterday I enabled the packages for that version in the daily PPA. I will enable them for the stable PPA in the next major stable release of gambas. From bagonergi at ...626... Thu Apr 14 17:29:34 2016 From: bagonergi at ...626... (Gianluigi) Date: Thu, 14 Apr 2016 17:29:34 +0200 Subject: [Gambas-user] TrayIcon question Message-ID: I can not understand how works TrayIcon. Can someone help me. Attached small demonstration who gives me these Warnigs: gbx3: warning: circular references detected: gbx3: 1 FMain gbx3: 1 DBusStatusIcon gbx3: 1 DBusStatusIconMenu gbx3: 1 TrayIcon gbx3: 4 DBusObject gbx3: 1 Picture gbx3: warning: 192 allocation(s) non freed. Regards Gianluigi -------------- next part -------------- A non-text attachment was scrubbed... Name: MyTrayen-0.0.1.tar.gz Type: application/x-gzip Size: 13650 bytes Desc: not available URL: From t.lee.davidson at ...626... Thu Apr 14 18:59:50 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Thu, 14 Apr 2016 12:59:50 -0400 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: Message-ID: <570FCC86.2020105@...626...> I cannot help you understand it, GianLuigi, because I don't understand it either. But, I can say that it didn't play nice with my KDE Plasma v5.5.5 on Qt v5.5.1. It kept repeatedly crashing Plasma in a loop until I killed it. On 04/14/2016 11:29 AM, Gianluigi wrote: > I can not understand how works TrayIcon. > Can someone help me. > Attached small demonstration who gives me these Warnigs: > > gbx3: warning: circular references detected: > gbx3: 1 FMain > gbx3: 1 DBusStatusIcon > gbx3: 1 DBusStatusIconMenu > gbx3: 1 TrayIcon > gbx3: 4 DBusObject > gbx3: 1 Picture > gbx3: warning: 192 allocation(s) non freed. > > Regards > Gianluigi > -- Lee __________ "Artificial Intelligence is no match for natural stupidity." -------------- next part -------------- [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=4.1.20-11-default Architecture=x86_64 Distribution=SuSE NAME="openSUSE Leap" VERSION="42.1" VERSION_ID="42.1" PRETTY_NAME="openSUSE Leap 42.1 (x86_64)" ID=opensuse ANSI_COLOR="0;32" CPE_NAME="cpe:/o:opensuse:opensuse:42.1" BUG_REPORT_URL="https://bugs.opensuse.org" HOME_URL="https://opensuse.org/" ID_LIKE="suse" Desktop=KDE5 Theme=Breeze Language=en_US.UTF-8 Memory=2001M [Libraries] Cairo=libcairo.so.2.11400.2 DBus=libdbus-1.so.3.8.11 GStreamer=libgstreamer-1.0.so.0.405.0 GTK+2=libgtk-x11-2.0.so.0.2400.29 OpenGL=libGL.so.1.2.0 QT4=libQtCore.so.4.8.6 [Environment] ALSA_CONFIG_PATH=/etc/alsa-pulse.conf AUDIODRIVER=pulseaudio COLORTERM=1 CONFIG_SITE=/usr/share/site/x86_64-unknown-linux-gnu CPU=x86_64 CSHEDIT=emacs CVS_RSH=ssh DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-4h6e2G2V0B,guid=e34dcb83a97105eab849e92a570fc81f DESKTOP_SESSION=/usr/share/xsessions/plasma5 DISPLAY=:0 FROM_HEADER= GB_GUI=gb.qt5 GPG_AGENT_INFO=/tmp/gpg-Gr9wpT/S.gpg-agent:5347:1 GPG_TTY=not a tty GS_LIB=/.fonts GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/.gtkrc-2.0:/.config/gtkrc-2.0 GTK_IM_MODULE=cedilla GTK_MODULES=canberra-gtk-module GTK_RC_FILES=/etc/gtk/gtkrc:/.gtkrc:/.config/gtkrc G_BROKEN_FILENAMES=1 G_FILENAME_ENCODING=@locale,UTF-8,ISO-8859-15,CP1252 HISTSIZE=1000 HOME= HOST= HOSTNAME= HOSTTYPE=x86_64 INPUTRC=/.inputrc JAVA_BINDIR=/usr/lib64/jvm/java/bin JAVA_HOME=/usr/lib64/jvm/java JAVA_ROOT=/usr/lib64/jvm/java JDK_HOME=/usr/lib64/jvm/java JRE_HOME=/usr/lib64/jvm/java/jre KDE_FULL_SESSION=true KDE_MULTIHEAD=false KDE_SESSION_UID=1000 KDE_SESSION_VERSION=5 LANG=en_US.UTF-8 LESS=-M -I -R LESSCLOSE=lessclose.sh %s %s LESSKEY=/etc/lesskey.bin LESSOPEN=lessopen.sh %s LESS_ADVANCED_PREPROCESSOR=no LOGNAME= MACHTYPE=x86_64-suse-linux MAIL=/var/spool/mail/ MANPATH=/usr/local/man:/usr/share/man MINICOM=-c on MORE=-sl NNTPSERVER=news OSTYPE=linux PAGER=less PATH=/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games PROFILEREAD=true PWD= PYTHONSTARTUP=/etc/pythonstart QEMU_AUDIO_DRV=pa QT_IM_MODULE=xim QT_IM_SWITCHER=imsw-multi QT_NO_GLIB=1 QT_SYSTEM_DIR=/usr/share/desktop-data SDK_HOME=/usr/lib64/jvm/java SDL_AUDIODRIVER=pulse SESSION_MANAGER=local/:@/tmp/.ICE-unix/5405,unix/:/tmp/.ICE-unix/5405 SHELL=/bin/bash SHLVL=1 SSH_AGENT_PID=5346 SSH_ASKPASS=/usr/lib/ssh/ksshaskpass SSH_AUTH_SOCK=/tmp/ssh-tNb4Lodia4cW/agent.5295 TERM=xterm TZ=:/etc/localtime USER= WINDOWMANAGER=/usr/bin/startkde XAUTHLOCALHOSTNAME= XAUTHORITY=/tmp/xauth-1000-_0 XCURSOR_SIZE=0 XCURSOR_THEME=breeze_cursors XDG_CONFIG_DIRS=/etc/xdg XDG_CURRENT_DESKTOP=KDE XDG_DATA_DIRS=/usr/share XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_CLASS=user XDG_SESSION_DESKTOP=KDE XDG_SESSION_ID=7 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session3 XDG_SESSION_TYPE=x11 XDG_VTNR=7 XKEYSYMDB=/usr/X11R6/lib/X11/XKeysymDB XMODIFIERS=@im=local XNLSPATH=/usr/share/X11/nls XSESSION_IS_UP=yes _=/usr/lib64/libexec/kf5/start_kdeinit_wrapper -------------- next part -------------- Application: Plasma (plasmashell), signal: Aborted Using host libthread_db library "/lib64/libthread_db.so.1". [Current thread is 1 (Thread 0x7fd02db827c0 (LWP 5437))] Thread 8 (Thread 0x7fd0175ba700 (LWP 5438)): #0 0x00007fd02708fbbd in poll () at /lib64/libc.so.6 #1 0x00007fd02bfdf422 in () at /usr/lib64/libxcb.so.1 #2 0x00007fd02bfe100f in xcb_wait_for_event () at /usr/lib64/libxcb.so.1 #3 0x00007fd01970b3c9 in () at /usr/lib64/libQt5XcbQpa.so.5 #4 0x00007fd02778832f in () at /usr/lib64/libQt5Core.so.5 #5 0x00007fd0268990a4 in start_thread () at /lib64/libpthread.so.0 #6 0x00007fd027097fed in clone () at /lib64/libc.so.6 Thread 7 (Thread 0x7fd014988700 (LWP 5465)): #0 0x00007fd0237afd14 in g_mutex_unlock () at /usr/lib64/libglib-2.0.so.0 #1 0x00007fd02376d759 in g_main_context_query () at /usr/lib64/libglib-2.0.so.0 #2 0x00007fd02376ddcf in () at /usr/lib64/libglib-2.0.so.0 #3 0x00007fd02376df7c in g_main_context_iteration () at /usr/lib64/libglib-2.0.so.0 #4 0x00007fd0279bad8b in QEventDispatcherGlib::processEvents(QFlags) () at /usr/lib64/libQt5Core.so.5 #5 0x00007fd027961d53 in QEventLoop::exec(QFlags) () at /usr/lib64/libQt5Core.so.5 #6 0x00007fd02778361a in QThread::exec() () at /usr/lib64/libQt5Core.so.5 #7 0x00007fd02aa95df8 in () at /usr/lib64/libQt5Qml.so.5 #8 0x00007fd02778832f in () at /usr/lib64/libQt5Core.so.5 #9 0x00007fd0268990a4 in start_thread () at /lib64/libpthread.so.0 #10 0x00007fd027097fed in clone () at /lib64/libc.so.6 Thread 6 (Thread 0x7fd002e3c700 (LWP 5473)): #0 0x00007fd02689d03f in pthread_cond_wait@@GLIBC_2.3.2 () at /lib64/libpthread.so.0 #1 0x00007fd00d943a13 in () at /usr/lib64/dri/r600_dri.so #2 0x00007fd00d943197 in () at /usr/lib64/dri/r600_dri.so #3 0x00007fd0268990a4 in start_thread () at /lib64/libpthread.so.0 #4 0x00007fd027097fed in clone () at /lib64/libc.so.6 Thread 5 (Thread 0x7fcffcd21700 (LWP 5478)): #0 0x00007fd0237afd14 in g_mutex_unlock () at /usr/lib64/libglib-2.0.so.0 #1 0x00007fd02376d4a0 in g_main_context_prepare () at /usr/lib64/libglib-2.0.so.0 #2 0x00007fd02376dd80 in () at /usr/lib64/libglib-2.0.so.0 #3 0x00007fd02376df7c in g_main_context_iteration () at /usr/lib64/libglib-2.0.so.0 #4 0x00007fd0279bad8b in QEventDispatcherGlib::processEvents(QFlags) () at /usr/lib64/libQt5Core.so.5 #5 0x00007fd027961d53 in QEventLoop::exec(QFlags) () at /usr/lib64/libQt5Core.so.5 #6 0x00007fd02778361a in QThread::exec() () at /usr/lib64/libQt5Core.so.5 #7 0x00007fd02aa95df8 in () at /usr/lib64/libQt5Qml.so.5 #8 0x00007fd02778832f in () at /usr/lib64/libQt5Core.so.5 #9 0x00007fd0268990a4 in start_thread () at /lib64/libpthread.so.0 #10 0x00007fd027097fed in clone () at /lib64/libc.so.6 Thread 4 (Thread 0x7fcff7461700 (LWP 5488)): #0 0x00007fd02708fbbd in poll () at /lib64/libc.so.6 #1 0x00007fd02376de64 in () at /usr/lib64/libglib-2.0.so.0 #2 0x00007fd02376df7c in g_main_context_iteration () at /usr/lib64/libglib-2.0.so.0 #3 0x00007fd0279bad8b in QEventDispatcherGlib::processEvents(QFlags) () at /usr/lib64/libQt5Core.so.5 #4 0x00007fd027961d53 in QEventLoop::exec(QFlags) () at /usr/lib64/libQt5Core.so.5 #5 0x00007fd02778361a in QThread::exec() () at /usr/lib64/libQt5Core.so.5 #6 0x00007fd02aa95df8 in () at /usr/lib64/libQt5Qml.so.5 #7 0x00007fd02778832f in () at /usr/lib64/libQt5Core.so.5 #8 0x00007fd0268990a4 in start_thread () at /lib64/libpthread.so.0 #9 0x00007fd027097fed in clone () at /lib64/libc.so.6 Thread 3 (Thread 0x7fcff5b17700 (LWP 5511)): #0 0x00007fd02689d03f in pthread_cond_wait@@GLIBC_2.3.2 () at /lib64/libpthread.so.0 #1 0x00007fd02d26486b in () at /usr/lib64/libQt5Script.so.5 #2 0x00007fd02d264899 in () at /usr/lib64/libQt5Script.so.5 #3 0x00007fd0268990a4 in start_thread () at /lib64/libpthread.so.0 #4 0x00007fd027097fed in clone () at /lib64/libc.so.6 Thread 2 (Thread 0x7fcf6e49e700 (LWP 5551)): #0 0x00007fd02708fbbd in poll () at /lib64/libc.so.6 #1 0x00007fd02376de64 in () at /usr/lib64/libglib-2.0.so.0 #2 0x00007fd02376df7c in g_main_context_iteration () at /usr/lib64/libglib-2.0.so.0 #3 0x00007fd0279bad8b in QEventDispatcherGlib::processEvents(QFlags) () at /usr/lib64/libQt5Core.so.5 #4 0x00007fd027961d53 in QEventLoop::exec(QFlags) () at /usr/lib64/libQt5Core.so.5 #5 0x00007fd02778361a in QThread::exec() () at /usr/lib64/libQt5Core.so.5 #6 0x00007fd02b631282 in () at /usr/lib64/libQt5Quick.so.5 #7 0x00007fd02778832f in () at /usr/lib64/libQt5Core.so.5 #8 0x00007fd0268990a4 in start_thread () at /lib64/libpthread.so.0 #9 0x00007fd027097fed in clone () at /lib64/libc.so.6 Thread 1 (Thread 0x7fd02db827c0 (LWP 5437)): [KCrash Handler] #6 0x00007fd026fe80a7 in raise () at /lib64/libc.so.6 #7 0x00007fd026fe9458 in abort () at /lib64/libc.so.6 #8 0x00007fd0273f1b8d in __gnu_cxx::__verbose_terminate_handler() () at /usr/lib64/libstdc++.so.6 #9 0x00007fd0273efbf6 in () at /usr/lib64/libstdc++.so.6 #10 0x00007fd0273efc41 in () at /usr/lib64/libstdc++.so.6 #11 0x00007fd0273efe58 in () at /usr/lib64/libstdc++.so.6 #12 0x00007fd027771c62 in () at /usr/lib64/libQt5Core.so.5 #13 0x00007fd0277ed313 in QListData::append(int) () at /usr/lib64/libQt5Core.so.5 #14 0x00007fcf663da907 in () at /usr/lib64/qt5/plugins/plasma/dataengine/plasma_engine_statusnotifieritem.so #15 0x00007fcf663d7c9d in () at /usr/lib64/qt5/plugins/plasma/dataengine/plasma_engine_statusnotifieritem.so #16 0x00007fd02799373f in QMetaObject::activate(QObject*, int, int, void**) () at /usr/lib64/libQt5Core.so.5 #17 0x00007fd02874bcaf in QDBusPendingCallWatcher::finished(QDBusPendingCallWatcher*) () at /usr/lib64/libQt5DBus.so.5 #18 0x00007fd02874d2f7 in () at /usr/lib64/libQt5DBus.so.5 #19 0x00007fd027994ac6 in QObject::event(QEvent*) () at /usr/lib64/libQt5Core.so.5 #20 0x00007fd028cdce7c in QApplicationPrivate::notify_helper(QObject*, QEvent*) () at /usr/lib64/libQt5Widgets.so.5 #21 0x00007fd028ce1cc8 in QApplication::notify(QObject*, QEvent*) () at /usr/lib64/libQt5Widgets.so.5 #22 0x00007fd027963e95 in QCoreApplication::notifyInternal(QObject*, QEvent*) () at /usr/lib64/libQt5Core.so.5 #23 0x00007fd027966057 in QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) () at /usr/lib64/libQt5Core.so.5 #24 0x00007fd0279bb8f3 in () at /usr/lib64/libQt5Core.so.5 #25 0x00007fd02376dc84 in g_main_context_dispatch () at /usr/lib64/libglib-2.0.so.0 #26 0x00007fd02376ded8 in () at /usr/lib64/libglib-2.0.so.0 #27 0x00007fd02376df7c in g_main_context_iteration () at /usr/lib64/libglib-2.0.so.0 #28 0x00007fd0279bad6c in QEventDispatcherGlib::processEvents(QFlags) () at /usr/lib64/libQt5Core.so.5 #29 0x00007fd027961d53 in QEventLoop::exec(QFlags) () at /usr/lib64/libQt5Core.so.5 #30 0x00007fd0279698f6 in QCoreApplication::exec() () at /usr/lib64/libQt5Core.so.5 #31 0x0000000000436b3d in main () From jussi.lahtinen at ...626... Thu Apr 14 19:23:17 2016 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Thu, 14 Apr 2016 20:23:17 +0300 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: Message-ID: Works here as expected. [System] Gambas=3.8.90 r7641 OperatingSystem=Linux Kernel=3.13.0-37-generic Architecture=x86_64 Distribution=Linux Mint 17.2 Rafaela Desktop=GNOME Theme=Gtk Language=en_US.UTF-8 Memory=7985M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.23 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 [Environment] CLUTTER_BACKEND=x11 CLUTTER_IM_MODULE=xim DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-ApT2GP0X1b,guid=09bf30fd6076e20326d7ed1d570fa475 DEFAULTS_PATH=/usr/share/gconf/cinnamon.default.path DESKTOP_SESSION=cinnamon DISPLAY=:0.0 GB_GUI=gb.qt4 GB_PROFILE_MAX=1000 GDMSESSION=cinnamon GDM_XSERVER_LOCATION=local GIO_LAUNCHED_DESKTOP_FILE=/Desktop/Gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=7429 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/run/user/1000/keyring-ODSNlb GPG_AGENT_INFO=/run/user/1000/keyring-ODSNlb/gpg:0:1 GTK_IM_MODULE=xim HOME= INSIDE_NEMO_PYTHON= LANG=en_US.UTF-8 LC_ADDRESS=fi_FI.UTF-8 LC_IDENTIFICATION=fi_FI.UTF-8 LC_MEASUREMENT=fi_FI.UTF-8 LC_MONETARY=fi_FI.UTF-8 LC_NAME=fi_FI.UTF-8 LC_NUMERIC=fi_FI.UTF-8 LC_PAPER=fi_FI.UTF-8 LC_TELEPHONE=fi_FI.UTF-8 LC_TIME=en_US.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/cinnamon.mandatory.path MDMSESSION=cinnamon MDM_LANG=en_US.UTF-8 MDM_XSERVER_LOCATION=local PAPERSIZE=letter PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT4_IM_MODULE=xim SESSION_MANAGER=local/:@/tmp/.ICE-unix/2011,unix/:/tmp/.ICE-unix/2011 SHELL=/bin/bash SSH_AGENT_PID=2085 SSH_AUTH_SOCK=/run/user/1000/keyring-ODSNlb/ssh TEXTDOMAIN=im-config TEXTDOMAINDIR=/usr/share/locale/ TZ=:/etc/localtime USER= USERNAME= WINDOWPATH=8 XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg XDG_CURRENT_DESKTOP=X-Cinnamon XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SESSION_COOKIE=5a45fa29109f0ee2389b1b0355283726-1460642933.241135-960079892 XDG_SESSION_DESKTOP=cinnamon XDG_SESSION_ID=c2 XDG_VTNR=8 XMODIFIERS=@im=none Jussi On Thu, Apr 14, 2016 at 6:29 PM, Gianluigi wrote: > I can not understand how works TrayIcon. > Can someone help me. > Attached small demonstration who gives me these Warnigs: > > gbx3: warning: circular references detected: > gbx3: 1 FMain > gbx3: 1 DBusStatusIcon > gbx3: 1 DBusStatusIconMenu > gbx3: 1 TrayIcon > gbx3: 4 DBusObject > gbx3: 1 Picture > gbx3: warning: 192 allocation(s) non freed. > > Regards > Gianluigi > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From bagonergi at ...626... Thu Apr 14 19:46:16 2016 From: bagonergi at ...626... (Gianluigi) Date: Thu, 14 Apr 2016 19:46:16 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: <570FCC86.2020105@...626...> References: <570FCC86.2020105@...626...> Message-ID: Excuse me Lee, I did not believe that I created a monster, with so few lines of code. Ciao Gianluigi 2016-04-14 18:59 GMT+02:00 T Lee Davidson : > I cannot help you understand it, GianLuigi, because I don't understand it > either. But, I can say that it didn't play nice with my KDE Plasma v5.5.5 > on Qt v5.5.1. It kept repeatedly crashing Plasma in a loop until I killed > it. > > > On 04/14/2016 11:29 AM, Gianluigi wrote: > >> I can not understand how works TrayIcon. >> Can someone help me. >> Attached small demonstration who gives me these Warnigs: >> >> gbx3: warning: circular references detected: >> gbx3: 1 FMain >> gbx3: 1 DBusStatusIcon >> gbx3: 1 DBusStatusIconMenu >> gbx3: 1 TrayIcon >> gbx3: 4 DBusObject >> gbx3: 1 Picture >> gbx3: warning: 192 allocation(s) non freed. >> >> Regards >> Gianluigi >> >> > -- > Lee > __________ > > "Artificial Intelligence is no match for natural stupidity." > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From bagonergi at ...626... Thu Apr 14 19:58:15 2016 From: bagonergi at ...626... (Gianluigi) Date: Thu, 14 Apr 2016 19:58:15 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: Message-ID: Hello Jussi, the world is beautiful because it is different or variety is the spice of life. :-) Regards Gianluigi [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.19.0-58-generic Architecture=x86_64 Distribution=Ubuntu 14.04.4 LTS Desktop=GNOME Theme=Cleanlooks Language=it_IT.UTF-8 Memory=15976M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.23 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 [Environment] CLUTTER_IM_MODULE=xim COMPIZ_BIN_PATH=/usr/bin/ COMPIZ_CONFIG_PROFILE=ubuntu DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-7Cbk2uWoQ6 DEFAULTS_PATH=/usr/share/gconf/ubuntu.default.path DESKTOP_SESSION=ubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=ubuntu GDM_LANG=it GIO_LAUNCHED_DESKTOP_FILE=/usr/share/applications/gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=5655 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/run/user/1000/keyring-udkrLt GNOME_KEYRING_PID=1685 GPG_AGENT_INFO=/run/user/1000/keyring-udkrLt/gpg:0:1 GTK_IM_MODULE=ibus GTK_MODULES=overlay-scrollbar:unity-gtk-module HOME=/home/ IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=it_IT.UTF-8 LANGUAGE=it LOGNAME= MANDATORY_PATH=/usr/share/gconf/ubuntu.mandatory.path PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD=/home/ QT4_IM_MODULE=xim QT_IM_MODULE=ibus QT_QPA_PLATFORMTHEME=appmenu-qt5 SELINUX_INIT=YES SESSION=ubuntu SESSIONTYPE=gnome-session SESSION_MANAGER=local/:@/tmp/.ICE-unix/1729,unix/:/tmp/.ICE-unix/1729 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring-udkrLt/ssh TEXTDOMAIN=im-config TEXTDOMAINDIR=/usr/share/locale/ TZ=:/etc/localtime UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1590 USER= XAUTHORITY=/home//.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg XDG_CURRENT_DESKTOP=Unity XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_VTNR=7 XMODIFIERS=@im=ibus 2016-04-14 19:23 GMT+02:00 Jussi Lahtinen : > Works here as expected. > > [System] > Gambas=3.8.90 r7641 > OperatingSystem=Linux > Kernel=3.13.0-37-generic > Architecture=x86_64 > Distribution=Linux Mint 17.2 Rafaela > Desktop=GNOME > Theme=Gtk > Language=en_US.UTF-8 > Memory=7985M > > [Libraries] > Cairo=libcairo.so.2.11301.0 > Curl=libcurl.so.4.3.0 > DBus=libdbus-1.so.3.7.6 > GStreamer=libgstreamer-0.10.so.0.30.0 > GStreamer=libgstreamer-1.0.so.0.204.0 > GTK+2=libgtk-x11-2.0.so.0.2400.23 > GTK+3=libgtk-3.so.0.1000.8 > OpenGL=libGL.so.1.2.0 > Poppler=libpoppler.so.44.0.0 > QT4=libQtCore.so.4.8.6 > QT5=libQt5Core.so.5.2.1 > SDL=libSDL-1.2.so.0.11.4 > > [Environment] > CLUTTER_BACKEND=x11 > CLUTTER_IM_MODULE=xim > > DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-ApT2GP0X1b,guid=09bf30fd6076e20326d7ed1d570fa475 > DEFAULTS_PATH=/usr/share/gconf/cinnamon.default.path > DESKTOP_SESSION=cinnamon > DISPLAY=:0.0 > GB_GUI=gb.qt4 > GB_PROFILE_MAX=1000 > GDMSESSION=cinnamon > GDM_XSERVER_LOCATION=local > GIO_LAUNCHED_DESKTOP_FILE=/Desktop/Gambas3.desktop > GIO_LAUNCHED_DESKTOP_FILE_PID=7429 > GNOME_DESKTOP_SESSION_ID=this-is-deprecated > GNOME_KEYRING_CONTROL=/run/user/1000/keyring-ODSNlb > GPG_AGENT_INFO=/run/user/1000/keyring-ODSNlb/gpg:0:1 > GTK_IM_MODULE=xim > HOME= > INSIDE_NEMO_PYTHON= > LANG=en_US.UTF-8 > LC_ADDRESS=fi_FI.UTF-8 > LC_IDENTIFICATION=fi_FI.UTF-8 > LC_MEASUREMENT=fi_FI.UTF-8 > LC_MONETARY=fi_FI.UTF-8 > LC_NAME=fi_FI.UTF-8 > LC_NUMERIC=fi_FI.UTF-8 > LC_PAPER=fi_FI.UTF-8 > LC_TELEPHONE=fi_FI.UTF-8 > LC_TIME=en_US.UTF-8 > LOGNAME= > MANDATORY_PATH=/usr/share/gconf/cinnamon.mandatory.path > MDMSESSION=cinnamon > MDM_LANG=en_US.UTF-8 > MDM_XSERVER_LOCATION=local > PAPERSIZE=letter > > PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games > PWD= > QT4_IM_MODULE=xim > > SESSION_MANAGER=local/:@/tmp/.ICE-unix/2011,unix/:/tmp/.ICE-unix/2011 > SHELL=/bin/bash > SSH_AGENT_PID=2085 > SSH_AUTH_SOCK=/run/user/1000/keyring-ODSNlb/ssh > TEXTDOMAIN=im-config > TEXTDOMAINDIR=/usr/share/locale/ > TZ=:/etc/localtime > USER= > USERNAME= > WINDOWPATH=8 > XAUTHORITY=/.Xauthority > XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg > XDG_CURRENT_DESKTOP=X-Cinnamon > > XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/ > XDG_RUNTIME_DIR=/run/user/1000 > XDG_SEAT=seat0 > > XDG_SESSION_COOKIE=5a45fa29109f0ee2389b1b0355283726-1460642933.241135-960079892 > XDG_SESSION_DESKTOP=cinnamon > XDG_SESSION_ID=c2 > XDG_VTNR=8 > XMODIFIERS=@im=none > > > > Jussi > > On Thu, Apr 14, 2016 at 6:29 PM, Gianluigi wrote: > > > I can not understand how works TrayIcon. > > Can someone help me. > > Attached small demonstration who gives me these Warnigs: > > > > gbx3: warning: circular references detected: > > gbx3: 1 FMain > > gbx3: 1 DBusStatusIcon > > gbx3: 1 DBusStatusIconMenu > > gbx3: 1 TrayIcon > > gbx3: 4 DBusObject > > gbx3: 1 Picture > > gbx3: warning: 192 allocation(s) non freed. > > > > Regards > > Gianluigi > > > > > > > ------------------------------------------------------------------------------ > > Find and fix application performance issues faster with Applications > > Manager > > Applications Manager provides deep performance insights into multiple > > tiers of > > your business applications. It resolves application problems quickly and > > reduces your MTTR. Get your free trial! > > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Thu Apr 14 20:01:37 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 14 Apr 2016 20:01:37 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: <570FCC86.2020105@...626...> Message-ID: <570FDB01.9060602@...1...> Le 14/04/2016 19:46, Gianluigi a ?crit : > Excuse me Lee, > I did not believe that I created a monster, with so few lines of code. > Ciao > Gianluigi > What make Plasma crashes is setting the menu. I will investigate why exactly... I surely badly implemented a DBus answer for a corner case, but Plasma should not crash just because of a trayicon! -- Beno?t Minisini From gambas at ...1... Fri Apr 15 01:28:01 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 15 Apr 2016 01:28:01 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: <570FDB01.9060602@...1...> References: <570FCC86.2020105@...626...> <570FDB01.9060602@...1...> Message-ID: <57102781.1070804@...1...> Le 14/04/2016 20:01, Beno?t Minisini a ?crit : > Le 14/04/2016 19:46, Gianluigi a ?crit : >> Excuse me Lee, >> I did not believe that I created a monster, with so few lines of code. >> Ciao >> Gianluigi >> > > What make Plasma crashes is setting the menu. I will investigate why > exactly... I surely badly implemented a DBus answer for a corner case, > but Plasma should not crash just because of a trayicon! > It's the menu shortcuts that Plasma do not like. But apparently I export them correctly. Investigation continue... -- Beno?t Minisini From author.ilmi at ...626... Fri Apr 15 02:26:31 2016 From: author.ilmi at ...626... (zainudin ahmad) Date: Fri, 15 Apr 2016 07:26:31 +0700 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: Message-ID: That is from your code, maybe this can help. - Set property Persistent (Form property) to true ( http://gambaswiki.org/wiki/comp/gb.qt4/window/persistent) - Use _new() event instead open() - When close(exit) don't use quit, just set me.persistent = false and $hTray.Delete() attach fix project :) , I hope it's work On Thu, Apr 14, 2016 at 10:29 PM, Gianluigi wrote: > I can not understand how works TrayIcon. > Can someone help me. > Attached small demonstration who gives me these Warnigs: > > gbx3: warning: circular references detected: > gbx3: 1 FMain > gbx3: 1 DBusStatusIcon > gbx3: 1 DBusStatusIconMenu > gbx3: 1 TrayIcon > gbx3: 4 DBusObject > gbx3: 1 Picture > gbx3: warning: 192 allocation(s) non freed. > > Regards > Gianluigi > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -------------- next part -------------- A non-text attachment was scrubbed... Name: MyTrayen-0.0.1.tar.gz Type: application/x-gzip Size: 13597 bytes Desc: not available URL: From bagonergi at ...626... Fri Apr 15 15:53:11 2016 From: bagonergi at ...626... (Gianluigi) Date: Fri, 15 Apr 2016 15:53:11 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: Message-ID: Thank you Zainudin, unfortunately, also with your interesting code, I do not go out from application. See attached image (Stop is red). Regards Gianluigi 2016-04-15 2:26 GMT+02:00 zainudin ahmad : > That is from your code, maybe this can help. > > - Set property Persistent (Form property) to true ( > http://gambaswiki.org/wiki/comp/gb.qt4/window/persistent) > - Use _new() event instead open() > - When close(exit) don't use quit, just set me.persistent = false and > $hTray.Delete() > > attach fix project :) , I hope it's work > > On Thu, Apr 14, 2016 at 10:29 PM, Gianluigi wrote: > > > I can not understand how works TrayIcon. > > Can someone help me. > > Attached small demonstration who gives me these Warnigs: > > > > gbx3: warning: circular references detected: > > gbx3: 1 FMain > > gbx3: 1 DBusStatusIcon > > gbx3: 1 DBusStatusIconMenu > > gbx3: 1 TrayIcon > > gbx3: 4 DBusObject > > gbx3: 1 Picture > > gbx3: warning: 192 allocation(s) non freed. > > > > Regards > > Gianluigi > > > > > > > ------------------------------------------------------------------------------ > > Find and fix application performance issues faster with Applications > > Manager > > Applications Manager provides deep performance insights into multiple > > tiers of > > your business applications. It resolves application problems quickly and > > reduces your MTTR. Get your free trial! > > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -------------- next part -------------- A non-text attachment was scrubbed... Name: Mytrayen.png Type: image/png Size: 22343 bytes Desc: not available URL: From gambas at ...1... Fri Apr 15 15:59:18 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 15 Apr 2016 15:59:18 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: Message-ID: <5710F3B6.3080503@...1...> Le 15/04/2016 15:53, Gianluigi a ?crit : > Thank you Zainudin, > unfortunately, also with your interesting code, I do not go out from > application. > See attached image (Stop is red). > Regards > Gianluigi > The bug should be fixed in revision #7745. Regards, -- Beno?t Minisini From bagonergi at ...626... Fri Apr 15 16:29:22 2016 From: bagonergi at ...626... (Gianluigi) Date: Fri, 15 Apr 2016 16:29:22 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: <5710F3B6.3080503@...1...> References: <5710F3B6.3080503@...1...> Message-ID: Thank you very much Benoit Regards Gianluigi 2016-04-15 15:59 GMT+02:00 Beno?t Minisini : > Le 15/04/2016 15:53, Gianluigi a ?crit : > > Thank you Zainudin, > > unfortunately, also with your interesting code, I do not go out from > > application. > > See attached image (Stop is red). > > Regards > > Gianluigi > > > > The bug should be fixed in revision #7745. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From t.lee.davidson at ...626... Fri Apr 15 20:21:43 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Fri, 15 Apr 2016 14:21:43 -0400 Subject: [Gambas-user] TrayIcon question (Plasma) In-Reply-To: <570FDB01.9060602@...1...> References: <570FCC86.2020105@...626...> <570FDB01.9060602@...1...> Message-ID: <57113137.3090302@...626...> On 04/14/2016 02:01 PM, Beno?t Minisini wrote: > Le 14/04/2016 19:46, Gianluigi a ?crit : >> Excuse me Lee, >> I did not believe that I created a monster, with so few lines of code. >> Ciao >> Gianluigi >> > > What make Plasma crashes is setting the menu. I will investigate why > exactly... I surely badly implemented a DBus answer for a corner case, > but Plasma should not crash just because of a trayicon! > I don't know if it's related, but I noticed that Gambas does not seem to recognize that I do indeed have libQt5Core.so installed; while Jussi's and GianLuigi's do show libQt5Core in their system information. `locate libQt5Core.so`: /usr/lib64/libQt5Core.so /usr/lib64/libQt5Core.so.5 /usr/lib64/libQt5Core.so.5.5 /usr/lib64/libQt5Core.so.5.5.1 [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=4.1.20-11-default Architecture=x86_64 Distribution=SuSE NAME="openSUSE Leap" VERSION="42.1" VERSION_ID="42.1" PRETTY_NAME="openSUSE Leap 42.1 (x86_64)" ID=opensuse ANSI_COLOR="0;32" CPE_NAME="cpe:/o:opensuse:opensuse:42.1" BUG_REPORT_URL="https://bugs.opensuse.org" HOME_URL="https://opensuse.org/" ID_LIKE="suse" Desktop=KDE5 Theme=Breeze Language=en_US.UTF-8 Memory=2001M [Libraries] Cairo=libcairo.so.2.11400.2 DBus=libdbus-1.so.3.8.11 GStreamer=libgstreamer-1.0.so.0.405.0 GTK+2=libgtk-x11-2.0.so.0.2400.29 OpenGL=libGL.so.1.2.0 QT4=libQtCore.so.4.8.6 ** [Environment] --snipped-- ** No libQt5Core in Libaries. -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From bugtracker at ...3416... Fri Apr 15 20:33:13 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 15 Apr 2016 18:33:13 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #918: Debian package does not build if it relies on library Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.918&from=L21haW4- C THAL reported a new bug. Summary ------- Debian package does not build if it relies on library Type : Bug Priority : High Gambas version : 3.8.90 (TRUNK) Product : Development Environment Description ----------- If I build a Debian package from a project or a library, which uses a Gambas lib named "deglib-gb" it does not build correctly: dpkg-gencontrol: Warnung: Abh?ngigkeit gambas3-:deganius/deglib-gb:1-2 (>= 3.8) kann nicht ausgewertet werden That means: dpkg-gencontrol: warning: can't parse dependency gambas3-:deganius/deglib-gb:1-2 (>= 3.8) There seems to be a problem with the string "gambas3-:deganius/deglib-gb". The correct name of the Debian package is deganius-deglib-gb, because it uses the vendor-name "Deganius". From bugtracker at ...3416... Fri Apr 15 20:33:26 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 15 Apr 2016 18:33:26 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #918: Debian package does not build if it relies on library In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.918&from=L21haW4- C THAL added an attachment: buildlog.txt From bugtracker at ...3416... Fri Apr 15 22:58:40 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 15 Apr 2016 20:58:40 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #752: Gambas shows - gbx3: warning: trying to watch fd #-1 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.752&from=L21haW4- Comment #3 by Alexander KUIPER: Ok, finally found the way to reproduce it with a simple project (with a bigger project is it more visible). Also reproduced on Gambas3 3.8.4. To reproduce it, do as follows: - gunzip/tar the testsocket.example.tar.gz - in the "TestSocket" you will find 2 files: "test.sh" and "TestSocket.gambas" - Start TestSocket.gambas in a normal window - Start test.sh in another window - Wait about 5-10 minutes (max), and you will see the message "gbx3: warning: trying to watch fd #-1" Alexander KUIPER changed the state of the bug to: Opened. From bugtracker at ...3416... Fri Apr 15 22:58:48 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 15 Apr 2016 20:58:48 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #752: Gambas shows - gbx3: warning: trying to watch fd #-1 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.752&from=L21haW4- Alexander KUIPER added an attachment: TestSocket.example.tar.gz From bagonergi at ...626... Fri Apr 15 23:01:43 2016 From: bagonergi at ...626... (Gianluigi) Date: Fri, 15 Apr 2016 23:01:43 +0200 Subject: [Gambas-user] Trunk compilation error Message-ID: I tried to install the latest trunk of a virtual machine with Ubuntu 15.10. The clone with an already installed Gambas3 stable 3.8.4. I attach log files with errors, and system informations of the clone with stable. Regards Gianluigi -------------- next part -------------- A non-text attachment was scrubbed... Name: compile.log.tar.bz2 Type: application/x-bzip2 Size: 18643 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: SystemInformation Type: application/octet-stream Size: 2252 bytes Desc: not available URL: From gambas at ...1... Fri Apr 15 23:09:26 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 15 Apr 2016 23:09:26 +0200 Subject: [Gambas-user] Trunk compilation error In-Reply-To: References: Message-ID: <57115886.2070104@...1...> Le 15/04/2016 23:01, Gianluigi a ?crit : > I tried to install the latest trunk of a virtual machine with Ubuntu 15.10. > The clone with an already installed Gambas3 stable 3.8.4. > I attach log files with errors, and system informations of the clone with > stable. > Regards > Gianluigi > Oops, sorry, I forgot to commit some files! -- Beno?t Minisini From gambas at ...1... Fri Apr 15 23:11:37 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Fri, 15 Apr 2016 23:11:37 +0200 Subject: [Gambas-user] Trunk compilation error In-Reply-To: <57115886.2070104@...1...> References: <57115886.2070104@...1...> Message-ID: <57115909.6040908@...1...> Le 15/04/2016 23:09, Beno?t Minisini a ?crit : > Le 15/04/2016 23:01, Gianluigi a ?crit : >> I tried to install the latest trunk of a virtual machine with Ubuntu >> 15.10. >> The clone with an already installed Gambas3 stable 3.8.4. >> I attach log files with errors, and system informations of the clone with >> stable. >> Regards >> Gianluigi >> > > Oops, sorry, I forgot to commit some files! > Is it better with revision #7746? -- Beno?t Minisini From bagonergi at ...626... Fri Apr 15 23:33:13 2016 From: bagonergi at ...626... (Gianluigi) Date: Fri, 15 Apr 2016 23:33:13 +0200 Subject: [Gambas-user] Trunk compilation error In-Reply-To: <57115909.6040908@...1...> References: <57115886.2070104@...1...> <57115909.6040908@...1...> Message-ID: Yes Benoit, very well thank you Regards Gianluigi 2016-04-15 23:11 GMT+02:00 Beno?t Minisini : > Le 15/04/2016 23:09, Beno?t Minisini a ?crit : > > Le 15/04/2016 23:01, Gianluigi a ?crit : > >> I tried to install the latest trunk of a virtual machine with Ubuntu > >> 15.10. > >> The clone with an already installed Gambas3 stable 3.8.4. > >> I attach log files with errors, and system informations of the clone > with > >> stable. > >> Regards > >> Gianluigi > >> > > > > Oops, sorry, I forgot to commit some files! > > > > Is it better with revision #7746? > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bagonergi at ...626... Sat Apr 16 00:00:55 2016 From: bagonergi at ...626... (Gianluigi) Date: Sat, 16 Apr 2016 00:00:55 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: <5710F3B6.3080503@...1...> References: <5710F3B6.3080503@...1...> Message-ID: Unfortunately, even with the trunk, does not change anything With $hTray.Delete() I do not go out from application and Quit gives me warnigs. Regards Gianluigi 2016-04-15 15:59 GMT+02:00 Beno?t Minisini : > Le 15/04/2016 15:53, Gianluigi a ?crit : > > Thank you Zainudin, > > unfortunately, also with your interesting code, I do not go out from > > application. > > See attached image (Stop is red). > > Regards > > Gianluigi > > > > The bug should be fixed in revision #7745. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Sat Apr 16 00:27:01 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Sat, 16 Apr 2016 00:27:01 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: <5710F3B6.3080503@...1...> Message-ID: <57116AB5.5050207@...1...> Le 16/04/2016 00:00, Gianluigi a ?crit : > Unfortunately, even with the trunk, does not change anything > With $hTray.Delete() I do not go out from application and Quit gives me > warnigs. > Regards > Gianluigi > You must hide the trayicon to allow the application to quit. -- Beno?t Minisini From author.ilmi at ...626... Sat Apr 16 02:40:10 2016 From: author.ilmi at ...626... (zainudin ahmad) Date: Sat, 16 Apr 2016 07:40:10 +0700 Subject: [Gambas-user] TrayIcon question In-Reply-To: <57116AB5.5050207@...1...> References: <5710F3B6.3080503@...1...> <57116AB5.5050207@...1...> Message-ID: This example more clear, attach file I hope it's work On Sat, Apr 16, 2016 at 5:27 AM, Beno?t Minisini < gambas at ...1...> wrote: > Le 16/04/2016 00:00, Gianluigi a ?crit : > > Unfortunately, even with the trunk, does not change anything > > With $hTray.Delete() I do not go out from application and Quit gives me > > warnigs. > > Regards > > Gianluigi > > > > You must hide the trayicon to allow the application to quit. > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -------------- next part -------------- A non-text attachment was scrubbed... Name: MyTrayen-0.0.1.tar.gz Type: application/x-gzip Size: 13657 bytes Desc: not available URL: From bugtracker at ...3416... Sat Apr 16 09:45:03 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 16 Apr 2016 07:45:03 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #919: FileChooser always shows directory panel, even when visible=false Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.919&from=L21haW4- Alexander KUIPER reported a new bug. Summary ------- FileChooser always shows directory panel, even when visible=false Type : Bug Priority : Medium Gambas version : 3.8 Product : Development Environment Description ----------- When using the filechooser, but only want to select/view/choose from a specific directory, it isn't possible to hide the directory panel on the left. It is possible to change visibility to false, but it just empties the panel, but doesn't hide it - as expected. See the example project and screenshot. I believe this worked in earlier Gambas3 (e.g. 3.6.1)? System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.13.0-79-generic Architecture=x86_64 Distribution=Ubuntu 14.04.4 LTS Desktop=GNOME Theme=Gtk Language=en_US.UTF-8 Memory=980M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.27 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 [Environment] CLUTTER_IM_MODULE=xim COLORTERM=gnome-terminal COMPIZ_BIN_PATH=/usr/bin/ COMPIZ_CONFIG_PROFILE=ubuntu DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-CKsI05Pf4P DEFAULTS_PATH=/usr/share/gconf/ubuntu.default.path DESKTOP_SESSION=ubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=ubuntu GDM_LANG=en_US GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/run/user/1000/keyring-GGg4gU GNOME_KEYRING_PID=2842 GPG_AGENT_INFO=/run/user/1000/keyring-GGg4gU/gpg:0:1 GTK_IM_MODULE=ibus GTK_MODULES=overlay-scrollbar:unity-gtk-module HOME= IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=en_US.UTF-8 LANGUAGE=en_US LC_ADDRESS=nl_NL.UTF-8 LC_IDENTIFICATION=nl_NL.UTF-8 LC_MEASUREMENT=nl_NL.UTF-8 LC_MONETARY=nl_NL.UTF-8 LC_NAME=nl_NL.UTF-8 LC_NUMERIC=nl_NL.UTF-8 LC_PAPER=nl_NL.UTF-8 LC_TELEPHONE=nl_NL.UTF-8 LC_TIME=nl_NL.UTF-8 LESSCLOSE=/usr/bin/lesspipe %s %s LESSOPEN=| /usr/bin/lesspipe %s LOGNAME= LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36: MANDATORY_PATH=/usr/share/gconf/ubuntu.mandatory.path OLDPWD= PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD=/domotiga/DomotiGa3/.src QT4_IM_MODULE=xim QT_IM_MODULE=ibus QT_QPA_PLATFORMTHEME=appmenu-qt5 SELINUX_INIT=YES SESSION=ubuntu SESSIONTYPE=gnome-session SESSION_MANAGER=local/:@/tmp/.ICE-unix/2943,unix/:/tmp/.ICE-unix/2943 SHELL=/bin/bash SHLVL=1 SSH_AUTH_SOCK=/run/user/1000/keyring-GGg4gU/ssh TERM=xterm TEXTDOMAIN=im-config TEXTDOMAINDIR=/usr/share/locale/ TZ=:/etc/localtime UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/2613 USER= VTE_VERSION=3409 WINDOWID=58720267 XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg XDG_CURRENT_DESKTOP=Unity XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_VTNR=7 XMODIFIERS=@...3498...=ibus _=/usr/bin/gambas3 From bugtracker at ...3416... Sat Apr 16 09:45:19 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 16 Apr 2016 07:45:19 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #919: FileChooser always shows directory panel, even when visible=false In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.919&from=L21haW4- Alexander KUIPER added an attachment: FileChooser-Without-Dir.tar.gz From bugtracker at ...3416... Sat Apr 16 09:45:33 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 16 Apr 2016 07:45:33 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #919: FileChooser always shows directory panel, even when visible=false In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.919&from=L21haW4- Alexander KUIPER added an attachment: screenshot.png From bugtracker at ...3416... Sat Apr 16 09:45:27 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 16 Apr 2016 07:45:27 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #919: FileChooser always shows directory panel, even when visible=false In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.919&from=L21haW4- Alexander KUIPER added an attachment: screenshot.png From bugtracker at ...3416... Sat Apr 16 12:35:26 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 16 Apr 2016 10:35:26 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #920: Optimize JSON.Encode for big data structures, lowers execution time from seconds to milliseconds. Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.920&from=L21haW4- Alexander KUIPER reported a new bug. Summary ------- Optimize JSON.Encode for big data structures, lowers execution time from seconds to milliseconds. Type : Request Priority : Medium Gambas version : 3.8 Product : Unknown Description ----------- The JSON.Encode works fine for small data structures, but when I was testing with a big dat structure (5000 entries), the performance of the JSON.Encode takes 4-10 seconds. This looks to be caused by the string appending call "&=" (which is called recursive). By replacing the "&=" concatenation with a stream and using the latest "Open String" feature, it goes from seconds to milliseconds. The Gambas3 JSON.Encode call takes +/- 8 seconds START - JSON.Encode - 04/16/2016 12:33:34.645 STOP - JSON.Encode - 04/16/2016 12:33:42.037 Same call with using Streams - less then 120 milliseconds: START - JEncode - 04/16/2016 12:33:34.528 STOP - JEncode - 04/16/2016 12:33:34.637 BTW: See the attached example project, with the JEncode function System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.13.0-79-generic Architecture=x86_64 Distribution=Ubuntu 14.04.4 LTS Desktop=GNOME Theme=Gtk Language=en_US.UTF-8 Memory=980M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.27 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 [Environment] CLUTTER_IM_MODULE=xim COLORTERM=gnome-terminal COMPIZ_BIN_PATH=/usr/bin/ COMPIZ_CONFIG_PROFILE=ubuntu DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-CKsI05Pf4P DEFAULTS_PATH=/usr/share/gconf/ubuntu.default.path DESKTOP_SESSION=ubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=ubuntu GDM_LANG=en_US GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/run/user/1000/keyring-GGg4gU GNOME_KEYRING_PID=2842 GPG_AGENT_INFO=/run/user/1000/keyring-GGg4gU/gpg:0:1 GTK_IM_MODULE=ibus GTK_MODULES=overlay-scrollbar:unity-gtk-module HOME= IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=en_US.UTF-8 LANGUAGE=en_US LC_ADDRESS=nl_NL.UTF-8 LC_IDENTIFICATION=nl_NL.UTF-8 LC_MEASUREMENT=nl_NL.UTF-8 LC_MONETARY=nl_NL.UTF-8 LC_NAME=nl_NL.UTF-8 LC_NUMERIC=nl_NL.UTF-8 LC_PAPER=nl_NL.UTF-8 LC_TELEPHONE=nl_NL.UTF-8 LC_TIME=nl_NL.UTF-8 LESSCLOSE=/usr/bin/lesspipe %s %s LESSOPEN=| /usr/bin/lesspipe %s LOGNAME= LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.axa=00;36:*.oga=00;36:*.spx=00;36:*.xspf=00;36: MANDATORY_PATH=/usr/share/gconf/ubuntu.mandatory.path OLDPWD=/JSONEncodeImprovement/.src PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT4_IM_MODULE=xim QT_IM_MODULE=ibus QT_QPA_PLATFORMTHEME=appmenu-qt5 SELINUX_INIT=YES SESSION=ubuntu SESSIONTYPE=gnome-session SESSION_MANAGER=local/:@/tmp/.ICE-unix/2943,unix/:/tmp/.ICE-unix/2943 SHELL=/bin/bash SHLVL=1 SSH_AUTH_SOCK=/run/user/1000/keyring-GGg4gU/ssh TERM=xterm TEXTDOMAIN=im-config TEXTDOMAINDIR=/usr/share/locale/ TZ=:/etc/localtime UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/2613 USER= VTE_VERSION=3409 WINDOWID=58720267 XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg XDG_CURRENT_DESKTOP=Unity XDG_DATA_DIRS=/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=gnome- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_ID=c1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_VTNR=7 XMODIFIERS=@...3498...=ibus _=/usr/bin/gambas3 From bugtracker at ...3416... Sat Apr 16 12:35:32 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 16 Apr 2016 10:35:32 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #920: Optimize JSON.Encode for big data structures, lowers execution time from seconds to milliseconds. In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.920&from=L21haW4- Alexander KUIPER added an attachment: JSONEncodeImprovement.tar From bagonergi at ...626... Sat Apr 16 13:51:09 2016 From: bagonergi at ...626... (Gianluigi) Date: Sat, 16 Apr 2016 13:51:09 +0200 Subject: [Gambas-user] TrayIcon question In-Reply-To: References: <5710F3B6.3080503@...1...> <57116AB5.5050207@...1...> Message-ID: I apologize for the delay of the answers. Benoit, any method I use before Quit (.Hide(), Delete(), Detach($hTray) either alone or together) I always get warnings. Zainudin, with your code does not go out by the application and if I add Quit go out with warnings. Sorry Gianluigi 2016-04-16 2:40 GMT+02:00 zainudin ahmad : > This example more clear, attach file > I hope it's work > > On Sat, Apr 16, 2016 at 5:27 AM, Beno?t Minisini < > gambas at ...1...> wrote: > > > Le 16/04/2016 00:00, Gianluigi a ?crit : > > > Unfortunately, even with the trunk, does not change anything > > > With $hTray.Delete() I do not go out from application and Quit gives me > > > warnigs. > > > Regards > > > Gianluigi > > > > > > > You must hide the trayicon to allow the application to quit. > > > > -- > > Beno?t Minisini > > > > > > > ------------------------------------------------------------------------------ > > Find and fix application performance issues faster with Applications > > Manager > > Applications Manager provides deep performance insights into multiple > > tiers of > > your business applications. It resolves application problems quickly and > > reduces your MTTR. Get your free trial! > > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From bugtracker at ...3416... Sat Apr 16 19:25:19 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 16 Apr 2016 17:25:19 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #921: CServerSocket.c doesn't handle all error codes. E.g. trying to listen as none-root, on port <1024 doesn't raise an error. Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.921&from=L21haW4- Alexander KUIPER reported a new bug. Summary ------- CServerSocket.c doesn't handle all error codes. E.g. trying to listen as none-root, on port <1024 doesn't raise an error. Type : Bug Priority : Medium Gambas version : 3.8 Product : Unknown Description ----------- The 'gb.net/src/CServerSocket.c' start the listening the procedure 'static int do_srvsock_listen(...)', this procedure returns an errorcode. Only a few errorcodes aren't mapped and this results in the fact it 'looks looks good', but doesn't work! The example scenario is when starting as a none-root on a port <1024, this isn't allowed be Linux ... but ServerSocket doesn't give an error! Changes in gb.net/src/CServerSocket.c': ------------ Change from: ------------ static void srvsock_listen(CSERVERSOCKET *_object, int max) { switch(do_srvsock_listen(THIS, max)) { case 1: GB.Error("Socket is already listening"); break; case 7: GB.Error("Path is not defined"); break; case 8: GB.Error("Port is not defined"); break; case 13: GB.Error("Invalid maximum number of connections"); break; case 15: GB.Error("Unable to bind socket to interface"); break; default: break; } } ---------- Change to: ---------- static void srvsock_listen(CSERVERSOCKET *_object, int max) { switch(do_srvsock_listen(THIS, max)) { case 1: GB.Error("Socket is already listening"); break; case 2: GB.Error("Cannot create socket"); break; case 7: GB.Error("Path is not defined"); break; case 8: GB.Error("Port is not defined"); break; case 10: GB.Error("Cannot bind to socket"); break; case 13: GB.Error("Invalid maximum number of connections"); break; case 14: GB.Error("Cannot listen on socket"); break; case 15: GB.Error("Unable to bind socket to interface"); break; default: break; } } From bugtracker at ...3416... Mon Apr 18 08:52:34 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 18 Apr 2016 06:52:34 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #922: Clase PreguntaView Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.922&from=L21haW4- V?ctor PEREZ reported a new bug. Summary ------- Clase PreguntaView Type : Request Priority : Low Gambas version : 3.8 Product : GUI components Description ----------- Beno?t Minisini.... Estoy intentando hacer la clase "PreguntaView" pero dado que soy novato aun no logro hacerla. mire este hilo en el foro gambas en espa?ol https://www.gambas-es.org/viewtopic.php?f=4&t=5368 si en alg?n momento puede crearla ya que para usted seria cuesti?n de minutos seria de mucha ayuda para los programas de gambas. Saludos From bugtracker at ...3416... Mon Apr 18 09:00:54 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 18 Apr 2016 07:00:54 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #922: Clase PreguntaView In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.922&from=L21haW4- V?ctor PEREZ added an attachment: miMsg-0.0.1.tar.gz From bugtracker at ...3416... Mon Apr 18 10:19:13 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 18 Apr 2016 08:19:13 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #923: Individual DefaultTabSize not respected Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.923&from=L21haW4- C THAL reported a new bug. Summary ------- Individual DefaultTabSize not respected Type : Bug Priority : Medium Gambas version : 3.8.90 (TRUNK) Product : Development Environment Description ----------- All my code is reformatted by Gambas-IDE trunk version because it does not respect my setting DefaultTabSize=4. From bugtracker at ...3416... Mon Apr 18 10:52:14 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 18 Apr 2016 08:52:14 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #924: Individual DefaultTabSize not respected Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.924&from=L21haW4- C THAL reported a new bug. Summary ------- Individual DefaultTabSize not respected Type : Bug Priority : Medium Gambas version : Unknown Product : Unknown Description ----------- All my code is reformatted by Gambas-IDE trunk version because it does not respect my setting DefaultTabSize=4. From bugtracker at ...3416... Mon Apr 18 11:08:06 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 18 Apr 2016 09:08:06 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #924: Individual DefaultTabSize not respected In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.924&from=L21haW4- C THAL changed the state of the bug to: Duplicate. From chrisml at ...3340... Mon Apr 18 13:56:47 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Mon, 18 Apr 2016 13:56:47 +0200 Subject: [Gambas-user] Lib Export Problem in /usr/bin Message-ID: <5714CB7F.9000503@...3340...> Hello, there is a problem within my project in Gambas 3.8.4 with one library. When this library is in /usr/bin, a couple of classes is not available any mone, despite they are exported. I made a screenshot from another projects' library importer: As you can see, the same library deg-person.gambas is: 1) In a subdir of my homedir. It presents all exported classes. 2) In /usr/bin. Here it presents not all exported classes. Some of them are not available any more. Does anyone know why? Alles Gute Christof Thalhofer -- Dies ist keine Signatur From chrisml at ...3340... Mon Apr 18 14:05:56 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Mon, 18 Apr 2016 14:05:56 +0200 Subject: [Gambas-user] Lib Export Problem in /usr/bin In-Reply-To: <5714CB7F.9000503@...3340...> References: <5714CB7F.9000503@...3340...> Message-ID: <5714CDA4.3030801@...3340...> Am 18.04.2016 um 13:56 schrieb Christof Thalhofer: > I made a screenshot from another projects' library importer: Sorry, I forgot ehem, they are here. Alles Gute Christof Thalhofer -- Dies ist keine Signatur -------------- next part -------------- A non-text attachment was scrubbed... Name: homedir-person.png Type: image/png Size: 38340 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: usr-bin-person.png Type: image/png Size: 36581 bytes Desc: not available URL: From chrisml at ...3340... Mon Apr 18 14:27:42 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Mon, 18 Apr 2016 14:27:42 +0200 Subject: [Gambas-user] Lib Export Problem in /usr/bin In-Reply-To: <5714CDA4.3030801@...3340...> References: <5714CB7F.9000503@...3340...> <5714CDA4.3030801@...3340...> Message-ID: <5714D2BE.1020300@...3340...> Am 18.04.2016 um 14:05 schrieb Christof Thalhofer: Another thing I saw now: The complete lib ist compiled by the IDE. But the incomplete lib is compiled in a makefile so: gbc3 -aw ./libs/deg-person gba3 -o ./libs/deg-person/deg-person.gambas ./libs/deg-person Alles Gute Christof Thalhofer -- Dies ist keine Signatur From bugtracker at ...3416... Mon Apr 18 16:15:45 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 18 Apr 2016 14:15:45 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #923: Individual DefaultTabSize not respected In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.923&from=L21haW4- Comment #1 by C THAL: Sorry, my error, made a new project with different settings in the IDE C THAL changed the state of the bug to: Invalid. From bugtracker at ...3416... Mon Apr 18 18:25:10 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 18 Apr 2016 16:25:10 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #922: Clase PreguntaView In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.922&from=L21haW4- Comment #1 by V?ctor PEREZ: Beno?t Minisini .... I'm trying to do the "PreguntaView" class but since I am still novice I can not do it. look at this thread in the forum shrimp Spanish https://www.gambas-es.org/viewtopic.php?f=4&t=5368 if at any time you can create it as you serious matter for serious minutes very helpful for programs shrimp. regards From chrisml at ...3340... Mon Apr 18 18:32:47 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Mon, 18 Apr 2016 18:32:47 +0200 Subject: [Gambas-user] Lib Export Problem in /usr/bin In-Reply-To: <5714D2BE.1020300@...3340...> References: <5714CB7F.9000503@...3340...> <5714CDA4.3030801@...3340...> <5714D2BE.1020300@...3340...> Message-ID: <57150C2F.8040701@...3340...> Am 18.04.2016 um 14:27 schrieb Christof Thalhofer: > Am 18.04.2016 um 14:05 schrieb Christof Thalhofer: > > Another thing I saw now: > > The complete lib ist compiled by the IDE. > > But the incomplete lib is compiled in a makefile so: > > gbc3 -aw ./libs/deg-person > gba3 -o ./libs/deg-person/deg-person.gambas ./libs/deg-person Now I see, that compiling without "-w" results in correct working libraries.* Thank you all for being audience ;-) Alles Gute Christof Thalhofer P.S.: * Is that a bug? Shouldn't the compiler lead to the same result with- and without warnings? -- Dies ist keine Signatur From herberthguzman at ...626... Mon Apr 18 20:41:33 2016 From: herberthguzman at ...626... (herberth guzman) Date: Mon, 18 Apr 2016 12:41:33 -0600 Subject: [Gambas-user] ERROR: WebForm.Main.115: Class.Load Message-ID: Regards, Not if something I'm doing wrong, someone to help me or explain me please. I copy the files lib.js. and style.css at the root of the project and .public. the following code does not work. Public Sub WebButton1_Click() Message("Hello") WebLabel2.Text = "Hello Gambas" End The code works if I use the example of (gb.web.form) component and create a new form. Displays the following error. ERROR: WebForm.Main.115: Class.Load: Cannot load class 'WebformTest': Unable to load class file. Only displayed in the web navergador doing nothing. I need help to run my project please. Thank you Attached code, image, project. Herberth Guzm?n -------------- next part -------------- A non-text attachment was scrubbed... Name: gb001.png Type: image/png Size: 130631 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: testweb-0.0.1.tar.gz Type: application/x-gzip Size: 19479 bytes Desc: not available URL: From abbat.81 at ...787... Tue Apr 19 12:14:49 2016 From: abbat.81 at ...787... (abbat81) Date: Tue, 19 Apr 2016 03:14:49 -0700 (MST) Subject: [Gambas-user] Create a Form like Panel on Desktop Message-ID: <1461060889710-56000.post@...3046...> Hi all ! Is it possible to create form like panel (f.e. Lxpanel). If other apps windows maximize, their maximize according to my form-panel stay visible. Thank you in advance. -- View this message in context: http://gambas.8142.n7.nabble.com/Create-a-Form-like-Panel-on-Desktop-tp56000.html Sent from the gambas-user mailing list archive at Nabble.com. From eilert-sprachen at ...221... Tue Apr 19 13:17:29 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Tue, 19 Apr 2016 13:17:29 +0200 Subject: [Gambas-user] ListEditor Icons Message-ID: <571613C9.1010407@...221...> Three questions: 1) The ListEditor has four icons. If I don't like them, is there a chance to change them? 2) And how is the Insert/Add button handled? Is there an event? 3) I tried ListEditor1.List.Add("Hello") but it doesn't appear in the list. Thank you for your help! Rolf From charlie at ...2793... Tue Apr 19 16:29:50 2016 From: charlie at ...2793... (Charlie) Date: Tue, 19 Apr 2016 07:29:50 -0700 (MST) Subject: [Gambas-user] ListEditor Icons In-Reply-To: <571613C9.1010407@...221...> References: <571613C9.1010407@...221...> Message-ID: <1461076190756-56002.post@...3046...> /1) The ListEditor has four icons. If I don't like them, is there a chance to change them?/ I don't know how to do this, or even if it can be done. /2) And how is the Insert/Add button handled? Is there an event?/ When the list is displayed you can click on an item and then click the *Add* button. /3) I tried ListEditor1.List.Add("Hello") but it doesn't appear in the list/. You need an array string e.g. Dim sString as String[] = ["Hello", "world"] ListEditor1.List = sString Have a look at the attached example: - ListEditor_example.tar -- View this message in context: http://gambas.8142.n7.nabble.com/ListEditor-Icons-tp56001p56002.html Sent from the gambas-user mailing list archive at Nabble.com. From bagonergi at ...626... Tue Apr 19 17:57:15 2016 From: bagonergi at ...626... (Gianluigi) Date: Tue, 19 Apr 2016 17:57:15 +0200 Subject: [Gambas-user] ListEditor Icons In-Reply-To: <1461076190756-56002.post@...3046...> References: <571613C9.1010407@...221...> <1461076190756-56002.post@...3046...> Message-ID: List Editor is a ListBox with sorting methods etc. You can see it from the source code in gb.fom. Starting from there you can try to change the appearance. Regards Gianluigi 2016-04-19 16:29 GMT+02:00 Charlie : > /1) The ListEditor has four icons. If I don't like them, is there a chance > to > change them?/ > I don't know how to do this, or even if it can be done. > /2) And how is the Insert/Add button handled? Is there an event?/ > When the list is displayed you can click on an item and then click the > *Add* > button. > /3) I tried ListEditor1.List.Add("Hello") but it doesn't appear in the > list/. > You need an array string e.g. > Dim sString as String[] = ["Hello", "world"] > ListEditor1.List = sString > Have a look at the attached example: - > ListEditor_example.tar > > > > > -- > View this message in context: > http://gambas.8142.n7.nabble.com/ListEditor-Icons-tp56001p56002.html > Sent from the gambas-user mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From t.lee.davidson at ...626... Tue Apr 19 18:12:03 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Tue, 19 Apr 2016 12:12:03 -0400 Subject: [Gambas-user] Create a Form like Panel on Desktop In-Reply-To: <1461060889710-56000.post@...3046...> References: <1461060889710-56000.post@...3046...> Message-ID: <571658D3.9030800@...626...> You shouldn't need to do anything special in Gambas to accomplish that. Your window manager should be able to do that. For example, in KDE, you would click the application icon at the very top-left in the title bar, choose "More Actions" and then "Keep Above Others". I don't know about other window managers. Or, is that not what you meant? On 04/19/2016 06:14 AM, abbat81 wrote: > Hi all ! > > Is it possible to create form like panel (f.e. Lxpanel). > If other apps windows maximize, their maximize according to my form-panel > stay visible. > > Thank you in advance. > -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From eilert-sprachen at ...221... Tue Apr 19 18:23:46 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Tue, 19 Apr 2016 18:23:46 +0200 Subject: [Gambas-user] ListEditor Icons In-Reply-To: <1461076190756-56002.post@...3046...> References: <571613C9.1010407@...221...> <1461076190756-56002.post@...3046...> Message-ID: <57165B92.1060102@...221...> Ok, thank you, this makes it clear! Will try the tar tomorrow. Rolf Am 19.04.2016 16:29, schrieb Charlie: > /1) The ListEditor has four icons. If I don't like them, is there a chance to > change them?/ > I don't know how to do this, or even if it can be done. > /2) And how is the Insert/Add button handled? Is there an event?/ > When the list is displayed you can click on an item and then click the *Add* > button. > /3) I tried ListEditor1.List.Add("Hello") but it doesn't appear in the > list/. > You need an array string e.g. > Dim sString as String[] = ["Hello", "world"] > ListEditor1.List = sString > Have a look at the attached example: - > ListEditor_example.tar > > > > > -- > View this message in context: http://gambas.8142.n7.nabble.com/ListEditor-Icons-tp56001p56002.html > Sent from the gambas-user mailing list archive at Nabble.com. > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From eilert-sprachen at ...221... Tue Apr 19 18:25:01 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Tue, 19 Apr 2016 18:25:01 +0200 Subject: [Gambas-user] ListEditor Icons In-Reply-To: References: <571613C9.1010407@...221...> <1461076190756-56002.post@...3046...> Message-ID: <57165BDD.5050608@...221...> Ah, alright, will look for it later... Rolf Am 19.04.2016 17:57, schrieb Gianluigi: > List Editor is a ListBox with sorting methods etc. > You can see it from the source code in gb.fom. > Starting from there you can try to change the appearance. > Regards > Gianluigi > > 2016-04-19 16:29 GMT+02:00 Charlie : > >> /1) The ListEditor has four icons. If I don't like them, is there a chance >> to >> change them?/ >> I don't know how to do this, or even if it can be done. >> /2) And how is the Insert/Add button handled? Is there an event?/ >> When the list is displayed you can click on an item and then click the >> *Add* >> button. >> /3) I tried ListEditor1.List.Add("Hello") but it doesn't appear in the >> list/. >> You need an array string e.g. >> Dim sString as String[] = ["Hello", "world"] >> ListEditor1.List = sString >> Have a look at the attached example: - >> ListEditor_example.tar >> >> >> >> >> -- >> View this message in context: >> http://gambas.8142.n7.nabble.com/ListEditor-Icons-tp56001p56002.html >> Sent from the gambas-user mailing list archive at Nabble.com. >> >> ------------------------------------------------------------------------------ >> Find and fix application performance issues faster with Applications >> Manager >> Applications Manager provides deep performance insights into multiple >> tiers of >> your business applications. It resolves application problems quickly and >> reduces your MTTR. Get your free trial! >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bagonergi at ...626... Tue Apr 19 18:46:25 2016 From: bagonergi at ...626... (Gianluigi) Date: Tue, 19 Apr 2016 18:46:25 +0200 Subject: [Gambas-user] Create a Form like Panel on Desktop In-Reply-To: <571658D3.9030800@...626...> References: <1461060889710-56000.post@...3046...> <571658D3.9030800@...626...> Message-ID: Even I did not understand, maybe he wants this? Set FMain: Border = False Stacking = Above Trasparent = True Drawing a Panel with Background = Background Ciao Gianluigi 2016-04-19 18:12 GMT+02:00 T Lee Davidson : > You shouldn't need to do anything special in Gambas to accomplish that. > Your window manager should be able to do that. > > For example, in KDE, you would click the application icon at the very > top-left in the title bar, choose "More Actions" and then > "Keep Above Others". I don't know about other window managers. > > Or, is that not what you meant? > > > On 04/19/2016 06:14 AM, abbat81 wrote: > > Hi all ! > > > > Is it possible to create form like panel (f.e. Lxpanel). > > If other apps windows maximize, their maximize according to my form-panel > > stay visible. > > > > Thank you in advance. > > > > > -- > Lee > __________ > > "Artificial Intelligence is no match for natural stupidity." > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas.fr at ...626... Tue Apr 19 21:39:53 2016 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 19 Apr 2016 21:39:53 +0200 Subject: [Gambas-user] Create a Form like Panel on Desktop In-Reply-To: References: <1461060889710-56000.post@...3046...> <571658D3.9030800@...626...> Message-ID: 2016-04-19 18:46 GMT+02:00 Gianluigi : > Even I did not understand, maybe he wants this? > Set FMain: > Border = False > Stacking = Above > Trasparent = True > Drawing a Panel with Background = Background > > Ciao > Gianluigi Then if you want to manage the maximize area you will have some xorg stuff to do From bugtracker at ...3416... Tue Apr 19 23:34:22 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 19 Apr 2016 21:34:22 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Comment #4 by Julio SANCHEZ: Hello Beno?t: I have tried to compile, from svn version 7747, but get this error: Making install in gb.pdf make[1]: Entering directory '/home/minino/trunk/gb.pdf' Making install in src make[2]: Entering directory '/home/minino/trunk/gb.pdf/src' CXX gb_pdf_la-main.lo In file included from main.cpp:26:0: CPdfDocument.h:29:20: fatal error: PDFDoc.h: No such file or directory compilation terminated. Makefile:495: recipe for target 'gb_pdf_la-main.lo' failed make[2]: *** [gb_pdf_la-main.lo] Error 1 make[2]: Leaving directory '/home/minino/trunk/gb.pdf/src' Makefile:430: recipe for target 'install-recursive' failed make[1]: *** [install-recursive] Error 1 make[1]: Leaving directory '/home/minino/trunk/gb.pdf' Makefile:438: recipe for target 'install-recursive' failed make: *** [install-recursive] Error 1 (distribution: ubuntu 15.10 ) From bugtracker at ...3416... Tue Apr 19 23:55:24 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 19 Apr 2016 21:55:24 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Comment #5 by Julio SANCHEZ: Hello again: I could install gambas3, version 7747 from ppa: gambas-team / gambas-daily Now the error does not happen. It seems that this solved. Regards Julio From jmcbride at ...2309... Thu Apr 21 00:36:06 2016 From: jmcbride at ...2309... (Jerry McBride) Date: Wed, 20 Apr 2016 18:36:06 -0400 Subject: [Gambas-user] [Gambas Bug Tracker] Bug #826: Redirect links to gambasdoc.org/lang to gambaswiki/wiki/lang In-Reply-To: <57077BDF.2020408@...3340...> References: <562CDF22.5030603@...3340...> <562F21B6.1090207@...3340...> <5706A53D.5040609@...94...> <57077BDF.2020408@...3340...> Message-ID: <57180456.7030007@...2309...> I'm late to comment on this, but I would appreciate keeping the website. thank you, Jerry On 04/08/16 05:37, Christof Thalhofer wrote: > Am 07.04.2016 um 20:21 schrieb Rob Kudla: >> On 10/27/2015 03:03 AM, Christof Thalhofer wrote: >>> Thanks. Do you know Robert Kudla? >> >> I know I'm late to the party, but I'm Rob Kudla. > > Hi Rob, nice to read from you. :-) > >> I think the grace period goes for >> another 4 days, so if you'd like it, you'd better move fast. > > Hm ok. Anyone interested in the further existence of gambasdoc.org? > I can host the domain, but only if there is a serious common interest. > > In the meantime, I think, a lot of broken links disappeared from the > Google index and I doubt that it is worth to rescue that old domain. > > > Alles Gute > > Christof Thalhofer > > > > ------------------------------------------------------------------------------ > > > > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From chrisml at ...3340... Thu Apr 21 07:07:15 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Thu, 21 Apr 2016 07:07:15 +0200 Subject: [Gambas-user] [Gambas Bug Tracker] Bug #826: Redirect links to gambasdoc.org/lang to gambaswiki/wiki/lang In-Reply-To: <57180456.7030007@...2309...> References: <562CDF22.5030603@...3340...> <562F21B6.1090207@...3340...> <5706A53D.5040609@...94...> <57077BDF.2020408@...3340...> <57180456.7030007@...2309...> Message-ID: <57186003.7070704@...3340...> Hi Jerry, Am 21.04.2016 um 00:36 schrieb Jerry McBride: > I'm late to comment on this, but I would appreciate keeping the website. > > thank you, Jerry The website is gone, definitely. What we were talking about was the domainname, "gambasdoc.org" and the question , whether to keep it to for instance redirect links to "gambasdoc.org/lang" to "gambaswiki.org/wiki/lang". Alles Gute Christof Thalhofer -- Dies ist keine Signatur From eilert-sprachen at ...221... Thu Apr 21 08:59:26 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Thu, 21 Apr 2016 08:59:26 +0200 Subject: [Gambas-user] Balloon in help window partly covered Message-ID: <57187A4E.6000905@...221...> This is a little thing that got my attention: When I hover the mouse over an underlined item in the help window, a balloon help comes up. This will always open to the right. When the item is near the right window border, the balloon disappears under the window's edge. There is no difference when you drag the window border to make it wider - it still is partly hidden. Somehow the balloon help seems to care for screen limits rather than window limits. I try to add a screenshot. Regards Rolf -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas1b.png Type: image/png Size: 2364 bytes Desc: not available URL: From eilert-sprachen at ...221... Thu Apr 21 09:06:19 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Thu, 21 Apr 2016 09:06:19 +0200 Subject: [Gambas-user] IconPanel in IDE click behaviour Message-ID: <57187BEB.20003@...221...> Here comes another "feature" :) In the Form Editor of the IDE, when I have an IconPanel I can click on the items to let the related working spaces appear. But clicking here will not activate the IconPanel itself, neither will the property palette with the IconPanel's properties react. I have to click on the working space of the IconPanel to really activate it, which is a bit confusing I found. If this behaviour is intended, what's the idea behind it? Regards Rolf From abbat.81 at ...787... Thu Apr 21 08:06:35 2016 From: abbat.81 at ...787... (abbat81) Date: Wed, 20 Apr 2016 23:06:35 -0700 (MST) Subject: [Gambas-user] Create a Form like Panel on Desktop In-Reply-To: References: <1461060889710-56000.post@...3046...> <571658D3.9030800@...626...> Message-ID: <1461218795915-56015.post@...3046...> *Desktop.Height = (Screen.Height - CurrentPanel.Height)* How can I build my *FMain* to get next: *Desktop.Height = (Screen.Height - FMain.Height)* -- View this message in context: http://gambas.8142.n7.nabble.com/Create-a-Form-like-Panel-on-Desktop-tp56000p56015.html Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Thu Apr 21 16:41:59 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 21 Apr 2016 16:41:59 +0200 Subject: [Gambas-user] Balloon in help window partly covered In-Reply-To: <57187A4E.6000905@...221...> References: <57187A4E.6000905@...221...> Message-ID: <5718E6B7.3090006@...1...> Le 21/04/2016 08:59, Rolf-Werner Eilert a ?crit : > This is a little thing that got my attention: > > When I hover the mouse over an underlined item in the help window, a > balloon help comes up. This will always open to the right. When the item > is near the right window border, the balloon disappears under the > window's edge. There is no difference when you drag the window border to > make it wider - it still is partly hidden. > > Somehow the balloon help seems to care for screen limits rather than > window limits. > > I try to add a screenshot. > > Regards > Rolf > It's not a GUI balloon, it's an HTML + CSS trick. This is the reason why it cannot be on top of the window. -- Beno?t Minisini From eilert-sprachen at ...221... Thu Apr 21 17:30:43 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Thu, 21 Apr 2016 17:30:43 +0200 Subject: [Gambas-user] Balloon in help window partly covered In-Reply-To: <5718E6B7.3090006@...1...> References: <57187A4E.6000905@...221...> <5718E6B7.3090006@...1...> Message-ID: <5718F223.4050708@...221...> Ah, what a shame... Ok, but I understand. Thanks for the explanation! Rolf Am 21.04.2016 16:41, schrieb Beno?t Minisini: > Le 21/04/2016 08:59, Rolf-Werner Eilert a ?crit : >> This is a little thing that got my attention: >> >> When I hover the mouse over an underlined item in the help window, a >> balloon help comes up. This will always open to the right. When the item >> is near the right window border, the balloon disappears under the >> window's edge. There is no difference when you drag the window border to >> make it wider - it still is partly hidden. >> >> Somehow the balloon help seems to care for screen limits rather than >> window limits. >> >> I try to add a screenshot. >> >> Regards >> Rolf >> > It's not a GUI balloon, it's an HTML + CSS trick. This is the reason why > it cannot be on top of the window. > From jmcbride at ...2309... Fri Apr 22 00:04:08 2016 From: jmcbride at ...2309... (Jerry McBride) Date: Thu, 21 Apr 2016 18:04:08 -0400 Subject: [Gambas-user] [Gambas Bug Tracker] Bug #826: Redirect links to gambasdoc.org/lang to gambaswiki/wiki/lang In-Reply-To: <57186003.7070704@...3340...> References: <562CDF22.5030603@...3340...> <562F21B6.1090207@...3340...> <5706A53D.5040609@...94...> <57077BDF.2020408@...3340...> <57180456.7030007@...2309...> <57186003.7070704@...3340...> Message-ID: <57194E58.3070106@...2309...> Hi Alles, thanks, but I understood that. I was voicing that we should keep it. It's established, not reason not to use it, redirected or otherwise. On 04/21/16 01:07, Christof Thalhofer wrote: > Hi Jerry, > > Am 21.04.2016 um 00:36 schrieb Jerry McBride: >> I'm late to comment on this, but I would appreciate keeping the website. >> >> thank you, Jerry > > The website is gone, definitely. What we were talking about was the > domainname, "gambasdoc.org" and the question , whether to keep it to for > instance redirect links to "gambasdoc.org/lang" to > "gambaswiki.org/wiki/lang". > > > Alles Gute > > Christof Thalhofer > From bagonergi at ...626... Fri Apr 22 11:46:41 2016 From: bagonergi at ...626... (Gianluigi) Date: Fri, 22 Apr 2016 11:46:41 +0200 Subject: [Gambas-user] Warning Could not connect to Gambas Documentation Message-ID: Warning Could not connect to Gambas Documentation Regards Gianluigi From bagonergi at ...626... Fri Apr 22 12:44:15 2016 From: bagonergi at ...626... (Gianluigi) Date: Fri, 22 Apr 2016 12:44:15 +0200 Subject: [Gambas-user] Warning Could not connect to Gambas Documentation In-Reply-To: References: Message-ID: now is fine working Regards Gianluigi 2016-04-22 11:46 GMT+02:00 Gianluigi : > Warning Could not connect to Gambas Documentation > > Regards > Gianluigi > From bugtracker at ...3416... Fri Apr 22 12:59:57 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 22 Apr 2016 10:59:57 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #925: Desktopmime.fromfile().geticon does not identify executables Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.925&from=L21haW4- Antonio OREFICE reported a new bug. Summary ------- Desktopmime.fromfile().geticon does not identify executables Type : Bug Priority : Medium Gambas version : 3.8 Product : Unknown Description ----------- This code: -- Private pic As New PictureBox(fmain) Private pic As New PictureBox(fmain) Public Sub Form_Open() Debug DesktopMime.FromFile("/usr/bin/ls").Pattern '<--this writes "txt" pic.picture = DesktopMime.FromFile("/usr/bin/ls").GetIcon(128).Picture Debug DesktopMime.FromFile("/usr/bin/pacman") < - - this writes "txt" pic.Move(0, 0, 200, 200) End -- Produces a generic textfile icon, instead of the executable icon. ls is clearly an elf executables, while pacman is a script file. System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=4.4.5-1-ARCH Architecture=x86_64 Distribution=Arch Linux Desktop=KDE4 Theme=Oxygen Language=it_IT.utf8 Memory=7934M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.800.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.2000.3 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.59.0.0 QT4=libQtCore.so.4.7.4 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.3.2 QT5=libQt5Core.so.5.6.0 SDL=libSDL-1.2.so.0.11.4 [Environment] ANT_HOME=/usr/share/apache-ant DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/0/bus DESKTOP_SESSION=kde-plasma DISPLAY=:0 DM_CONTROL=/var/run/xdmctl GB_GUI=gb.qt4 GS_LIB=/.fonts GTK2_RC_FILES=/etc/gtk-2.0/gtkrc:/.gtkrc-2.0:/home/.gtkrc-2.0-kde4:/home/.kde4/share/config/gtkrc-2.0 GTK_MODULES=canberra-gtk-module GTK_RC_FILES=/etc/gtk/gtkrc:/.gtkrc:/home/.kde4/share/config/gtkrc HG=/usr/bin/hg HOME= INFINALITY_FT= INFINALITY_FT_AUTOFIT_FORCE_SLIGHT_HINTING=true INFINALITY_FT_AUTOHINT_HORIZONTAL_STEM_DARKEN_STRENGTH=0 INFINALITY_FT_AUTOHINT_INCREASE_GLYPH_HEIGHTS=false INFINALITY_FT_AUTOHINT_SNAP_STEM_HEIGHT=0 INFINALITY_FT_AUTOHINT_VERTICAL_STEM_DARKEN_STRENGTH=25 INFINALITY_FT_BOLD_EMBOLDEN_X_VALUE=0 INFINALITY_FT_BOLD_EMBOLDEN_Y_VALUE=0 INFINALITY_FT_BRIGHTNESS=0 INFINALITY_FT_CHROMEOS_STYLE_SHARPENING_STRENGTH=0 INFINALITY_FT_CONTRAST=-20 INFINALITY_FT_FILTER_PARAMS=7 25 44 25 7 INFINALITY_FT_FRINGE_FILTER_STRENGTH=0 INFINALITY_FT_GAMMA_CORRECTION=0 100 INFINALITY_FT_GLOBAL_EMBOLDEN_X_VALUE=0 INFINALITY_FT_GLOBAL_EMBOLDEN_Y_VALUE=0 INFINALITY_FT_GRAYSCALE_FILTER_STRENGTH=0 INFINALITY_FT_STEM_ALIGNMENT_STRENGTH=0 INFINALITY_FT_STEM_FITTING_STRENGTH=0 INFINALITY_FT_STEM_SNAPPING_SLIDING_SCALE=0 INFINALITY_FT_USE_KNOWN_SETTINGS_ON_SELECTED_FONTS=true INFINALITY_FT_USE_VARIOUS_TWEAKS=true INFINALITY_FT_WINDOWS_STYLE_SHARPENING_STRENGTH=0 KDE_FULL_SESSION=true KDE_MULTIHEAD=false KDE_SESSION_UID=0 KDE_SESSION_VERSION=4 KWIN_TRIPLE_BUFFER=1 LANG=it_IT.utf8 LC_COLLATE=C LOGNAME= MAIL=/var/spool/mail MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins NXDIR=/usr/lib/nx PATH=/usr/lib/nx/bin:/usr/lib/hardening-wrapper/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/opt/kde/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl PWD= QT_GRAPHICSSYSTEM=raster QT_NO_GLIB=1 QT_PLUGIN_PATH=/home/.kde4/lib/kde4/plugins/:/usr/lib/kde4/plugins/ SESSION_MANAGER=local/:@/tmp/.ICE-unix/2568,unix/:/tmp/.ICE-unix/2568 SHELL=/usr/bin/zsh SHLVL=1 TZ=:/etc/localtime USER= WINDOWPATH=7 XCURSOR_SIZE=0 XCURSOR_THEME=Oxygen_White XDG_CURRENT_DESKTOP=KDE XDG_DATA_DIRS=/usr/share:/usr/share:/usr/local/share XDG_DESKTOP_DIR=$HOME/Desktop" XDG_RUNTIME_DIR=/run/user/0 XDG_SEAT=seat0 XDG_SESSION_ID=c1 XDG_VTNR=7 XDM_MANAGED=method=classic,auto _=/usr/lib/kde4/libexec/start_kdeinit_wrapper __GL_YIELD=USLEEP From bugtracker at ...3416... Fri Apr 22 13:01:33 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Fri, 22 Apr 2016 11:01:33 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #925: Desktopmime.fromfile().geticon does not identify executables In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.925&from=L21haW4- Comment #1 by Antonio OREFICE: Some typos... Private pic As New PictureBox(fmain) Public Sub Form_Open() Debug DesktopMime.FromFile("/usr/bin/ls").Pattern '<--this writes "txt" pic.picture = DesktopMime.FromFile("/usr/bin/ls").GetIcon(128).Picture Debug DesktopMime.FromFile("/usr/bin/pacman").pattern '<-- this writes "txt" pic.Move(0, 0, 200, 200) End From eilert-sprachen at ...221... Fri Apr 22 13:49:53 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Fri, 22 Apr 2016 13:49:53 +0200 Subject: [Gambas-user] Warning Could not connect to Gambas Documentation In-Reply-To: References: Message-ID: <571A0FE1.30904@...221...> Here was a problem for about an hour, too. It makes typing code very slowly. Rolf Am 22.04.2016 12:44, schrieb Gianluigi: > now is fine working > > Regards > Gianluigi > > 2016-04-22 11:46 GMT+02:00 Gianluigi : > >> Warning Could not connect to Gambas Documentation >> >> Regards >> Gianluigi >> > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From chrisml at ...3340... Fri Apr 22 18:59:45 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Fri, 22 Apr 2016 18:59:45 +0200 Subject: [Gambas-user] [Gambas Bug Tracker] Bug #826: Redirect links to gambasdoc.org/lang to gambaswiki/wiki/lang In-Reply-To: <57194E58.3070106@...2309...> References: <562CDF22.5030603@...3340...> <562F21B6.1090207@...3340...> <5706A53D.5040609@...94...> <57077BDF.2020408@...3340...> <57180456.7030007@...2309...> <57186003.7070704@...3340...> <57194E58.3070106@...2309...> Message-ID: <571A5881.80803@...3340...> Hello Jerry, Am 22.04.2016 um 00:04 schrieb Jerry McBride: > Hi Alles, It's really funny that you are greeting a part of my signature, btw, I'm Christof ... ;-) > thanks, but I understood that. I was voicing that we should keep it. > It's established, not reason not to use it, redirected or otherwise. Yes, it exists, but Rob wants to give it up now: ~ ? whois gambasdoc.org Domain Name: GAMBASDOC.ORG ... Registrant Name: Robert Kudla Ok, it seems, that you are the only one who wishes the further existence of gambasdoc.org. Please understand that this is not enough for me to host it for the next years. Alles Gute Christof Thalhofer -- Dies ist keine Signatur From jmcbride at ...2309... Sat Apr 23 19:10:02 2016 From: jmcbride at ...2309... (Jerry McBride) Date: Sat, 23 Apr 2016 13:10:02 -0400 Subject: [Gambas-user] [Gambas Bug Tracker] Bug #826: Redirect links to gambasdoc.org/lang to gambaswiki/wiki/lang In-Reply-To: <571A5881.80803@...3340...> References: <562CDF22.5030603@...3340...> <562F21B6.1090207@...3340...> <5706A53D.5040609@...94...> <57077BDF.2020408@...3340...> <57180456.7030007@...2309...> <57186003.7070704@...3340...> <57194E58.3070106@...2309...> <571A5881.80803@...3340...> Message-ID: <571BAC6A.2020908@...2309...> It happens when you dont know the other persons language. Good day Christof. Jerry On 04/22/16 12:59, Christof Thalhofer wrote: > Hello Jerry, > > Am 22.04.2016 um 00:04 schrieb Jerry McBride: > >> Hi Alles, > > It's really funny that you are greeting a part of my signature, btw, I'm > Christof ... > > ;-) > >> thanks, but I understood that. I was voicing that we should keep it. >> It's established, not reason not to use it, redirected or otherwise. > > Yes, it exists, but Rob wants to give it up now: > > ~ ? whois gambasdoc.org > Domain Name: GAMBASDOC.ORG > ... > Registrant Name: Robert Kudla > > Ok, it seems, that you are the only one who wishes the further existence > of gambasdoc.org. Please understand that this is not enough for me to > host it for the next years. > > > Alles Gute > > Christof Thalhofer > From markus.schatten at ...2005... Mon Apr 25 01:46:46 2016 From: markus.schatten at ...2005... (Markus Schatten) Date: Mon, 25 Apr 2016 01:46:46 +0200 Subject: [Gambas-user] sqlite_master not accessible through ODBC? Message-ID: Dear friends, is it possible to access the sqlite_master table through the ODBC driver? I connect easily to an SQLite DSN, but when I try to query the master table I get: Unknown table: sqlite_master Here is what I do: ' Gambas class file Public $con As New Connection Public Sub _new() $con.type = "odbc" $con.Host = "sqlite_dsn" $con.Login = "login" $con.Password = "password" $con.Open DataSource1.Connection = $con Try DataSource1.Table = "sqlite_master" If Error Then Print Error.Text Print Error.Where Print Error.Backtrace Print Error.Class Print Error.Code Endif End Also, when I try to select from the table, e.g.: $con.Exec("SELECT * FROM sqlite_master") I get an empty result set... When I connect through the native SQLite driver, I can access the table without problems, but with ODBC it doesn't work... What am I doing wrong? All the best, M. -- Markus Schatten, PhD Assistant professor and head of Artificial Intelligence Lab University of Zagreb Faculty of Organization and Informatics Pavlinska 2, 42000 Varazdin, Croatia http://www.foi.hr/nastavnici/schatten.markus/index.html http://www.researchgate.net/profile/Markus_Schatten1 http://ai.foi.hr From bugtracker at ...3416... Mon Apr 25 10:27:54 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 25 Apr 2016 08:27:54 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #926: want to edit a record, it's change the other record Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.926&from=L21haW4- Zainudin AHMAD reported a new bug. Summary ------- want to edit a record, it's change the other record Type : Bug Priority : High Gambas version : 3.8.90 (TRUNK) Product : Database component Description ----------- when I want to edit a record, it's change the other record, the bug is from Databrowser Component (this happen with my app too) and with condition the table have more than one primary key. reproduce the bug: - extract project into /tmp directory (attach project) - open project - select conTest(connection) >> test table >> cick edit button (attach pic-1 for detail) - edit any record (when I edit "pepaya record" the "banana record" is change) Thanks System information ------------------ [System] Gambas=3.8.90 r7747 OperatingSystem=Linux Kernel=3.2.0-88-generic Architecture=x86 Distribution=Ubuntu 12.04.5 LTS Desktop=LXDE Theme=Gtk Language=en_US.UTF-8 Memory=494M [Libraries] Cairo=libcairo.so.2.11000.2 Curl=libcurl.so.4.2.0 DBus=libdbus-1.so.3.5.8 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.7.0 GTK+2=libgtk-x11-2.0.so.0.2400.10 GTK+3=libgtk-3.so.0.400.2 OpenGL=libGL.so.96.43.23 Poppler=libpoppler.so.19.0.0 QT4=libQtCore.so.4.8.1 QT5=libQt5Core.so.5.0.2 SDL=libSDL-1.2.so.0.11.3 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-RAWZWxJXJW,guid=73eb1586d2ebe6249fe2e5a90000002b DEFAULTS_PATH=/usr/share/gconf/Lubuntu.default.path DESKTOP_SESSION=Lubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=Lubuntu GNOME_KEYRING_CONTROL=/tmp/keyring-zKA5gO GNOME_KEYRING_PID=1833 HOME= LANG=en_US.UTF-8 LC_ADDRESS=en_US.UTF-8 LC_IDENTIFICATION=en_US.UTF-8 LC_MEASUREMENT=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_NAME=en_US.UTF-8 LC_NUMERIC=en_US.UTF-8 LC_PAPER=en_US.UTF-8 LC_TELEPHONE=en_US.UTF-8 LC_TIME=en_US.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/Lubuntu.mandatory.path PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games PWD= SAL_USE_VCLPLUGIN=gtk SHELL=/bin/bash SSH_AGENT_PID=1824 SSH_AUTH_SOCK=/tmp/keyring-zKA5gO/ssh TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/lubuntu/:/etc/xdg/xdg-Lubuntu:/etc/xdg XDG_CONFIG_HOME=/.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/etc/xdg/lubuntu:/usr/share/Lubuntu:/usr/local/share/:/usr/share/:/usr/share:/usr/share/gdm:/var/lib/menu-xdg XDG_MENU_PREFIX=lxde- XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_COOKIE=2d9710af0959f6893eb828f100000008-1461568761.222495-1748220173 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 _LXSESSION_PID=1794 From bugtracker at ...3416... Mon Apr 25 10:28:08 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 25 Apr 2016 08:28:08 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #926: want to edit a record, it's change the other record In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.926&from=L21haW4- Zainudin AHMAD added an attachment: test-db-databrowser-0.0.1.tar.gz From bugtracker at ...3416... Mon Apr 25 10:28:32 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Mon, 25 Apr 2016 08:28:32 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #926: want to edit a record, it's change the other record In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.926&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png From bugtracker at ...3416... Tue Apr 26 10:08:37 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 08:08:37 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #914: Error using the help offline: CDocumentation.ImplementAndNeed.1138 Not an objectm In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.914&from=L21haW4- Julio SANCHEZ changed the state of the bug to: Fixed. From bugtracker at ...3416... Tue Apr 26 10:26:36 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 08:26:36 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #927: Variable Declaration declaration when used Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.927&from=L21haW4- Julio SANCHEZ reported a new bug. Summary ------- Variable Declaration declaration when used Type : Request Priority : Low Gambas version : Unknown Product : Language Description ----------- Hello: Would it be possible to be admitted declare when going to be used, instead of having it to declare the beginning of a variable sub or function? Example: ' Gambas module file Public Sub Main() 'Declare of a variable the beginning sub or function: dim text as string="hello" print text ... ... 'Variable Declaration declaration when used dim i as integer for i=0 to 10 print i next end Regards Julio From bugtracker at ...3416... Tue Apr 26 10:29:02 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 08:29:02 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #928: Would it be possible to be admitted declare when going to be used Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.928&from=L21haW4- Julio SANCHEZ reported a new bug. Summary ------- Would it be possible to be admitted declare when going to be used Type : Request Priority : Low Gambas version : Unknown Product : Language Description ----------- Hello: Would it be possible to be admitted declare when going to be used, instead of having it to declare the beginning of a variable sub or function? Example: ' Gambas module file Public Sub Main() 'Declare of a variable the beginning sub or function: dim text as string="hello" print text ... ... 'Variable Declaration declaration when used dim i as integer for i=0 to 10 print i next end Regards Julio From eilert-sprachen at ...221... Tue Apr 26 12:10:22 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Tue, 26 Apr 2016 12:10:22 +0200 Subject: [Gambas-user] FontChooser setting fontname Message-ID: <571F3E8E.7020208@...221...> The docu reads: FontChooser.SelectedFont (gb.form) Property SelectedFont As String Returns or sets the selected font as a string. When I try to do Dim MyFont As String MyFont = "Courier" fcMyFont.SelectedFont = MyFont nothing happens. Am I expecting too much? Rolf From gambas.fr at ...626... Tue Apr 26 12:39:44 2016 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 26 Apr 2016 12:39:44 +0200 Subject: [Gambas-user] FontChooser setting fontname In-Reply-To: <571F3E8E.7020208@...221...> References: <571F3E8E.7020208@...221...> Message-ID: Courrier Le 26 avr. 2016 12:12, "Rolf-Werner Eilert" a ?crit : > The docu reads: > > FontChooser.SelectedFont (gb.form) > > Property SelectedFont As String > > Returns or sets the selected font as a string. > > When I try to do > > Dim MyFont As String > > MyFont = "Courier" > fcMyFont.SelectedFont = MyFont > > nothing happens. > > Am I expecting too much? > > Rolf > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From eilert-sprachen at ...221... Tue Apr 26 12:57:22 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Tue, 26 Apr 2016 12:57:22 +0200 Subject: [Gambas-user] FontChooser setting fontname In-Reply-To: References: <571F3E8E.7020208@...221...> Message-ID: <571F4992.6060406@...221...> "Courrier" is French, in my list there is "Courier". I can choose it from the list, but I cannot set the list to this value/index/string. Rolf Am 26.04.2016 12:39, schrieb Fabien Bodard: > Courrier > Le 26 avr. 2016 12:12, "Rolf-Werner Eilert" a > ?crit : > >> The docu reads: >> >> FontChooser.SelectedFont (gb.form) >> >> Property SelectedFont As String >> >> Returns or sets the selected font as a string. >> >> When I try to do >> >> Dim MyFont As String >> >> MyFont = "Courier" >> fcMyFont.SelectedFont = MyFont >> >> nothing happens. >> >> Am I expecting too much? >> >> Rolf >> >> >> >> ------------------------------------------------------------------------------ >> Find and fix application performance issues faster with Applications >> Manager >> Applications Manager provides deep performance insights into multiple >> tiers of >> your business applications. It resolves application problems quickly and >> reduces your MTTR. Get your free trial! >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user >> > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From jussi.lahtinen at ...626... Wed Apr 27 00:07:20 2016 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Wed, 27 Apr 2016 01:07:20 +0300 Subject: [Gambas-user] Error messages from library? Message-ID: Hi! I have two projects using same library (made with Gambas). When same functions are used in project 1, everything is OK, but from project 2 I got "Out of bounds". How can I see what happens in the library? Jussi -------------- next part -------------- A non-text attachment was scrubbed... Name: sysinf Type: application/octet-stream Size: 2363 bytes Desc: not available URL: From chrisml at ...3340... Wed Apr 27 00:22:08 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Wed, 27 Apr 2016 00:22:08 +0200 Subject: [Gambas-user] Error messages from library? In-Reply-To: References: Message-ID: <571FEA10.5040801@...3340...> Am 27.04.2016 um 00:07 schrieb Jussi Lahtinen: > I have two projects using same library (made with Gambas). > When same functions are used in project 1, everything is OK, but from > project 2 I got "Out of bounds". How can I see what happens in the library? If you have to debug a lib, simply copy the code to the project using the lib (and remove the lib itself from your project). In the project you can make a subdir AAALib (or something equivalent ? I do this to remember, that the lib's code is inside my project) and copy the sourcecode there. Then you can test your project, debug and change the code. When done, move the sourcefiles back to your lib, make an executable of them and include it again in your project. Alles Gute Christof Thalhofer -- Dies ist keine Signatur From jussi.lahtinen at ...626... Wed Apr 27 00:40:23 2016 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Wed, 27 Apr 2016 01:40:23 +0300 Subject: [Gambas-user] Error messages from library? In-Reply-To: <571FEA10.5040801@...3340...> References: <571FEA10.5040801@...3340...> Message-ID: Not that simple. The library has embedded data etc, and to avoid conflicts I would need to modify the code. More over I suspect something strange happening in the export. Also generally speaking I hope there is easier way to do this. Jussi On Wed, Apr 27, 2016 at 1:22 AM, Christof Thalhofer wrote: > Am 27.04.2016 um 00:07 schrieb Jussi Lahtinen: > > > I have two projects using same library (made with Gambas). > > When same functions are used in project 1, everything is OK, but from > > project 2 I got "Out of bounds". How can I see what happens in the > library? > > If you have to debug a lib, simply copy the code to the project using > the lib (and remove the lib itself from your project). > > In the project you can make a subdir AAALib (or something equivalent ? I > do this to remember, that the lib's code is inside my project) and copy > the sourcecode there. > > Then you can test your project, debug and change the code. When done, > move the sourcefiles back to your lib, make an executable of them and > include it again in your project. > > > Alles Gute > > Christof Thalhofer > > -- > Dies ist keine Signatur > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bugtracker at ...3416... Wed Apr 27 00:51:26 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 22:51:26 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #918: Debian package does not build if it relies on library In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.918&from=L21haW4- Comment #1 by Beno?t MINISINI: Can you provide the project you build the Debian package from? Beno?t MINISINI changed the state of the bug to: NeedsInfo. From bugtracker at ...3416... Wed Apr 27 00:54:14 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 22:54:14 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #752: Gambas shows - gbx3: warning: trying to watch fd #-1 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.752&from=L21haW4- Beno?t MINISINI changed the state of the bug to: Accepted. From bugtracker at ...3416... Wed Apr 27 00:54:22 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 22:54:22 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #752: Gambas shows - gbx3: warning: trying to watch fd #-1 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.752&from=L21haW4- Comment #4 by Beno?t MINISINI: Thanks! From bugtracker at ...3416... Wed Apr 27 01:04:57 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 23:04:57 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #929: Dir command doesn't work in executable Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.929&from=L21haW4- Jussi LAHTINEN reported a new bug. Summary ------- Dir command doesn't work in executable Type : Bug Priority : Medium Gambas version : Unknown Product : Language Description ----------- See attached project. Dir command works when run in IDE, but not when run as executable. System information ------------------ [System] Gambas=3.8.90 r7747 OperatingSystem=Linux Kernel=3.13.0-37-generic Architecture=x86_64 Distribution=Linux Mint 17.2 Rafaela Desktop=GNOME Theme=Gtk Language=en_US.UTF-8 Memory=7985M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.23 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 [Environment] CLUTTER_BACKEND=x11 CLUTTER_IM_MODULE=xim DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-EsqmBWCmZG,guid=5fc4c722458776becac723ec571f7b10 DEFAULTS_PATH=/usr/share/gconf/cinnamon.default.path DESKTOP_SESSION=cinnamon DISPLAY=:0.0 GB_GUI=gb.qt4 GB_PROFILE_MAX=1000 GDMSESSION=cinnamon GDM_XSERVER_LOCATION=local GIO_LAUNCHED_DESKTOP_FILE=/Desktop/Gambas3.desktop GIO_LAUNCHED_DESKTOP_FILE_PID=18333 GNOME_DESKTOP_SESSION_ID=this-is-deprecated GNOME_KEYRING_CONTROL=/run/user/1000/keyring-jPnXNp GPG_AGENT_INFO=/run/user/1000/keyring-jPnXNp/gpg:0:1 GTK_IM_MODULE=xim HOME= INSIDE_NEMO_PYTHON= LANG=en_US.UTF-8 LC_ADDRESS=fi_FI.UTF-8 LC_IDENTIFICATION=fi_FI.UTF-8 LC_MEASUREMENT=fi_FI.UTF-8 LC_MONETARY=fi_FI.UTF-8 LC_NAME=fi_FI.UTF-8 LC_NUMERIC=fi_FI.UTF-8 LC_PAPER=fi_FI.UTF-8 LC_TELEPHONE=fi_FI.UTF-8 LC_TIME=en_US.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/cinnamon.mandatory.path MDMSESSION=cinnamon MDM_LANG=en_US.UTF-8 MDM_XSERVER_LOCATION=local PAPERSIZE=letter PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT4_IM_MODULE=xim SESSION_MANAGER=local/:@/tmp/.ICE-unix/1899,unix/:/tmp/.ICE-unix/1899 SHELL=/bin/bash SSH_AGENT_PID=2015 SSH_AUTH_SOCK=/run/user/1000/keyring-jPnXNp/ssh TEXTDOMAIN=im-config TEXTDOMAINDIR=/usr/share/locale/ TZ=:/etc/localtime USER= USERNAME= WINDOWPATH=8 XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-cinnamon:/etc/xdg XDG_CURRENT_DESKTOP=X-Cinnamon XDG_DATA_DIRS=/usr/share/cinnamon:/usr/share/gnome:/usr/local/share/:/usr/share/:/usr/share/mdm/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SESSION_COOKIE=5a45fa29109f0ee2389b1b0355283726-1461680912.306363-1904248904 XDG_SESSION_DESKTOP=cinnamon XDG_SESSION_ID=c2 XDG_VTNR=8 XMODIFIERS=@...3498...=none From bugtracker at ...3416... Wed Apr 27 01:05:11 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 23:05:11 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #929: Dir command doesn't work in executable In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.929&from=L21haW4- Jussi LAHTINEN added an attachment: TestLib-0.0.4.tar.gz From bugtracker at ...3416... Wed Apr 27 01:05:29 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 23:05:29 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #929: Dir command doesn't work in executable In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.929&from=L21haW4- Jussi LAHTINEN added an attachment: TestLib-0.0.4.tar.gz From bugtracker at ...3416... Wed Apr 27 01:05:46 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 23:05:46 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #929: Dir command doesn't work in executable In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.929&from=L21haW4- Jussi LAHTINEN added an attachment: TestLib-0.0.4.tar.gz From bugtracker at ...3416... Wed Apr 27 01:07:47 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Tue, 26 Apr 2016 23:07:47 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #929: Dir command doesn't work in executable In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.929&from=L21haW4- Comment #1 by Jussi LAHTINEN: Maybe I'm blind, but attachments should be removable and be closer to the attach button, so that you would notice when the file is attached... From bugtracker at ...3416... Wed Apr 27 02:06:46 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 27 Apr 2016 00:06:46 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #752: Gambas shows - gbx3: warning: trying to watch fd #-1 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.752&from=L21haW4- Comment #5 by Beno?t MINISINI: It should be fixed in revision #7748. Note that your example code leaks memory by creating an object at each client connection and never releasing it. Beno?t MINISINI changed the state of the bug to: Fixed. From bugtracker at ...3416... Wed Apr 27 02:11:10 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 27 Apr 2016 00:11:10 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #929: Dir command doesn't work in executable In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.929&from=L21haW4- Comment #2 by Beno?t MINISINI: Remove the slashes at the end of the directory name. The Linux system calls ignore them, but not the interpreter Gambas executable browsing routines. Beno?t MINISINI changed the state of the bug to: Accepted. From t.lee.davidson at ...626... Wed Apr 27 03:42:23 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Tue, 26 Apr 2016 21:42:23 -0400 Subject: [Gambas-user] How to set HttpClient Accept headers? Message-ID: <572018FF.3060006@...626...> I know that the ACCEPT_ENCODING client header can be set using HttpClient.Encoding per the wiki. And, I believe HttpClient.Headers are only the server response headers. Is it possible to also set the ACCEPT and ACCEPT_LANGUAGE client headers for HttpClient? -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From chrisml at ...3340... Wed Apr 27 08:23:47 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Wed, 27 Apr 2016 08:23:47 +0200 Subject: [Gambas-user] Error messages from library? In-Reply-To: References: <571FEA10.5040801@...3340...> Message-ID: <57205AF3.4010507@...3340...> Am 27.04.2016 um 00:40 schrieb Jussi Lahtinen: > Not that simple. The library has embedded data etc, and to avoid conflicts > I would need to modify the code. Hm... can you pack that data in a separated lib? I did so with some of my libs which grew too much. One big lib became 4 smaller ones. Thats also better to prevent spaghetti code (but not dependency hell ;-)). > Also generally speaking I hope there is easier way to do this. Seems not, because libs are executables. Alles Gute Christof Thalhofer -- Dies ist keine Signatur From adamnt42 at ...626... Wed Apr 27 09:15:41 2016 From: adamnt42 at ...626... (adamnt42 at ...626...) Date: Wed, 27 Apr 2016 16:45:41 +0930 Subject: [Gambas-user] Error messages from library? In-Reply-To: References: Message-ID: <20160427164541.661fda0714aed1534f5a65d0@...626...> On Wed, 27 Apr 2016 01:07:20 +0300 Jussi Lahtinen wrote: > Hi! > I have two projects using same library (made with Gambas). > When same functions are used in project 1, everything is OK, but from > project 2 I got "Out of bounds". How can I see what happens in the library? > > > Jussi Hiya Jussi, The way we do this here is that each library has a non-exported "test" module. I take it that you know the exact call structure and data from both project 1 and project 2 when the dreaded OOB occurs. It's a PITA but we simply add a test to the said module mimicking the exact calls and step through the library in the IDE debugger. Most times the only result is that we find a new exception condition that we hadn't considered in the library code .... :-( but then after adding traps for that ..... it begins to get clearer what the problem is. .... :-( That (those) damn OOB error(s) in libraries are now probably the most time consuming bugs we get and are usually something in the mainline &^#@!(^ data that we hadn't considered "possible (in a sane universe)". Not a great deal of help but I feel your pain. Back in Gambas 2 it was possible to debug libraries on the fly by creating links to the source classes in the client project. But that was AFAIK an undiscovered feature that went away at GB3. Such is life. regards bruce -- B Bruen From eilert-sprachen at ...221... Wed Apr 27 09:44:55 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 27 Apr 2016 09:44:55 +0200 Subject: [Gambas-user] FontChooser setting fontname In-Reply-To: <571F4992.6060406@...221...> References: <571F3E8E.7020208@...221...> <571F4992.6060406@...221...> Message-ID: <57206DF7.8090002@...221...> Does really nobody know why I cannot set the SelectedFont value as mentioned in the documentation? Rolf Am 26.04.2016 12:57, schrieb Rolf-Werner Eilert: > "Courrier" is French, in my list there is "Courier". I can choose it > from the list, but I cannot set the list to this value/index/string. > > Rolf > > Am 26.04.2016 12:39, schrieb Fabien Bodard: >> Courrier >> Le 26 avr. 2016 12:12, "Rolf-Werner Eilert" a >> ?crit : >> >>> The docu reads: >>> >>> FontChooser.SelectedFont (gb.form) >>> >>> Property SelectedFont As String >>> >>> Returns or sets the selected font as a string. >>> >>> When I try to do >>> >>> Dim MyFont As String >>> >>> MyFont = "Courier" >>> fcMyFont.SelectedFont = MyFont >>> >>> nothing happens. >>> >>> Am I expecting too much? >>> >>> Rolf >>> >>> >>> >>> ------------------------------------------------------------------------------ >>> Find and fix application performance issues faster with Applications >>> Manager >>> Applications Manager provides deep performance insights into multiple >>> tiers of >>> your business applications. It resolves application problems quickly and >>> reduces your MTTR. Get your free trial! >>> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> ------------------------------------------------------------------------------ >> Find and fix application performance issues faster with Applications Manager >> Applications Manager provides deep performance insights into multiple tiers of >> your business applications. It resolves application problems quickly and >> reduces your MTTR. Get your free trial! >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z >> _______________________________________________ >> Gambas-user mailing list >> Gambas-user at lists.sourceforge.net >> https://lists.sourceforge.net/lists/listinfo/gambas-user > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications Manager > Applications Manager provides deep performance insights into multiple tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From bugtracker at ...3416... Wed Apr 27 10:02:17 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 27 Apr 2016 08:02:17 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #752: Gambas shows - gbx3: warning: trying to watch fd #-1 In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.752&from=L21haW4- Comment #6 by Alexander KUIPER: Thanks, i can confirm it is fixed on x86_64 and on armf (Raspberry Pi). I tested this morning again, but I don't have memory leaks in my application ... But saying that, i explicitily set some objects to null - this seems to do the trick for me. From adamnt42 at ...626... Wed Apr 27 10:12:34 2016 From: adamnt42 at ...626... (adamnt42 at ...626...) Date: Wed, 27 Apr 2016 17:42:34 +0930 Subject: [Gambas-user] FontChooser setting fontname In-Reply-To: <57206DF7.8090002@...221...> References: <571F3E8E.7020208@...221...> <571F4992.6060406@...221...> <57206DF7.8090002@...221...> Message-ID: <20160427174234.3675ee99ae51b39f857c4026@...626...> On Wed, 27 Apr 2016 09:44:55 +0200 Rolf-Werner Eilert wrote: > Does really nobody know why I cannot set the SelectedFont value as > mentioned in the documentation? > > Rolf > > Am 26.04.2016 12:57, schrieb Rolf-Werner Eilert: > > "Courrier" is French, in my list there is "Courier". I can choose it > > from the list, but I cannot set the list to this value/index/string. > > > > Rolf > > > > Am 26.04.2016 12:39, schrieb Fabien Bodard: > >> Courrier > >> Le 26 avr. 2016 12:12, "Rolf-Werner Eilert" a > >> ?crit : > >> > >>> The docu reads: > >>> > >>> FontChooser.SelectedFont (gb.form) > >>> > >>> Property SelectedFont As String > >>> > >>> Returns or sets the selected font as a string. > >>> > >>> When I try to do > >>> > >>> Dim MyFont As String > >>> > >>> MyFont = "Courier" > >>> fcMyFont.SelectedFont = MyFont > >>> > >>> nothing happens. > >>> > >>> Am I expecting too much? > >>> > >>> Rolf > >>> hmm ' Gambas class file Public Sub _new() FontChooser1.SelectedFont = "Courier" Print FontChooser1.SelectedFont End seems to work ok here? -- B Bruen From bugtracker at ...3416... Wed Apr 27 10:48:58 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 27 Apr 2016 08:48:58 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #918: Debian package does not build if it relies on library In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.918&from=L21haW4- Comment #2 by C THAL: I cannot provide my proj, sorry. But I made a testproject which imports a lib and results to the same error. If you try to package it the debian way, it breaks and will not build the .deb-file. If you unpack the result of the packaging-attempt: BUG.918.tar.gz/utar://DebianPackage/deganius-testproj-qt4_0.0.1-1.tar.gz You find in deganius-testproj-qt4-0.0.1/debian/control this string: "Depends: deganius-testproj (>= 0.0.1 ), deganius-testproj (<= 0.0.1), gambas3-gb-qt4 (>= 3.8), gambas3-gb-qt4 (<< 3.99.0), gambas3-:deganius/deg-testlib:1-0 (>= 3.8), gambas3-:deganius/deg-testlib:1-0 (<< 3.99.0)" This ist wrong: gambas3-:deganius/deg-testlib:1-0 Because, as you see, from the created .deb of the lib, the right name of the debian package of the testlib is: "deganius-deg-testlib". From bugtracker at ...3416... Wed Apr 27 10:49:09 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 27 Apr 2016 08:49:09 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #918: Debian package does not build if it relies on library In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.918&from=L21haW4- C THAL added an attachment: BUG918.tar.gz From eilert-sprachen at ...221... Wed Apr 27 11:27:28 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 27 Apr 2016 11:27:28 +0200 Subject: [Gambas-user] FontChooser setting fontname In-Reply-To: <20160427174234.3675ee99ae51b39f857c4026@...626...> References: <571F3E8E.7020208@...221...> <571F4992.6060406@...221...> <57206DF7.8090002@...221...> <20160427174234.3675ee99ae51b39f857c4026@...626...> Message-ID: <57208600.1090507@...221...> Am 27.04.2016 10:12, schrieb adamnt42 at ...626...: > On Wed, 27 Apr 2016 09:44:55 +0200 > Rolf-Werner Eilert wrote: > >> Does really nobody know why I cannot set the SelectedFont value as >> mentioned in the documentation? >> >> Rolf >> >> Am 26.04.2016 12:57, schrieb Rolf-Werner Eilert: >>> "Courrier" is French, in my list there is "Courier". I can choose it >>> from the list, but I cannot set the list to this value/index/string. >>> >>> Rolf >>> >>> Am 26.04.2016 12:39, schrieb Fabien Bodard: >>>> Courrier >>>> Le 26 avr. 2016 12:12, "Rolf-Werner Eilert" a >>>> ?crit : >>>> >>>>> The docu reads: >>>>> >>>>> FontChooser.SelectedFont (gb.form) >>>>> >>>>> Property SelectedFont As String >>>>> >>>>> Returns or sets the selected font as a string. >>>>> >>>>> When I try to do >>>>> >>>>> Dim MyFont As String >>>>> >>>>> MyFont = "Courier" >>>>> fcMyFont.SelectedFont = MyFont >>>>> >>>>> nothing happens. >>>>> >>>>> Am I expecting too much? >>>>> >>>>> Rolf >>>>> > hmm > ' Gambas class file > > Public Sub _new() > > FontChooser1.SelectedFont = "Courier" > Print FontChooser1.SelectedFont > > End > seems to work ok here? > > Ahh ok, this makes sense. It does run like this, but the dropdown list still doesn't reflect it. But I found the reason. I only needed the dropdown list visible, so I decreased the control to 29 px. This way, however, the preview area isn't visible, and the control seems to need the preview area to refresh the dropdown list. So my solution was FontChooser1.Height = 110 FontChooser1.SelectedFont = "Courier" FontChooser1.Height = 29 This way it runs like expected... :) Regards Rolf From eilert-sprachen at ...221... Wed Apr 27 18:02:27 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Wed, 27 Apr 2016 18:02:27 +0200 Subject: [Gambas-user] String[] in Sub, what is going wrong Message-ID: <5720E293.9000105@...221...> This is the code: Public Sub setFontNameList(fontliste As String[]) Dim i As Integer fntexc.Clear For i = 0 To fontliste.count - 1 fntexc.Add(fontliste[i]) Next End It didn't run, so I set a Wait to the line fntexc.Clear. "fontliste[]" is delivered as it should, it has 3 items. But fontliste.Count is 0, fontliste.Max would be -1. So it is never copied. What is going wrong here??? Regards Rolf From t.lee.davidson at ...626... Wed Apr 27 18:39:02 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Wed, 27 Apr 2016 12:39:02 -0400 Subject: [Gambas-user] String[] in Sub, what is going wrong In-Reply-To: <5720E293.9000105@...221...> References: <5720E293.9000105@...221...> Message-ID: <5720EB26.5090403@...626...> On 04/27/2016 12:02 PM, Rolf-Werner Eilert wrote: > This is the code: > > Public Sub setFontNameList(fontliste As String[]) > Dim i As Integer > > fntexc.Clear > > For i = 0 To fontliste.count - 1 > fntexc.Add(fontliste[i]) > Next > > End > > It didn't run, so I set a Wait to the line fntexc.Clear. "fontliste[]" > is delivered as it should, it has 3 items. But fontliste.Count is 0, > fontliste.Max would be -1. So it is never copied. > > What is going wrong here??? > > Regards > Rolf > I have to assume that "fntexc" is a 'global' since it is not declared in the Sub. This code... ' Gambas module file Public fntexc As String[] Public Sub Main() Dim sFont As String fntexc = [] setFontNameList(["courier", "helvetica", "arial"]) For Each sFont In fntexc Print sFont Next End Public Sub setFontNameList(fontliste As String[]) Dim i As Integer Debug fontliste.Count fntexc.Clear For i = 0 To fontliste.count - 1 fntexc.Add(fontliste[i]) Next End ...works, and outputs: MMain.setFontNameList.19: 3 courier helvetica arial Hope that helps, -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From chrisml at ...3340... Wed Apr 27 20:14:39 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Wed, 27 Apr 2016 20:14:39 +0200 Subject: [Gambas-user] String[] in Sub, what is going wrong In-Reply-To: <5720E293.9000105@...221...> References: <5720E293.9000105@...221...> Message-ID: <5721018F.5090900@...3340...> Hello Rolf-Werner, apart from the other ... Am 27.04.2016 um 18:02 schrieb Rolf-Werner Eilert: > For i = 0 To fontliste.count - 1 > fntexc.Add(fontliste[i]) > Next Easier would be: fntexc.Insert(fontliste) Alles Gute Christof Thalhofer -- Dies ist keine Signatur From mr.daniel.lemke at ...626... Wed Apr 27 20:32:10 2016 From: mr.daniel.lemke at ...626... (Daniel Lemke) Date: Wed, 27 Apr 2016 11:32:10 -0700 Subject: [Gambas-user] String[] in Sub, what is going wrong In-Reply-To: <5720E293.9000105@...221...> References: <5720E293.9000105@...221...> Message-ID: I ran the code and I was able to populate fntexc with the array, but I didn't see how you declared fntexc so I am unsure what the difference is between our implementations. For testing sake, I merely made fntexc a public variable . If you were to provide more of the code, it would be a lot easier to get a complete picture. How are you declaring fntexc? If it is a locally scoped variable you will need to either pass a reference to the sub or turn the sub into a function to return data to fntexc. On Apr 27, 2016 9:04 AM, "Rolf-Werner Eilert" wrote: > This is the code: > > Public Sub setFontNameList(fontliste As String[]) > Dim i As Integer > > fntexc.Clear > > For i = 0 To fontliste.count - 1 > fntexc.Add(fontliste[i]) > Next > > End > > It didn't run, so I set a Wait to the line fntexc.Clear. "fontliste[]" > is delivered as it should, it has 3 items. But fontliste.Count is 0, > fontliste.Max would be -1. So it is never copied. > > What is going wrong here??? > > Regards > Rolf > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bugtracker at ...3416... Wed Apr 27 22:52:40 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Wed, 27 Apr 2016 20:52:40 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #930: Component not found: gb.sdl2.audio and puppy Linux Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.930&from=L21haW4- V?ctor PEREZ reported a new bug. Summary ------- Component not found: gb.sdl2.audio and puppy Linux Type : Bug Priority : Medium Gambas version : 3.8 Product : Unknown Description ----------- installed with prawns.... https://gambas.guru/tiki-list_file_gallery.php?galleryId=10 ---> https://gambas.guru/dl116 (gambas3-3.8.4.sfs) puppy linux slacko-5.7-NO-pae.iso error: Component not found: gb.sdl2.audio System information ------------------ http://novatocodegambas.blogspot.com.uy/ https://sourceforge.net/projects/visorrv1960/ https://sourceforge.net/projects/taller2015/ https://sourceforge.net/projects/asistentetm/ https://sourceforge.net/projects/tanteadortenisdemesa/ From jussi.lahtinen at ...626... Wed Apr 27 23:04:47 2016 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Thu, 28 Apr 2016 00:04:47 +0300 Subject: [Gambas-user] Error messages from library? In-Reply-To: <20160427164541.661fda0714aed1534f5a65d0@...626...> References: <20160427164541.661fda0714aed1534f5a65d0@...626...> Message-ID: I found the culprit in this case. Thanks to all for the suggestions! But I really hope there would be way to debug these bit easier, than placing message boxes to the library code... Benoit, would it be possible to run library parallel from other instance of the IDE? Or at least get the debug information from the lib, like in crash with normal executables? Jussi On Wed, Apr 27, 2016 at 10:15 AM, adamnt42 at ...626... wrote: > On Wed, 27 Apr 2016 01:07:20 +0300 > Jussi Lahtinen wrote: > > > Hi! > > I have two projects using same library (made with Gambas). > > When same functions are used in project 1, everything is OK, but from > > project 2 I got "Out of bounds". How can I see what happens in the > library? > > > > > > Jussi > > Hiya Jussi, > > The way we do this here is that each library has a non-exported "test" > module. I take it that you know the exact call structure and data from both > project 1 and project 2 when the dreaded OOB occurs. It's a PITA but we > simply add a test to the said module mimicking the exact calls and step > through the library in the IDE debugger. > > Most times the only result is that we find a new exception condition that > we hadn't considered in the library code .... :-( > but then after adding traps for that ..... it begins to get clearer what > the problem is. .... :-( > > That (those) damn OOB error(s) in libraries are now probably the most time > consuming bugs we get and are usually something in the mainline &^#@!(^ > data that we hadn't considered "possible (in a sane universe)". > > Not a great deal of help but I feel your pain. Back in Gambas 2 it was > possible to debug libraries on the fly by creating links to the source > classes in the client project. But that was AFAIK an undiscovered feature > that went away at GB3. Such is life. > > regards > bruce > > -- > B Bruen > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From twopilots at ...2415... Thu Apr 28 02:34:33 2016 From: twopilots at ...2415... (Ed & Clare Kelm) Date: Wed, 27 Apr 2016 17:34:33 -0700 Subject: [Gambas-user] Setting path in Dialog Message-ID: <57215A99.40805@...2415...> I have the same problem as Rolf. (2016-01-19 17:11:18) Setting dialog.path does not work. Instead, the resulting path is always the location of the project. My project is located in ~/Documents/Gambas Projects/EDNEC/ In the project is this code snippet: ********** Dialog.Path = "~/Documents/ED/NEC Antenna Files/" Dialog.Title = "Select an Antenna File to Open" Dialog.Filter = ["*.txt; *.TXT", "Text Files", "*.NEC", "NEC Input Files"] Print Dialog.Path If Dialog.OpenFile() Then Return ********** When it executes, the correct path is printed to the IDE, the correct title appears on the Open dialog, and the correct filter appears in the Open dialog. However, the path in the Open dialog is ~/Documents/Gambas Projects/EDNEC/. I am using: Gambas 3.8.4 Xubuntu 14.04 Any help for this? Thanks! Ed K. From gambas at ...1... Thu Apr 28 02:43:06 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 28 Apr 2016 02:43:06 +0200 Subject: [Gambas-user] Error messages from library? In-Reply-To: References: <20160427164541.661fda0714aed1534f5a65d0@...626...> Message-ID: <57215C9A.7030101@...1...> Le 27/04/2016 23:04, Jussi Lahtinen a ?crit : > I found the culprit in this case. Thanks to all for the suggestions! > But I really hope there would be way to debug these bit easier, than > placing message boxes to the library code... > > Benoit, > would it be possible to run library parallel from other instance of the > IDE? Or at least get the debug information from the lib, like in crash > with normal executables? > > > Jussi > If your library is compiled with debugging information, you get the full stack backtrace in the IDE when the error occurs. It's just that the IDE can just deal with one project only, the main one. When the IDE run a project that uses a library, it cannot know at the moment where are the source code of the library. If I find a solution, I will tell! -- Beno?t Minisini From gambas at ...1... Thu Apr 28 02:45:29 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 28 Apr 2016 02:45:29 +0200 Subject: [Gambas-user] Setting path in Dialog In-Reply-To: <57215A99.40805@...2415...> References: <57215A99.40805@...2415...> Message-ID: <57215D29.20801@...1...> Le 28/04/2016 02:34, Ed & Clare Kelm a ?crit : > I have the same problem as Rolf. (2016-01-19 17:11:18) > > Setting dialog.path does not work. Instead, the resulting path is > always the location of the project. > > My project is located in ~/Documents/Gambas Projects/EDNEC/ > > In the project is this code snippet: > > ********** > Dialog.Path = "~/Documents/ED/NEC Antenna Files/" > Dialog.Title = "Select an Antenna File to Open" > Dialog.Filter = ["*.txt; *.TXT", "Text Files", "*.NEC", "NEC Input Files"] > > Print Dialog.Path > > If Dialog.OpenFile() Then Return > ********** > > When it executes, the correct path is printed to the IDE, the correct > title appears on the Open dialog, and the correct filter appears in the > Open dialog. However, the path in the Open dialog is ~/Documents/Gambas > Projects/EDNEC/. > > I am using: > > Gambas 3.8.4 > Xubuntu 14.04 > > Any help for this? > > Thanks! > > Ed K. As usual, please provide a full project that reproduces the bug, and your full system information. Because Dialog.OpenFile() can actually choose between five different dialogs, and one with four different toolkits. Regards, -- Beno?t Minisini From jussi.lahtinen at ...626... Thu Apr 28 02:46:56 2016 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Thu, 28 Apr 2016 03:46:56 +0300 Subject: [Gambas-user] Error messages from library? In-Reply-To: <57215C9A.7030101@...1...> References: <20160427164541.661fda0714aed1534f5a65d0@...626...> <57215C9A.7030101@...1...> Message-ID: > > If your library is compiled with debugging information, you get the full > stack backtrace in the IDE when the error occurs. It's just that the IDE > can just deal with one project only, the main one. > > When the IDE run a project that uses a library, it cannot know at the > moment where are the source code of the library. > > If I find a solution, I will tell! > OK, thanks! Jussi From t.lee.davidson at ...626... Thu Apr 28 03:01:17 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Wed, 27 Apr 2016 21:01:17 -0400 Subject: [Gambas-user] Setting path in Dialog In-Reply-To: <57215A99.40805@...2415...> References: <57215A99.40805@...2415...> Message-ID: <572160DD.7060105@...626...> I believe the tilde does not work as a shortcut for user's home directory. You should probably use: Dialog.Path = User.Home &/ "Documents/ED/NEC Antenna Files/" On 04/27/2016 08:34 PM, Ed & Clare Kelm wrote: > I have the same problem as Rolf. (2016-01-19 17:11:18) > > Setting dialog.path does not work. Instead, the resulting path is > always the location of the project. > > My project is located in ~/Documents/Gambas Projects/EDNEC/ > > In the project is this code snippet: > > ********** > Dialog.Path = "~/Documents/ED/NEC Antenna Files/" > Dialog.Title = "Select an Antenna File to Open" > Dialog.Filter = ["*.txt; *.TXT", "Text Files", "*.NEC", "NEC Input Files"] > > Print Dialog.Path > > If Dialog.OpenFile() Then Return > ********** > > When it executes, the correct path is printed to the IDE, the correct > title appears on the Open dialog, and the correct filter appears in the > Open dialog. However, the path in the Open dialog is ~/Documents/Gambas > Projects/EDNEC/. > > I am using: > > Gambas 3.8.4 > Xubuntu 14.04 > > Any help for this? > > Thanks! > > Ed K. -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From twopilots at ...2415... Thu Apr 28 03:04:24 2016 From: twopilots at ...2415... (Ed & Clare Kelm) Date: Wed, 27 Apr 2016 18:04:24 -0700 Subject: [Gambas-user] Setting path in Dialog In-Reply-To: <57215D29.20801@...1...> References: <57215A99.40805@...2415...> <57215D29.20801@...1...> Message-ID: <57216198.9060406@...2415...> Benoit: Thanks for the prompt reply. My project has 8K lines of code, so I will make a little test project. Can you provide me a link which shows how to provide the info you need? Ed K. On 04/27/2016 05:45 PM, Beno?t Minisini wrote: > Le 28/04/2016 02:34, Ed & Clare Kelm a ?crit : >> I have the same problem as Rolf. (2016-01-19 17:11:18) >> >> Setting dialog.path does not work. Instead, the resulting path is >> always the location of the project. >> >> My project is located in ~/Documents/Gambas Projects/EDNEC/ >> >> In the project is this code snippet: >> >> ********** >> Dialog.Path = "~/Documents/ED/NEC Antenna Files/" >> Dialog.Title = "Select an Antenna File to Open" >> Dialog.Filter = ["*.txt; *.TXT", "Text Files", "*.NEC", "NEC Input Files"] >> >> Print Dialog.Path >> >> If Dialog.OpenFile() Then Return >> ********** >> >> When it executes, the correct path is printed to the IDE, the correct >> title appears on the Open dialog, and the correct filter appears in the >> Open dialog. However, the path in the Open dialog is ~/Documents/Gambas >> Projects/EDNEC/. >> >> I am using: >> >> Gambas 3.8.4 >> Xubuntu 14.04 >> >> Any help for this? >> >> Thanks! >> >> Ed K. > As usual, please provide a full project that reproduces the bug, and > your full system information. > > Because Dialog.OpenFile() can actually choose between five different > dialogs, and one with four different toolkits. > > Regards, > From twopilots at ...2415... Thu Apr 28 03:17:20 2016 From: twopilots at ...2415... (Ed & Clare Kelm) Date: Wed, 27 Apr 2016 18:17:20 -0700 Subject: [Gambas-user] Setting path in Dialog In-Reply-To: <572160DD.7060105@...626...> References: <57215A99.40805@...2415...> <572160DD.7060105@...626...> Message-ID: <572164A0.8010504@...2415...> T Lee: Home run! 1. The "~ shortcut" works fine when the program directly opens a file. 2. When I use your syntax in the Dialog.Path statement, everything works correctly! Many thanks for solving my problem! Ed K. On 04/27/2016 06:01 PM, T Lee Davidson wrote: > I believe the tilde does not work as a shortcut for user's home directory. > > You should probably use: Dialog.Path = User.Home &/ "Documents/ED/NEC Antenna Files/" > > > On 04/27/2016 08:34 PM, Ed & Clare Kelm wrote: >> I have the same problem as Rolf. (2016-01-19 17:11:18) >> >> Setting dialog.path does not work. Instead, the resulting path is >> always the location of the project. >> >> My project is located in ~/Documents/Gambas Projects/EDNEC/ >> >> In the project is this code snippet: >> >> ********** >> Dialog.Path = "~/Documents/ED/NEC Antenna Files/" >> Dialog.Title = "Select an Antenna File to Open" >> Dialog.Filter = ["*.txt; *.TXT", "Text Files", "*.NEC", "NEC Input Files"] >> >> Print Dialog.Path >> >> If Dialog.OpenFile() Then Return >> ********** >> >> When it executes, the correct path is printed to the IDE, the correct >> title appears on the Open dialog, and the correct filter appears in the >> Open dialog. However, the path in the Open dialog is ~/Documents/Gambas >> Projects/EDNEC/. >> >> I am using: >> >> Gambas 3.8.4 >> Xubuntu 14.04 >> >> Any help for this? >> >> Thanks! >> >> Ed K. From gambas at ...1... Thu Apr 28 03:47:37 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 28 Apr 2016 03:47:37 +0200 Subject: [Gambas-user] Setting path in Dialog In-Reply-To: <57216198.9060406@...2415...> References: <57215A99.40805@...2415...> <57215D29.20801@...1...> <57216198.9060406@...2415...> Message-ID: <57216BB9.60701@...1...> Le 28/04/2016 03:04, Ed & Clare Kelm a ?crit : > Benoit: > > Thanks for the prompt reply. My project has 8K lines of code, so I will > make a little test project. > > Can you provide me a link which shows how to provide the info you need? > > Ed K. Menu "?" -> "System information" in the IDE. -- Beno?t Minisini From twopilots at ...2415... Thu Apr 28 07:02:53 2016 From: twopilots at ...2415... (Ed & Clare Kelm) Date: Wed, 27 Apr 2016 22:02:53 -0700 Subject: [Gambas-user] Setting path in Dialog In-Reply-To: <57216BB9.60701@...1...> References: <57215A99.40805@...2415...> <57215D29.20801@...1...> <57216198.9060406@...2415...> <57216BB9.60701@...1...> Message-ID: <5721997D.8000903@...2415...> Benoit: Excellent! I will remember that for the next time. For now, T Lee Davidson has solved my immediate problem. But just for completeness, here's the info: [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.13.0-85-generic Architecture=x86 Distribution=Ubuntu 14.04.4 LTS Desktop=XFCE Theme=Windows Language=en_US.UTF-8 Memory=1948M [Libraries] Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.23 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 SDL=libSDL-1.2.so.0.11.4 [Environment] CLUTTER_IM_MODULE=xim DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-KkFIwEuOiM DEFAULTS_PATH=/usr/share/gconf/xubuntu.default.path DESKTOP_SESSION=xubuntu DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xubuntu GDM_LANG=en_US GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GNOME_KEYRING_CONTROL=/run/user/1000/keyring-6CZHEv GNOME_KEYRING_PID=1706 GPG_AGENT_INFO=/run/user/1000/keyring-6CZHEv/gpg:0:1 GTK_IM_MODULE=ibus HOME= IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=en_US.UTF-8 LANGUAGE=en_US: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 PWD= QT4_IM_MODULE=xim QT_IM_MODULE=xim SELINUX_INIT=YES SESSION=xubuntu SESSIONTYPE= SESSION_MANAGER=local/:@/tmp/.ICE-unix/1921,unix/:/tmp/.ICE-unix/1921 SHELL=/bin/bash SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring-6CZHEv/ssh TEXTDOMAIN=im-config TEXTDOMAINDIR=/usr/share/locale/ TZ=:/etc/localtime UPSTART_EVENTS=started xsession UPSTART_INSTANCE= UPSTART_JOB=startxfce4 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/1744 USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/xdg-xubuntu:/usr/share/upstart/xdg:/etc/xdg:/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/share/xubuntu:/usr/share/xfce4:/usr/local/share/:/usr/share/:/usr/share XDG_GREETER_DATA_DIR=/var/lib/lightdm-data/ XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_ID=c2 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_VTNR=7 XMODIFIERS=@...3498...=ibus Thanks! Ed K. I On 04/27/2016 06:47 PM, Beno?t Minisini wrote: > Le 28/04/2016 03:04, Ed & Clare Kelm a ?crit : >> Benoit: >> >> Thanks for the prompt reply. My project has 8K lines of code, so I will >> make a little test project. >> >> Can you provide me a link which shows how to provide the info you need? >> >> Ed K. > Menu "?" -> "System information" in the IDE. > From eilert-sprachen at ...221... Thu Apr 28 09:00:53 2016 From: eilert-sprachen at ...221... (Rolf-Werner Eilert) Date: Thu, 28 Apr 2016 09:00:53 +0200 Subject: [Gambas-user] String[] in Sub, what is going wrong In-Reply-To: <5720EB26.5090403@...626...> References: <5720E293.9000105@...221...> <5720EB26.5090403@...626...> Message-ID: <5721B525.9010103@...221...> Am 27.04.2016 18:39, schrieb T Lee Davidson: > On 04/27/2016 12:02 PM, Rolf-Werner Eilert wrote: >> This is the code: >> >> Public Sub setFontNameList(fontliste As String[]) >> Dim i As Integer >> >> fntexc.Clear >> >> For i = 0 To fontliste.count - 1 >> fntexc.Add(fontliste[i]) >> Next >> >> End >> >> It didn't run, so I set a Wait to the line fntexc.Clear. "fontliste[]" >> is delivered as it should, it has 3 items. But fontliste.Count is 0, >> fontliste.Max would be -1. So it is never copied. >> >> What is going wrong here??? >> >> Regards >> Rolf >> > I have to assume that "fntexc" is a 'global' since it is not declared in the Sub. > > This code... > > ' Gambas module file > > Public fntexc As String[] > > Public Sub Main() > > Dim sFont As String > > fntexc = [] > setFontNameList(["courier", "helvetica", "arial"]) > For Each sFont In fntexc > Print sFont > Next > End > > Public Sub setFontNameList(fontliste As String[]) > Dim i As Integer > > Debug fontliste.Count > > fntexc.Clear > > For i = 0 To fontliste.count - 1 > fntexc.Add(fontliste[i]) > Next > > End > > ...works, and outputs: > MMain.setFontNameList.19: 3 > courier > helvetica > arial > > > Hope that helps, > Well, thank you. I will answer here to avoid double explanations. Thank you all for your answers! You are right, fntexc is declared upstairs in the module where this function is. The problem is, however, not fntexc but fontliste. The function is called from another module. Fontliste is declared PUBLIC there, and when the function is called, fontliste contains the items. But when fontliste shall be used within the function, it appears to be empty. So it is module 1 which has a string array named FontListe: Public FontListe As New String[] . . . Public Sub btnOK_Click() . . ini.setFontNameList(FontListe) . . End And in module 2 ("ini") the contents is to be copied into the string array which is there: Private fntexc As New String[] . . . Public Sub setFontNameList(fontliste As String[]) 'Dim i As Integer fntexc.Clear 'When I stop here, fontliste is filled fntexc.Insert(fontliste) 'When I stop here, fontliste is empty ' For i = 0 To fntliste.count - 1 'Thanks to Christof for the tip, but it doesn't run with Insert either ' fntexc.Add(fntliste[i]) ' Next End So my explanation is that I might need another string array which I declare within the calling Sub in module 1. But I cannot remember I have ever had a similar issue before. What confuses me most is that I can see the contents of the array when I enter the function, but it appears empty when I want to access it there. Rolf From bugtracker at ...3416... Thu Apr 28 09:51:34 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 28 Apr 2016 07:51:34 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #931: IDE settings spinbox for tab width too narrow Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.931&from=L21haW4- C THAL reported a new bug. Summary ------- IDE settings spinbox for tab width too narrow Type : Bug Priority : Low Gambas version : 3.8 Product : Development Environment Description ----------- see image System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=4.2.0-35-generic Architecture=x86_64 Distribution=Ubuntu 14.04.4 LTS Desktop=XFCE Theme=Gtk Language=de_DE.UTF-8 Memory=7684M [Libraries] Cairo=libcairo.so.0.0.0 Cairo=libcairo.so.2.11301.0 Curl=libcurl.so.4.3.0 DBus=libdbus-1.so.3.7.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.204.0 GTK+2=libgtk-x11-2.0.so.0.2400.23 GTK+3=libgtk-3.so.0.1000.8 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.44.0.0 QT4=libQtCore.so.4.8.6 QT5=libQt5Core.so.5.2.1 SDL=libSDL-1.2.so.0.11.4 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-bWdu8ppGGu DEFAULTS_PATH=/usr/share/gconf/xfce.default.path DESKTOP_SESSION=xfce DISPLAY=:0.0 GB_GUI=gb.qt4 GDMSESSION=xfce GDM_LANG=de_DE GLADE_CATALOG_PATH=: GLADE_MODULE_PATH=: GLADE_PIXMAP_PATH=: GNOME_KEYRING_CONTROL=/run/user/1000/keyring-AJLGPn GNOME_KEYRING_PID=2348 GPG_AGENT_INFO=/run/user/1000/keyring-AJLGPn/gpg:0:1 GTK_MODULES=canberra-gtk-module:canberra-gtk-module HOME= IM_CONFIG_PHASE=1 INSTANCE= JOB=dbus LANG=de_DE.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/xfce.mandatory.path PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games PWD= QT_QPA_PLATFORMTHEME=appmenu-qt5 SELINUX_INIT=YES SESSION=xfce SESSIONTYPE= SESSION_MANAGER=local/:@/tmp/.ICE-unix/2883,unix/:/tmp/.ICE-unix/2883 SHELL=/usr/bin/zsh SHLVL=0 SSH_AUTH_SOCK=/run/user/1000/keyring-AJLGPn/ssh TEXTDOMAIN=im-config TEXTDOMAINDIR=/usr/share/locale/ TZ=:/etc/localtime UPSTART_EVENTS=started xsession UPSTART_INSTANCE= UPSTART_JOB=startxfce4 UPSTART_SESSION=unix:abstract=/com/ubuntu/upstart-session/1000/2023 USER= USERNAME= WINDOWPATH=7 XAUTHORITY=/var/run/gdm/auth-for--sj7Mw1/database XDG_CONFIG_DIRS=/etc/xdg/xdg-xfce:/usr/share/upstart/xdg:/etc/xdg:/etc/xdg XDG_CURRENT_DESKTOP=XFCE XDG_DATA_DIRS=/usr/share/xfce:/usr/share/xfce4:/usr/local/share/:/usr/share/:/usr/share XDG_MENU_PREFIX=xfce- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SESSION_ID=c1 XDG_VTNR=7 From bugtracker at ...3416... Thu Apr 28 09:51:45 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Thu, 28 Apr 2016 07:51:45 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #931: IDE settings spinbox for tab width too narrow In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.931&from=L21haW4- C THAL added an attachment: gambas-ide-settings.png From gambas.fr at ...626... Thu Apr 28 12:35:02 2016 From: gambas.fr at ...626... (Fabien Bodard) Date: Thu, 28 Apr 2016 12:35:02 +0200 Subject: [Gambas-user] FontChooser setting fontname In-Reply-To: <571F4992.6060406@...221...> References: <571F3E8E.7020208@...221...> <571F4992.6060406@...221...> Message-ID: You're right Sorry Le 26 avr. 2016 12:59, "Rolf-Werner Eilert" a ?crit : > "Courrier" is French, in my list there is "Courier". I can choose it > from the list, but I cannot set the list to this value/index/string. > > Rolf > > Am 26.04.2016 12:39, schrieb Fabien Bodard: > > Courrier > > Le 26 avr. 2016 12:12, "Rolf-Werner Eilert" > a > > ?crit : > > > >> The docu reads: > >> > >> FontChooser.SelectedFont (gb.form) > >> > >> Property SelectedFont As String > >> > >> Returns or sets the selected font as a string. > >> > >> When I try to do > >> > >> Dim MyFont As String > >> > >> MyFont = "Courier" > >> fcMyFont.SelectedFont = MyFont > >> > >> nothing happens. > >> > >> Am I expecting too much? > >> > >> Rolf > >> > >> > >> > >> > ------------------------------------------------------------------------------ > >> Find and fix application performance issues faster with Applications > >> Manager > >> Applications Manager provides deep performance insights into multiple > >> tiers of > >> your business applications. It resolves application problems quickly and > >> reduces your MTTR. Get your free trial! > >> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > >> _______________________________________________ > >> Gambas-user mailing list > >> Gambas-user at lists.sourceforge.net > >> https://lists.sourceforge.net/lists/listinfo/gambas-user > >> > > > ------------------------------------------------------------------------------ > > Find and fix application performance issues faster with Applications > Manager > > Applications Manager provides deep performance insights into multiple > tiers of > > your business applications. It resolves application problems quickly and > > reduces your MTTR. Get your free trial! > > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From bagonergi at ...626... Thu Apr 28 13:42:22 2016 From: bagonergi at ...626... (Gianluigi) Date: Thu, 28 Apr 2016 13:42:22 +0200 Subject: [Gambas-user] String[] in Sub, what is going wrong In-Reply-To: <5721B525.9010103@...221...> References: <5720E293.9000105@...221...> <5720EB26.5090403@...626...> <5721B525.9010103@...221...> Message-ID: And using classes instead of the modules? See Attachment Regards Gianluigi 2016-04-28 9:00 GMT+02:00 Rolf-Werner Eilert : > > Am 27.04.2016 18:39, schrieb T Lee Davidson: > > On 04/27/2016 12:02 PM, Rolf-Werner Eilert wrote: > >> This is the code: > >> > >> Public Sub setFontNameList(fontliste As String[]) > >> Dim i As Integer > >> > >> fntexc.Clear > >> > >> For i = 0 To fontliste.count - 1 > >> fntexc.Add(fontliste[i]) > >> Next > >> > >> End > >> > >> It didn't run, so I set a Wait to the line fntexc.Clear. "fontliste[]" > >> is delivered as it should, it has 3 items. But fontliste.Count is 0, > >> fontliste.Max would be -1. So it is never copied. > >> > >> What is going wrong here??? > >> > >> Regards > >> Rolf > >> > > I have to assume that "fntexc" is a 'global' since it is not declared in > the Sub. > > > > This code... > > > > ' Gambas module file > > > > Public fntexc As String[] > > > > Public Sub Main() > > > > Dim sFont As String > > > > fntexc = [] > > setFontNameList(["courier", "helvetica", "arial"]) > > For Each sFont In fntexc > > Print sFont > > Next > > End > > > > Public Sub setFontNameList(fontliste As String[]) > > Dim i As Integer > > > > Debug fontliste.Count > > > > fntexc.Clear > > > > For i = 0 To fontliste.count - 1 > > fntexc.Add(fontliste[i]) > > Next > > > > End > > > > ...works, and outputs: > > MMain.setFontNameList.19: 3 > > courier > > helvetica > > arial > > > > > > Hope that helps, > > > > Well, thank you. I will answer here to avoid double explanations. Thank > you all for your answers! > > You are right, fntexc is declared upstairs in the module where this > function is. The problem is, however, not fntexc but fontliste. The > function is called from another module. Fontliste is declared PUBLIC > there, and when the function is called, fontliste contains the items. > But when fontliste shall be used within the function, it appears to be > empty. > > So it is module 1 which has a string array named FontListe: > > Public FontListe As New String[] > . > . > . > Public Sub btnOK_Click() > . > . > ini.setFontNameList(FontListe) > . > . > End > > And in module 2 ("ini") the contents is to be copied into the string > array which is there: > > Private fntexc As New String[] > . > . > . > Public Sub setFontNameList(fontliste As String[]) > 'Dim i As Integer > > fntexc.Clear 'When I stop here, fontliste is filled > > fntexc.Insert(fontliste) 'When I stop here, fontliste is empty > > ' For i = 0 To fntliste.count - 1 'Thanks to Christof for the tip, > but it doesn't run with Insert either > ' fntexc.Add(fntliste[i]) > ' Next > > End > > So my explanation is that I might need another string array which I > declare within the calling Sub in module 1. But I cannot remember I have > ever had a similar issue before. What confuses me most is that I can see > the contents of the array when I enter the function, but it appears > empty when I want to access it there. > > Rolf > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > -------------- next part -------------- A non-text attachment was scrubbed... Name: DataTransfert-0.0.1.tar.gz Type: application/x-gzip Size: 11680 bytes Desc: not available URL: From chrisml at ...3340... Thu Apr 28 13:45:26 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Thu, 28 Apr 2016 13:45:26 +0200 Subject: [Gambas-user] Description of symbols as string? Message-ID: <5721F7D6.3080408@...3340...> Hello, If I define in a class: '' Long description of constant Pink Public Const Pink as Integer = 1 Can I get the description ("Long description of ...") as a string within my program? Alles Gute Christof Thalhofer -- Dies ist keine Signatur From taboege at ...626... Thu Apr 28 14:31:57 2016 From: taboege at ...626... (Tobias Boege) Date: Thu, 28 Apr 2016 14:31:57 +0200 Subject: [Gambas-user] Description of symbols as string? In-Reply-To: <5721F7D6.3080408@...3340...> References: <5721F7D6.3080408@...3340...> Message-ID: <20160428123157.GB8954@...2774...> On Thu, 28 Apr 2016, Christof Thalhofer wrote: > Hello, > > If I define in a class: > > > > '' Long description of constant Pink > Public Const Pink as Integer = 1 > > > > Can I get the description ("Long description of ...") as a string within > my program? > I can think of a hack which only requires you to export the classes you want this to work with, and then parse the .info file which is generated by the compiler (this thing is included in the project archive and also in executable archives). The format is not difficult. If you want to go with that, I can assist. I'm kind of in a hurry right now and can't decipher how the IDE does this sort of thing. Regards, Tobi -- "There's an old saying: Don't change anything... ever!" -- Mr. Monk From jussi.lahtinen at ...626... Thu Apr 28 16:02:07 2016 From: jussi.lahtinen at ...626... (Jussi Lahtinen) Date: Thu, 28 Apr 2016 17:02:07 +0300 Subject: [Gambas-user] String[] in Sub, what is going wrong In-Reply-To: <5721B525.9010103@...221...> References: <5720E293.9000105@...221...> <5720EB26.5090403@...626...> <5721B525.9010103@...221...> Message-ID: I would guess somewhere in your code there is line, which make fntexc and fontliste to point same memory address. IE "fontliste = fntexc" or perhaps setFontNameList is called twice and that time with fntexc as parameter. Can you try to isolate the problem into small demonstration project? If that is not error in the code (mostly that is the case!), it's bug in Gambas. Jussi On Thu, Apr 28, 2016 at 10:00 AM, Rolf-Werner Eilert < eilert-sprachen at ...221...> wrote: > > Am 27.04.2016 18:39, schrieb T Lee Davidson: > > On 04/27/2016 12:02 PM, Rolf-Werner Eilert wrote: > >> This is the code: > >> > >> Public Sub setFontNameList(fontliste As String[]) > >> Dim i As Integer > >> > >> fntexc.Clear > >> > >> For i = 0 To fontliste.count - 1 > >> fntexc.Add(fontliste[i]) > >> Next > >> > >> End > >> > >> It didn't run, so I set a Wait to the line fntexc.Clear. "fontliste[]" > >> is delivered as it should, it has 3 items. But fontliste.Count is 0, > >> fontliste.Max would be -1. So it is never copied. > >> > >> What is going wrong here??? > >> > >> Regards > >> Rolf > >> > > I have to assume that "fntexc" is a 'global' since it is not declared in > the Sub. > > > > This code... > > > > ' Gambas module file > > > > Public fntexc As String[] > > > > Public Sub Main() > > > > Dim sFont As String > > > > fntexc = [] > > setFontNameList(["courier", "helvetica", "arial"]) > > For Each sFont In fntexc > > Print sFont > > Next > > End > > > > Public Sub setFontNameList(fontliste As String[]) > > Dim i As Integer > > > > Debug fontliste.Count > > > > fntexc.Clear > > > > For i = 0 To fontliste.count - 1 > > fntexc.Add(fontliste[i]) > > Next > > > > End > > > > ...works, and outputs: > > MMain.setFontNameList.19: 3 > > courier > > helvetica > > arial > > > > > > Hope that helps, > > > > Well, thank you. I will answer here to avoid double explanations. Thank > you all for your answers! > > You are right, fntexc is declared upstairs in the module where this > function is. The problem is, however, not fntexc but fontliste. The > function is called from another module. Fontliste is declared PUBLIC > there, and when the function is called, fontliste contains the items. > But when fontliste shall be used within the function, it appears to be > empty. > > So it is module 1 which has a string array named FontListe: > > Public FontListe As New String[] > . > . > . > Public Sub btnOK_Click() > . > . > ini.setFontNameList(FontListe) > . > . > End > > And in module 2 ("ini") the contents is to be copied into the string > array which is there: > > Private fntexc As New String[] > . > . > . > Public Sub setFontNameList(fontliste As String[]) > 'Dim i As Integer > > fntexc.Clear 'When I stop here, fontliste is filled > > fntexc.Insert(fontliste) 'When I stop here, fontliste is empty > > ' For i = 0 To fntliste.count - 1 'Thanks to Christof for the tip, > but it doesn't run with Insert either > ' fntexc.Add(fntliste[i]) > ' Next > > End > > So my explanation is that I might need another string array which I > declare within the calling Sub in module 1. But I cannot remember I have > ever had a similar issue before. What confuses me most is that I can see > the contents of the array when I enter the function, but it appears > empty when I want to access it there. > > Rolf > > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From shordi at ...626... Thu Apr 28 17:31:05 2016 From: shordi at ...626... (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Thu, 28 Apr 2016 17:31:05 +0200 Subject: [Gambas-user] Embedding the Linux console Message-ID: Hi, I like to embbed a system console, like gnome-terminal or similar, in a form. We are doing a computer control sistem in the job, and have done a microsoft-tree-domain inteface. i like implement the feature of open a ssh-terminal of the showed computers, but adding it a menu bar. Time ago there was a "embedder" control, but it not longer exist. It's posible do this? Thanks in advance. From gambas at ...1... Thu Apr 28 18:18:02 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 28 Apr 2016 18:18:02 +0200 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: References: Message-ID: <572237BA.6000405@...1...> Le 28/04/2016 17:31, Jorge Carri?n a ?crit : > Hi, > > I like to embbed a system console, like gnome-terminal or similar, in a > form. We are doing a computer control sistem in the job, and have done a > microsoft-tree-domain inteface. i like implement the feature of open a > ssh-terminal of the showed computers, but adding it a menu bar. > > Time ago there was a "embedder" control, but it not longer exist. > > It's posible do this? > > Thanks in advance. Not exactly, but yes. Now you have a terminal emulator control in the development version (gb.form.terminal component), that will allow you to do that without any external application. Regards, -- Beno?t Minisini From shordi at ...626... Thu Apr 28 18:24:44 2016 From: shordi at ...626... (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Thu, 28 Apr 2016 18:24:44 +0200 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: <572237BA.6000405@...1...> References: <572237BA.6000405@...1...> Message-ID: Aaarrghh!!! WHEN will be released de next estable version???? ?? We only work with estable versions... have more than 60 computers in 6 differents cities. Can't actualice daily!! (No problem, we can wait...) Best regards 2016-04-28 18:18 GMT+02:00 Beno?t Minisini : > Le 28/04/2016 17:31, Jorge Carri?n a ?crit : > > Hi, > > > > I like to embbed a system console, like gnome-terminal or similar, in a > > form. We are doing a computer control sistem in the job, and have done a > > microsoft-tree-domain inteface. i like implement the feature of open a > > ssh-terminal of the showed computers, but adding it a menu bar. > > > > Time ago there was a "embedder" control, but it not longer exist. > > > > It's posible do this? > > > > Thanks in advance. > > Not exactly, but yes. > > Now you have a terminal emulator control in the development version > (gb.form.terminal component), that will allow you to do that without any > external application. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Thu Apr 28 18:35:23 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 28 Apr 2016 18:35:23 +0200 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: References: <572237BA.6000405@...1...> Message-ID: <57223BCB.80506@...1...> Le 28/04/2016 18:24, Jorge Carri?n a ?crit : > Aaarrghh!!! WHEN will be released de next estable version???? ?? > > We only work with estable versions... have more than 60 computers in 6 > differents cities. Can't actualice daily!! > > (No problem, we can wait...) > > Best regards > Mmm... soon? The new terminal control must be integrated in the IDE to replace the old console, and there are a few bugs to fix from the bugtracker. Then the 3.9 could be released. Regards, -- Beno?t Minisini From ualex73 at ...626... Thu Apr 28 18:43:57 2016 From: ualex73 at ...626... (Alexie) Date: Thu, 28 Apr 2016 18:43:57 +0200 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: <57223BCB.80506@...1...> References: <572237BA.6000405@...1...> <57223BCB.80506@...1...> Message-ID: +1 for a release soon :-) 2016-04-28 18:35 GMT+02:00 Beno?t Minisini : > Le 28/04/2016 18:24, Jorge Carri?n a ?crit : > > Aaarrghh!!! WHEN will be released de next estable version???? ?? > > > > We only work with estable versions... have more than 60 computers in 6 > > differents cities. Can't actualice daily!! > > > > (No problem, we can wait...) > > > > Best regards > > > > Mmm... soon? The new terminal control must be integrated in the IDE to > replace the old console, and there are a few bugs to fix from the > bugtracker. Then the 3.9 could be released. > > Regards, > > -- > Beno?t Minisini > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From t.lee.davidson at ...626... Thu Apr 28 20:01:30 2016 From: t.lee.davidson at ...626... (T Lee Davidson) Date: Thu, 28 Apr 2016 14:01:30 -0400 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: References: Message-ID: <57224FFA.8000701@...626...> On 04/28/2016 11:31 AM, Jorge Carri?n wrote: > Hi, > > I like to embbed a system console, like gnome-terminal or similar, in a > form. We are doing a computer control sistem in the job, and have done a > microsoft-tree-domain inteface. i like implement the feature of open a > ssh-terminal of the showed computers, but adding it a menu bar. > > Time ago there was a "embedder" control, but it not longer exist. > > It's posible do this? > > Thanks in advance. [code] ' Gambas class file Public sOutput As String Public Sub Form_Open() TextArea1.Insert("#>") End Public Sub TextArea1_KeyPress() If Key.Code <> Key.Enter And Key.Code <> Key.Return Then Return Stop Event Shell Right(Split(TextArea1.Text, "\n").Pop(), -2) To sOutput TextArea1.Insert("\n" & sOutput & "#>") TextArea1.EnsureVisible ' (That's nice, Beno?t.) End [/code] You can of course change the default colors of the TextArea to a light on dark to simulate a terminal. But, the cursor will likely become invisible and is not easily changed. -- Lee __________ "Artificial Intelligence is no match for natural stupidity." From herberthguzman at ...626... Thu Apr 28 20:53:34 2016 From: herberthguzman at ...626... (herberth guzman) Date: Thu, 28 Apr 2016 12:53:34 -0600 Subject: [Gambas-user] Create a Form like Panel on Desktop Message-ID: Greetings Lee, I made a lightweight panel apps as an example of what you need, I hope you serve. You can download it from the Farm Sofware (Innova_Panel) Add some basic functions. Example - Apps Launcher - System Tray - Taskbar - Favorite Apps - Network, etc. This example is part of my project Innova Desktop. Innova Desktop: Graphical environment to launch applications advanced, easy to use and fast ,based on technology Qt developed with Gambas3. In one month shows a new preview version 1.4 to show the changes I've made. My project is not possible without the help of: Beno?t Minisini Fabien Bodard Ahmad Zainudin Regards Herberth Guzman > > Hi all ! > > > > Is it possible to create form like panel (f.e. Lxpanel). > > If other apps windows maximize, their maximize according to my form-panel > > stay visible. > > > > Thank you in advance. > > > > > -- > Lee From chrisml at ...3340... Thu Apr 28 21:51:01 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Thu, 28 Apr 2016 21:51:01 +0200 Subject: [Gambas-user] Description of symbols as string? In-Reply-To: <20160428123157.GB8954@...2774...> References: <5721F7D6.3080408@...3340...> <20160428123157.GB8954@...2774...> Message-ID: <572269A5.6040704@...3340...> Hello Tobi, Am 28.04.2016 um 14:31 schrieb Tobias Boege: >> Can I get the description ("Long description of ...") as a string within >> my program? >> > I can think of a hack which only requires you to export the classes you want > this to work with, and then parse the .info file which is generated by the > compiler (this thing is included in the project archive and also in > executable archives). The format is not difficult. If you want to go with > that, I can assist. I'm kind of in a hurry right now and can't decipher how > the IDE does this sort of thing. That would be too much effort for too little effect. I hoped there would be some kind of easy, straightforward introspection that includes the description of symbols. But if not ... I would not hack that in this way ... to complicated ... Thank you :-) Alles Gute Christof Thalhofer -- Dies ist keine Signatur From gambas at ...1... Thu Apr 28 22:08:08 2016 From: gambas at ...1... (=?UTF-8?Q?Beno=c3=aet_Minisini?=) Date: Thu, 28 Apr 2016 22:08:08 +0200 Subject: [Gambas-user] Description of symbols as string? In-Reply-To: <572269A5.6040704@...3340...> References: <5721F7D6.3080408@...3340...> <20160428123157.GB8954@...2774...> <572269A5.6040704@...3340...> Message-ID: <57226DA8.506@...1...> Le 28/04/2016 21:51, Christof Thalhofer a ?crit : > Hello Tobi, > > Am 28.04.2016 um 14:31 schrieb Tobias Boege: > >>> Can I get the description ("Long description of ...") as a string within >>> my program? >>> >> I can think of a hack which only requires you to export the classes you want >> this to work with, and then parse the .info file which is generated by the >> compiler (this thing is included in the project archive and also in >> executable archives). The format is not difficult. If you want to go with >> that, I can assist. I'm kind of in a hurry right now and can't decipher how >> the IDE does this sort of thing. > > That would be too much effort for too little effect. I hoped there would > be some kind of easy, straightforward introspection that includes the > description of symbols. But if not ... I would not hack that in this way > ... to complicated ... > > Thank you :-) > > Alles Gute > > Christof Thalhofer > There is no good reason to insert comments inside the generated code, even if these comments are help comments. It would not be comments anymore then. Why do you need that? -- Beno?t Minisini From chrisml at ...3340... Fri Apr 29 00:54:47 2016 From: chrisml at ...3340... (Christof Thalhofer) Date: Fri, 29 Apr 2016 00:54:47 +0200 Subject: [Gambas-user] Description of symbols as string? In-Reply-To: <57226DA8.506@...1...> References: <5721F7D6.3080408@...3340...> <20160428123157.GB8954@...2774...> <572269A5.6040704@...3340...> <57226DA8.506@...1...> Message-ID: <572294B7.1030608@...3340...> Am 28.04.2016 um 22:08 schrieb Beno?t Minisini: > There is no good reason to insert comments inside the generated code, > even if these comments are help comments. It would not be comments > anymore then. Yes I understand. > Why do you need that? I have a (old ? ported to Gambas) right-system based on a class "Allow" with constants as flags like so: Public Const This As Integer = 1 Public Const That As Integer = 2 Public Const Else As Integer = 4 Public Const Any As Integer = 8 ... And a form where I display the constants names and let the chief choose, whether the employee can have: Allow.This and Allow.That but not Allow.Else ... This or That or Else is based on the names of the constants which are displayed in the form. I'd like to give the chief some more information, like This = "The employee can do this, what causes a lot of things like ..." And so I thought that I can do in code: '' The employee can do this, what causes a lot of things like ... Public Const This As Integer = 1 And use that in my program. It would be an elegant way to declare constants, and keep the meaning of them together. Alles Gute Christof Thalhofer -- Dies ist keine Signatur From shordi at ...626... Fri Apr 29 10:31:46 2016 From: shordi at ...626... (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Fri, 29 Apr 2016 10:31:46 +0200 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: <57224FFA.8000701@...626...> References: <57224FFA.8000701@...626...> Message-ID: Good an simple Lee. Unfortunately doesn't work with ssh sessions or nano sessions, etc. Our target is administer a remote computer via ssh within gambas. Thanks for the answer. Best Regards 2016-04-28 20:01 GMT+02:00 T Lee Davidson : > On 04/28/2016 11:31 AM, Jorge Carri?n wrote: > > Hi, > > > > I like to embbed a system console, like gnome-terminal or similar, in a > > form. We are doing a computer control sistem in the job, and have done a > > microsoft-tree-domain inteface. i like implement the feature of open a > > ssh-terminal of the showed computers, but adding it a menu bar. > > > > Time ago there was a "embedder" control, but it not longer exist. > > > > It's posible do this? > > > > Thanks in advance. > > [code] > ' Gambas class file > > Public sOutput As String > > Public Sub Form_Open() > TextArea1.Insert("#>") > End > > Public Sub TextArea1_KeyPress() > If Key.Code <> Key.Enter And Key.Code <> Key.Return Then Return > Stop Event > Shell Right(Split(TextArea1.Text, "\n").Pop(), -2) To sOutput > TextArea1.Insert("\n" & sOutput & "#>") > TextArea1.EnsureVisible ' (That's nice, Beno?t.) > End > [/code] > > > You can of course change the default colors of the TextArea to a light on > dark to simulate a terminal. But, the cursor will > likely become invisible and is not easily changed. > > > -- > Lee > __________ > > "Artificial Intelligence is no match for natural stupidity." > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From vuott at ...325... Fri Apr 29 11:08:13 2016 From: vuott at ...325... (Ru Vuott) Date: Fri, 29 Apr 2016 09:08:13 +0000 (UTC) Subject: [Gambas-user] "Cannot find EGLConfig, returning null config" References: <3953492.6963444.1461920893754.JavaMail.yahoo.ref@...3424...> Message-ID: <3953492.6963444.1461920893754.JavaMail.yahoo@...3424...> Hello, a member of italian Gambas forum wrote that whenever he starts a program from the IDE in console appears this message: Cannot find EGLConfig, returning null config Unable to find an X11 visual which matches EGL config 0 Could not initialize OpenGL for RasterGLSurface, reverting to RasterSurface. He would like to know what it means. Here his system: [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.16.0-4-amd64 Architecture=x86_64 Distribution=debian stretch/sid Desktop=XFCE Theme=Fusion Language=it_IT.UTF-8 Memory=3963M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.801.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.2000.3 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.57.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.5.1 SDL=libSDL-1.2.so.0.11.4 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-Jv9Vz7IVSR,guid=41718a78422a6a3de8f0daf05721d4d0 DESKTOP_SESSION=lightdm-xsession DISPLAY=:0.0 GB_GUI=gb.qt5 GDMSESSION=lightdm-xsession GDM_LANG=it_IT.utf8 GTK_MODULES=gail:atk-bridge HOME= LANG=it_IT.UTF-8 LOGNAME= PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games PWD= QT_ACCESSIBILITY=1 QT_IM_MODULE=compose QT_LINUX_ACCESSIBILITY_ALWAYS_ON=1 SHELL=/bin/bash TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_DATA_DIRS=/usr/share/xfce4:/usr/local/share/:/usr/share/ XDG_GREETER_DATA_DIR=/var/lib/lightdm/data/ XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_DESKTOP=lightdm-xsession XDG_SESSION_ID=1 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 XDG_SESSION_TYPE=x11 XDG_VTNR=7 From vuott at ...325... Fri Apr 29 12:50:55 2016 From: vuott at ...325... (Ru Vuott) Date: Fri, 29 Apr 2016 10:50:55 +0000 (UTC) Subject: [Gambas-user] "Cannot find EGLConfig, returning null config" References: <1715127313.7067167.1461927055017.JavaMail.yahoo.ref@...3424...> Message-ID: <1715127313.7067167.1461927055017.JavaMail.yahoo@...3424...> http://gambas.8142.n7.nabble.com/quot-Cannot-find-EGLConfig-returning-null-config-quot-td56094.html From bugtracker at ...3416... Sat Apr 30 08:18:08 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 06:18:08 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #932: when create new project (use my own template), always get "cannot create project ..." Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.932&from=L21haW4- Zainudin AHMAD reported a new bug. Summary ------- when create new project (use my own template), always get "cannot create project ..." Type : Bug Priority : Low Gambas version : 3.8.90 (TRUNK) Product : Development Environment Description ----------- when create new project (use my own template), always get "cannot create project File directory does not exist" message Reproduce the bug : - open this project/template project (attach file project) - save project in template directory(/home/[username]/.local/share/gambas3/template) (attach pic-1) - create new project and choose test-template (attach pic-2) - and when in step 3. project details after click Ok, always get "cannot create project File directory does not exist" message (attach pic-3) Temporary solution # if I add a file in template project with the name "icon.png", I don't get the message anymore. (attach pic-4) thanks System information ------------------ [System] Gambas=3.8.90 r7747 OperatingSystem=Linux Kernel=3.2.0-88-generic Architecture=x86 Distribution=Ubuntu 12.04.5 LTS Desktop=LXDE Theme=Gtk Language=en_US.UTF-8 Memory=494M [Libraries] Cairo=libcairo.so.2.11000.2 Curl=libcurl.so.4.2.0 DBus=libdbus-1.so.3.5.8 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.7.0 GTK+2=libgtk-x11-2.0.so.0.2400.10 GTK+3=libgtk-3.so.0.400.2 OpenGL=libGL.so.96.43.23 Poppler=libpoppler.so.19.0.0 QT4=libQtCore.so.4.8.1 QT5=libQt5Core.so.5.0.2 SDL=libSDL-1.2.so.0.11.3 [Environment] DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-RAWZWxJXJW,guid=73eb1586d2ebe6249fe2e5a90000002b DEFAULTS_PATH=/usr/share/gconf/Lubuntu.default.path DESKTOP_SESSION=Lubuntu DISPLAY=:0 GB_GUI=gb.qt4 GDMSESSION=Lubuntu GNOME_KEYRING_CONTROL=/tmp/keyring-zKA5gO GNOME_KEYRING_PID=1833 HOME= LANG=en_US.UTF-8 LC_ADDRESS=en_US.UTF-8 LC_IDENTIFICATION=en_US.UTF-8 LC_MEASUREMENT=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_NAME=en_US.UTF-8 LC_NUMERIC=en_US.UTF-8 LC_PAPER=en_US.UTF-8 LC_TELEPHONE=en_US.UTF-8 LC_TIME=en_US.UTF-8 LOGNAME= MANDATORY_PATH=/usr/share/gconf/Lubuntu.mandatory.path PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games PWD= SAL_USE_VCLPLUGIN=gtk SHELL=/bin/bash SSH_AGENT_PID=1824 SSH_AUTH_SOCK=/tmp/keyring-zKA5gO/ssh TZ=:/etc/localtime USER= XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg/lubuntu/:/etc/xdg/xdg-Lubuntu:/etc/xdg XDG_CONFIG_HOME=/.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/etc/xdg/lubuntu:/usr/share/Lubuntu:/usr/local/share/:/usr/share/:/usr/share:/usr/share/gdm:/var/lib/menu-xdg XDG_MENU_PREFIX=lxde- XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0 XDG_SESSION_COOKIE=2d9710af0959f6893eb828f100000008-1461568761.222495-1748220173 XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0 _LXSESSION_PID=1794 From bugtracker at ...3416... Sat Apr 30 08:18:57 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 06:18:57 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #932: when create new project (use my own template), always get "cannot create project ..." In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.932&from=L21haW4- Zainudin AHMAD added an attachment: test-template-0.0.1.tar.gz From bugtracker at ...3416... Sat Apr 30 08:19:10 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 06:19:10 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #932: when create new project (use my own template), always get "cannot create project ..." In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.932&from=L21haW4- Zainudin AHMAD added an attachment: pic-1.png From bugtracker at ...3416... Sat Apr 30 08:19:20 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 06:19:20 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #932: when create new project (use my own template), always get "cannot create project ..." In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.932&from=L21haW4- Zainudin AHMAD added an attachment: pic-2.png From bugtracker at ...3416... Sat Apr 30 08:19:38 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 06:19:38 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #932: when create new project (use my own template), always get "cannot create project ..." In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.932&from=L21haW4- Zainudin AHMAD added an attachment: pic-3.png From bugtracker at ...3416... Sat Apr 30 08:19:50 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 06:19:50 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #932: when create new project (use my own template), always get "cannot create project ..." In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.932&from=L21haW4- Zainudin AHMAD added an attachment: pic-4.png From gambas.fr at ...626... Sat Apr 30 11:23:09 2016 From: gambas.fr at ...626... (Fabien Bodard) Date: Sat, 30 Apr 2016 11:23:09 +0200 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: References: <57224FFA.8000701@...626...> Message-ID: 2016-04-29 10:31 GMT+02:00 Jorge Carri?n : > Good an simple Lee. > > Unfortunately doesn't work with ssh sessions or nano sessions, etc. Our > target is administer a remote computer via ssh within gambas. > > Thanks for the answer. > > Best Regards > But now we have the Gambas console. I wanted a real console to embark on some of my own projects and I especially wanted to understand how to work VT100 terminals in order to make a simpler component that gb.curses. Rebuild the machine to learn to communicate with her. The second advantage is to gain a certain independence in relation to desktop environment. Also the communication between the program and the onboard terminal can be more direct. Benoit rewrote almost all my code which was based on konsole out. Now it is a terminal with a really original internal code. It's pretty fast execution has not blush before a terminal C. Frankly it's one of the beautiful parts of the code gambas project. Should frame it :-). -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot_20160430_112052.png Type: image/png Size: 117556 bytes Desc: not available URL: From bugtracker at ...3416... Sat Apr 30 14:15:45 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 12:15:45 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #933: sub-pixel antialiasing is ignored by qt4 editor component Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.933&from=L21haW4- Antonio OREFICE reported a new bug. Summary ------- sub-pixel antialiasing is ignored by qt4 editor component Type : Bug Priority : Medium Gambas version : 3.8 Product : GUI components Description ----------- I don't think there is the need to post any code. Right in the main ide is clear that it is not using sub-pixel AA. The rest of the gui is fine. As a side note, i noticed that it works if i open the gui via ssh -Y, even if i connect to localhost! gtk editor component is displayed correctly. System information ------------------ [System] Gambas=3.8.4 OperatingSystem=Linux Kernel=3.12.1- Architecture=x86 Distribution=arch Desktop=LXDE Theme=QtCurve Language=it_IT.utf8 Memory=2014M [Libraries] Cairo=libcairo.so.2.11400.6 Curl=libcurl.so.4.4.0 DBus=libdbus-1.so.3.14.6 GStreamer=libgstreamer-0.10.so.0.30.0 GStreamer=libgstreamer-1.0.so.0.603.0 GTK+2=libgtk-x11-2.0.so.0.2400.30 GTK+3=libgtk-3.so.0.1800.9 OpenGL=libGL.so.1.2.0 Poppler=libpoppler.so.58.0.0 QT4=libQtCore.so.4.8.7 QT5=libQt5Core.so.5.6.0 SDL=libSDL-1.2.so.0.11.4 [Environment] CUR_WIDTH=64 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus DESKTOP_SESSION=LXDE DISPLAY=:0 EDITOR=nano GB_GUI=gb.qt4 HG=/usr/bin/hg HISTCONTROL=ignoredups HISTSIZE=10000 HOME= INFINALITY_FT_AUTOFIT_FORCE_SLIGHT_HINTING=true INFINALITY_FT_AUTOHINT_HORIZONTAL_STEM_DARKEN_STRENGTH=0 INFINALITY_FT_AUTOHINT_INCREASE_GLYPH_HEIGHTS=false INFINALITY_FT_AUTOHINT_SNAP_STEM_HEIGHT=0 INFINALITY_FT_AUTOHINT_VERTICAL_STEM_DARKEN_STRENGTH=0 INFINALITY_FT_BOLD_EMBOLDEN_X_VALUE=0 INFINALITY_FT_BOLD_EMBOLDEN_Y_VALUE=0 INFINALITY_FT_BRIGHTNESS=0 INFINALITY_FT_CHROMEOS_STYLE_SHARPENING_STRENGTH=0 INFINALITY_FT_CONTRAST=0 INFINALITY_FT_FILTER_PARAMS=06 25 44 25 06 INFINALITY_FT_FRINGE_FILTER_STRENGTH=0 INFINALITY_FT_GAMMA_CORRECTION=0 100 INFINALITY_FT_GLOBAL_EMBOLDEN_X_VALUE=0 INFINALITY_FT_GLOBAL_EMBOLDEN_Y_VALUE=0 INFINALITY_FT_GRAYSCALE_FILTER_STRENGTH=0 INFINALITY_FT_STEM_ALIGNMENT_STRENGTH=0 INFINALITY_FT_STEM_FITTING_STRENGTH=0 INFINALITY_FT_STEM_SNAPPING_SLIDING_SCALE=0 INFINALITY_FT_USE_KNOWN_SETTINGS_ON_SELECTED_FONTS=false INFINALITY_FT_USE_VARIOUS_TWEAKS=true INFINALITY_FT_WINDOWS_STYLE_SHARPENING_STRENGTH=0 INTEL_BATCH=1 LANG=it_IT.utf8 LC_COLLATE=C LD_LIBRARY_PATH=/usr/lib:/usr/local/lib LOGNAME= LS_COLORS=rs=0:di=01;34:ln=01;36:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:su=37;41:sg=30;43:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36: MAIL=/var/spool/mail/ MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins NXDIR=/usr/lib/nx OOO_FORCE_DESKTOP=gnome PATH=/usr/lib/ccache/bin:/usr/lib/ccache/bin:/usr/lib/nx/bin:/usr/lib/hardening-wrapper/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:/opt/qt/bin:/root/scripts:/usr/local/bin:/scripts:/root/scripts:/usr/local/bin:/scripts PKG_CONFIG_PATH=:/opt/qt/lib/pkgconfig PROMPT_COMMAND=echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007" PS1=\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] PS2=> PS3=> PS4=+ PWD= QTDIR=/opt/qt QT_GRAPHICSSYSTEM=raster QT_NO_GLIB=1 QT_PLATFORM_PLUGIN=lxqt QT_QPA_PLATFORMTHEME=lxqt QT_XFT=true SAL_USE_VCLPLUGIN=gtk SDL_MOUSE_RELATIVE=0 SHELL=/bin/bash SHLVL=3 TERM=xterm TZ=:/etc/localtime USER= WINDOWPATH=1 XAUTHORITY=/.Xauthority XDG_CONFIG_DIRS=/etc/xdg XDG_CONFIG_HOME=/.config XDG_CURRENT_DESKTOP=LXDE XDG_DATA_DIRS=/usr/local/share:/usr/share:/usr/share/gdm:/var/lib/menu-xdg XDG_MENU_PREFIX=lxde- XDG_RUNTIME_DIR=/run/user/1000 XDG_SEAT=seat0 XDG_SESSION_ID=1 XDG_VTNR=1 _=/usr/bin/gambas3 _LXSESSION_PID=354 From bugtracker at ...3416... Sat Apr 30 14:16:04 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 12:16:04 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #933: sub-pixel antialiasing is ignored by qt4 editor component In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.933&from=L21haW4- Antonio OREFICE added an attachment: 2016-04-30-141453_1024x600_scrot.png From bugtracker at ...3416... Sat Apr 30 14:34:14 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 12:34:14 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #933: sub-pixel antialiasing is ignored by qt4 editor component In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.933&from=L21haW4- Antonio OREFICE added an attachment: closeup.png From bugtracker at ...3416... Sat Apr 30 14:35:59 2016 From: bugtracker at ...3416... (bugtracker at ...3416...) Date: Sat, 30 Apr 2016 12:35:59 GMT Subject: [Gambas-user] [Gambas Bug Tracker] Bug #933: sub-pixel antialiasing is ignored by qt4 editor component In-Reply-To: References: Message-ID: http://gambaswiki.org/bugtracker/edit?object=BUG.933&from=L21haW4- Comment #1 by Antonio OREFICE: In closeup.png, you can see RGB suppixel aa in the left and grayscale rendering in the right. From shordi at ...626... Sat Apr 30 23:40:15 2016 From: shordi at ...626... (=?UTF-8?Q?Jorge_Carri=C3=B3n?=) Date: Sat, 30 Apr 2016 23:40:15 +0200 Subject: [Gambas-user] Embedding the Linux console In-Reply-To: References: <57224FFA.8000701@...626...> Message-ID: Wow, what nice look! I am waiting impatiently the 3.9 release... (or is the 3.8.5?) Regards 2016-04-30 11:23 GMT+02:00 Fabien Bodard : > 2016-04-29 10:31 GMT+02:00 Jorge Carri?n : > > Good an simple Lee. > > > > Unfortunately doesn't work with ssh sessions or nano sessions, etc. Our > > target is administer a remote computer via ssh within gambas. > > > > Thanks for the answer. > > > > Best Regards > > > > But now we have the Gambas console. I wanted a real console to embark > on some of my own projects and I especially wanted to understand how > to work VT100 terminals in order to make a simpler component that > gb.curses. Rebuild the machine to learn to communicate with her. The > second advantage is to gain a certain independence in relation to > desktop environment. Also the communication between the program and > the onboard terminal can be more direct. > Benoit rewrote almost all my code which was based on konsole out. Now > it is a terminal with a really original internal code. It's pretty > fast execution has not blush before a terminal C. > > Frankly it's one of the beautiful parts of the code gambas project. > Should frame it :-). > > > ------------------------------------------------------------------------------ > Find and fix application performance issues faster with Applications > Manager > Applications Manager provides deep performance insights into multiple > tiers of > your business applications. It resolves application problems quickly and > reduces your MTTR. Get your free trial! > https://ad.doubleclick.net/ddm/clk/302982198;130105516;z > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > >