From gambas.fr at ...626... Mon Oct 1 11:33:14 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 1 Oct 2007 11:33:14 +0200 Subject: [Gambas-user] Howto get image data? In-Reply-To: <976ad9050709282112h4b4b4e25nabe194bb26c4c6af@...627...> References: <976ad9050709282112h4b4b4e25nabe194bb26c4c6af@...627...> Message-ID: <6324a42a0710010233r29897320tea75f3a176d56e40@...627...> http://gambasdoc.org/help/comp/gb.qt/picture http://gambasdoc.org/help/comp/gb.qt/image http://gambasdoc.org/help/comp/gb.image :) Fabien 2007/9/29, Arief Bayu Purwanto : > > hello gambas users, > > I want to know hot to get width and height from an image with supplied > filepath, also is there any page on the net that can teach me how to do > image manipulation(resize, etc) in gambas? > > TIA. > > -- > Daiguren Hy?rinmaru > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From rgx at ...17... Mon Oct 1 11:58:37 2007 From: rgx at ...17... (RalfGesellensetter) Date: Mon, 1 Oct 2007 11:58:37 +0200 Subject: [Gambas-user] Transparent/non-destructive Picturebox? Message-ID: <200710011158.37807.rgx@...17...> Dear list, I created a simple simulation: A character (displayed in a 32x32 picturebox) moves above a plane (I use a drawingarea), its track is plotted there. Now I got two questions: 1. Despite using a GIF image with tranparent background, the drawing area is covered by a solid 32x32 square. 2. The picturebox (acting as sprite here) has the sad side effect of a rubber, erasing former tracks while hoovering over them :( Any hints? Thanks Ralf From gambas.fr at ...626... Mon Oct 1 12:06:50 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 1 Oct 2007 12:06:50 +0200 Subject: [Gambas-user] Transparent/non-destructive Picturebox? In-Reply-To: <200710011158.37807.rgx@...17...> References: <200710011158.37807.rgx@...17...> Message-ID: <6324a42a0710010306j333efe9fg51b573d4b6015c7d@...627...> a picture box is not transparent why not drawing the picture directly in the drawing area ? draw.begin(drawingarea1) draw.picture(picture["path"],x,y) draw.end 2007/10/1, RalfGesellensetter : > > Dear list, > > I created a simple simulation: A character (displayed in a 32x32 > picturebox) > moves above a plane (I use a drawingarea), its track is plotted there. > > Now I got two questions: > 1. Despite using a GIF image with tranparent background, the drawing area > is > covered by a solid 32x32 square. > > 2. The picturebox (acting as sprite here) has the sad side effect of a > rubber, > erasing former tracks while hoovering over them :( > > Any hints? > > Thanks > Ralf > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From wspinto at ...1405... Mon Oct 1 16:42:08 2007 From: wspinto at ...1405... (Wellington de Souza Pinto) Date: Mon, 01 Oct 2007 11:42:08 -0300 Subject: [Gambas-user] Bug in svn version (not open samples) Message-ID: <1191249728.470107405e1f1@...1433...> Cannot open project file : ... Null object Settings._get.176 Reguards, Souza, Wellington ___________________________________________________________________________________ Para fazer uma liga??o DDD pra perto ou pra longe, faz um 21. A Embratel tem tarifas muito baratas esperando por voc?. Aproveite! From gambas at ...1... Mon Oct 1 16:50:14 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 1 Oct 2007 16:50:14 +0200 Subject: [Gambas-user] Bug in svn version (not open samples) In-Reply-To: <1191249728.470107405e1f1@...1433...> References: <1191249728.470107405e1f1@...1433...> Message-ID: <200710011650.14290.gambas@...1...> On lundi 01 octobre 2007, Wellington de Souza Pinto wrote: > Cannot open project file : > ... > > Null object > Settings._get.176 > > Reguards, > > Souza, Wellington Did you do ./reconf-all; ./configure -C ? The recent versions of svn trunk need a full package reconfiguration and compilation! Regards, -- Benoit Minisini From gareth at ...1689... Mon Oct 1 18:33:01 2007 From: gareth at ...1689... (Gareth Bult) Date: Mon, 1 Oct 2007 17:33:01 +0100 (BST) Subject: [Gambas-user] Re; Developing components ... Message-ID: <18043470.3481191256381477.JavaMail.root@...1708...> Hi, I just spent the best part of the afternoon trying to track down random; Cannot open file. Component missing FForm . CreateControl .1055 When trying to write and install a new component. I don't really understand how the module loader works, but there's something really confusing going on somewhere. I'm working on gb.db.form and I have a copy in a local folder. After recompiling my component and making an exec, I do; cp gb.db.form.gambas /usr/lib/gambas2/ cp .component /usr/lib/gambas2/gb.db.form.component gbi2 gb.db.form Then reload Gambas and test. This does *not* reload my new component code! (or at least it doesn't *most* of the time!) What I've now done is to remove gb.db.form.* from /usr/lib/gambas2 and I've told gambas to install the component in my user's component folder. Which installs two symlinks into .local/lib/gambas2. If I do this; a. Change code b. Compile c. Make exec d. Project -> Properties e. Unselect gb.db.form f. Ok g. Project -> Properties h. Select gb.db.form i. OK .. I do NOT get the new component loaded. (100%) If I do this; a. Change code b. Compile c. Make exec d. Project -> Properties e. Unselect gb.db.form f. Ok g. ** Compile All ** h. Project -> Properties i. Select gb.db.form j. OK .. I DO get the new component loaded. (100%) This is fairly painful (!) Is there any chance we can have the IDE automatically reload user-components on recompilation ??? Gareth. -- Managing Director, Encryptec Limited Tel: 0845 25 77033, Mob: 07891 389657 Email: gareth at ...1689... Statements made are at all times subject to Encryptec's Terms and Conditions of Business, which are available upon request. From ct1egh at ...626... Mon Oct 1 19:29:53 2007 From: ct1egh at ...626... (=?ISO-8859-1?B?QW50825pbw==?= Pereira) Date: Mon, 1 Oct 2007 18:29:53 +0100 Subject: [Gambas-user] Timezone Message-ID: <20071001182953.42273af3@...1779...> Hi list users, Is there any way to get the system timezone with Gambas2? Regards, Ant?nio From gambas at ...1... Mon Oct 1 20:32:57 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 1 Oct 2007 20:32:57 +0200 Subject: [Gambas-user] Re; Developing components ... In-Reply-To: <18043470.3481191256381477.JavaMail.root@...1708...> References: <18043470.3481191256381477.JavaMail.root@...1708...> Message-ID: <200710012032.57925.gambas@...1...> On lundi 01 octobre 2007, Gareth Bult wrote: > Hi, > > I just spent the best part of the afternoon trying to track down random; > > Cannot open file. > Component missing > FForm . CreateControl .1055 > > When trying to write and install a new component. > > I don't really understand how the module loader works, but there's > something really confusing going on somewhere. > > I'm working on gb.db.form and I have a copy in a local folder. > After recompiling my component and making an exec, I do; > > cp gb.db.form.gambas /usr/lib/gambas2/ > cp .component /usr/lib/gambas2/gb.db.form.component > gbi2 gb.db.form > > Then reload Gambas and test. > This does *not* reload my new component code! (or at least it doesn't > *most* of the time!) > > What I've now done is to remove gb.db.form.* from /usr/lib/gambas2 and I've > told gambas to install the component in my user's component folder. Which > installs two symlinks into .local/lib/gambas2. > > If I do this; > a. Change code > b. Compile > c. Make exec > d. Project -> Properties > e. Unselect gb.db.form > f. Ok > g. Project -> Properties > h. Select gb.db.form > i. OK > .. I do NOT get the new component loaded. (100%) > > If I do this; > a. Change code > b. Compile > c. Make exec > d. Project -> Properties > e. Unselect gb.db.form > f. Ok > g. ** Compile All ** > h. Project -> Properties > i. Select gb.db.form > j. OK > .. I DO get the new component loaded. (100%) > > This is fairly painful (!) > > Is there any chance we can have the IDE automatically reload > user-components on recompilation ??? > > Gareth. Please give more details: After having copying things into /usr/lib/gambas2 and run gbi2 (as root I imagine), what do you mean by "reload Gambas and test" ? What do you mean by "I do/do not get the component loaded" ? There is a design bug in the IDE at the moment: it caches all component information, and the cache is never flushed. So if a component is modified in the background, the component information is not refreshed, and so you do not see any new symbol or controls defined in the new component. You have to close the IDE and open it again. Another point: you can debug your component without having to install it: just create a startup form or module in it, and use it for debugging. Regards, -- Benoit Minisini From gambas at ...1... Mon Oct 1 20:35:49 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 1 Oct 2007 20:35:49 +0200 Subject: [Gambas-user] File Chooser In-Reply-To: <200709251804.13422.steven@...1652...> References: <200709251045.25097.steven@...1652...> <200709251745.43125.gambas@...1...> <200709251804.13422.steven@...1652...> Message-ID: <200710012035.49800.gambas@...1...> On mardi 25 septembre 2007, Steven Lobbezoo wrote: > Hi Benoit, > > I cannot send you the project, since your mail box does not accept large > files ;-) (known problem). > But attached is the form and the code. > It is called with a showmodal. > In the mean time i went back to the previous trunk, and it works just fine > now. > > Kindest regards, > > Steven > I need a module named "MGlobal". Can you send it to me? -- Benoit Minisini From dcamposf at ...626... Mon Oct 1 20:36:10 2007 From: dcamposf at ...626... (Daniel Campos) Date: Mon, 1 Oct 2007 20:36:10 +0200 Subject: [Gambas-user] Timezone In-Reply-To: <20071001182953.42273af3@...1779...> References: <20071001182953.42273af3@...1779...> Message-ID: <7259b5ae0710011136w25a157b5u6fd8e21900665b37@...627...> Just read the contents of the /etc/timezone file Daniel 2007/10/1, Ant?nio Pereira : > Hi list users, > > Is there any way to get the system timezone with Gambas2? > > Regards, > > Ant?nio > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From rgx at ...17... Mon Oct 1 21:17:22 2007 From: rgx at ...17... (RalfGesellensetter) Date: Mon, 1 Oct 2007 21:17:22 +0200 Subject: [Gambas-user] Transparent/non-destructive Picturebox? In-Reply-To: <6324a42a0710010306j333efe9fg51b573d4b6015c7d@...627...> References: <200710011158.37807.rgx@...17...> <6324a42a0710010306j333efe9fg51b573d4b6015c7d@...627...> Message-ID: <200710012117.22114.rgx@...17...> Hi Fabian & thanks for the quick reply. Am Montag, 1. Oktober 2007 12:06:50 schrieb Fabien Bodard: > draw.begin(drawingarea1) > ?draw.picture(picture["path"],x,y) > draw.end Okay, this would solve the transparancy issue. But in order to move the image over the drawingarea in a non-destructive way, I'd need something like doublebuffering I guess? BTW: Is there any way to draw a vector orientated pictures (using draw commands) and export the result, say as SVG file? Kind regards Ralf From ct1egh at ...626... Mon Oct 1 21:16:41 2007 From: ct1egh at ...626... (=?ISO-8859-1?B?QW50825pbw==?= Pereira) Date: Mon, 1 Oct 2007 20:16:41 +0100 Subject: [Gambas-user] Timezone In-Reply-To: <7259b5ae0710011136w25a157b5u6fd8e21900665b37@...627...> References: <20071001182953.42273af3@...1779...> <7259b5ae0710011136w25a157b5u6fd8e21900665b37@...627...> Message-ID: <20071001201641.5a4e3760@...1779...> That's great Daniel Thanks a lot Regards, Antonio Em Mon, 1 Oct 2007 20:36:10 +0200 "Daniel Campos" escreveu: > Just read the contents of the /etc/timezone file > > Daniel > > 2007/10/1, Ant?nio Pereira : > > Hi list users, > > > > Is there any way to get the system timezone with Gambas2? > > > > Regards, > > > > Ant?nio > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas.fr at ...626... Mon Oct 1 21:25:46 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 1 Oct 2007 21:25:46 +0200 Subject: [Gambas-user] Transparent/non-destructive Picturebox? In-Reply-To: <200710012117.22114.rgx@...17...> References: <200710011158.37807.rgx@...17...> <6324a42a0710010306j333efe9fg51b573d4b6015c7d@...627...> <200710012117.22114.rgx@...17...> Message-ID: <6324a42a0710011225i31597b83x39afb18f914c3eda@...627...> the draw.drawing method is for vector it allow to load a svg draw. but qt3 does not know svg well 2007/10/1, RalfGesellensetter : > > Hi Fabian & thanks for the quick reply. > > Am Montag, 1. Oktober 2007 12:06:50 schrieb Fabien Bodard: > > draw.begin(drawingarea1) > > draw.picture(picture["path"],x,y) > > draw.end > > Okay, this would solve the transparancy issue. But in order to move the > image > over the drawingarea in a non-destructive way, I'd need something like > doublebuffering I guess? > > BTW: Is there any way to draw a vector orientated pictures (using draw > commands) and export the result, say as SVG file? > > Kind regards > Ralf > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gareth at ...1689... Tue Oct 2 02:47:06 2007 From: gareth at ...1689... (Gareth Bult) Date: Tue, 2 Oct 2007 01:47:06 +0100 (BST) Subject: [Gambas-user] Re; Developing components ... In-Reply-To: <200710012032.57925.gambas@...1...> Message-ID: <12878245.3941191286026269.JavaMail.root@...1708...> >After having copying things into /usr/lib/gambas2 and run gbi2 (as root I >imagine), what do you mean by "reload Gambas and test" ? Quit the IDE and restart. >What do you mean by "I do/do not get the component loaded" ? Whether the "old" component appears, or the modified component. >There is a design bug in the IDE at the moment: it caches all component I restart the IDE "all the time" , it seems not to help .. >Another point: you can debug your component without having to install it: just >create a startup form or module in it, and use it for debugging. If I don't install it, I don't have the graphical element - which is partly the bit I'm debugging ... ??? I've now wiped Gambas from my system, convinced it is in some way corrupt. Currently I'm trying rebuilds, however the build which seems to work, SEGV's on start up .. trying again ... Gareth. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From david_villalobos_c at ...43... Tue Oct 2 18:01:27 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 2 Oct 2007 09:01:27 -0700 (PDT) Subject: [Gambas-user] gb.db.form Message-ID: <395974.85263.qm@...1678...> Hi all, Does someone have an example using the gb.db.form component??? Regards. David ____________________________________________________________________________________ Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. http://farechase.yahoo.com/ From steven at ...1652... Tue Oct 2 18:28:04 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 2 Oct 2007 18:28:04 +0200 Subject: [Gambas-user] File Chooser In-Reply-To: <200710012035.49800.gambas@...1...> References: <200709251045.25097.steven@...1652...> <200709251804.13422.steven@...1652...> <200710012035.49800.gambas@...1...> Message-ID: <200710021828.04330.steven@...1652...> Of course, here it is. Steven Le lundi 1 octobre 2007 20:35, Benoit Minisini a ?crit?: > On mardi 25 septembre 2007, Steven Lobbezoo wrote: > > Hi Benoit, > > > > I cannot send you the project, since your mail box does not accept large > > files ;-) (known problem). > > But attached is the form and the code. > > It is called with a showmodal. > > In the mean time i went back to the previous trunk, and it works just > > fine now. > > > > Kindest regards, > > > > Steven > > I need a module named "MGlobal". Can you send it to me? -------------- next part -------------- ' Gambas module file PUBLIC db AS NEW Connection PUBLIC rs AS Result PUBLIC rs1 AS Result PUBLIC btnok AS String PUBLIC btnno AS String PUBLIC Connected AS Integer ' the tree fields of the question form PUBLIC QFld1 AS String PUBLIC QFld2 AS String PUBLIC QFld3 AS String ' these fields define the current user ! PUBLIC U_No AS Integer PUBLIC U_Nom AS String PUBLIC U_Agency AS Integer PUBLIC U_AgenNom AS String PUBLIC U_AgenRep AS String PUBLIC U_AgenChef AS Integer ' the boss of the person logged in PUBLIC U_Level AS Integer ' the level code of the person logged in PUBLIC U_Mail AS String ' the e-mail of the user PUBLIC U_Cell AS String ' the portable phone number PUBLIC U_AgenStreet AS String ' the street adress of the agency PUBLIC U_AgenPlz AS String ' and the postcode PUBLIC U_AgenVille AS String ' and the town PUBLIC U_AgenFax AS String ' and the fax number PUBLIC U_AgenTel AS String ' and the agency's telephone number PUBLIC V_Code AS Integer ' the current ville, selected from villes PUBLIC M_Code AS String ' the current mandat code (new ?) PUBLIC M_Sel_X AS Integer PUBLIC M_Sel_Y AS Integer PUBLIC F_Ch AS NEW String[] PUBLIC FPath AS String = USER.Home ' the last path of the fileselector, remember this PUBLIC JobTbl AS NEW Collection ' all Jobs available PUBLIC Rev_Web AS String ' base path to the revimmo website PUBLIC ParmsGen AS result ' the resultset of the read general parms '''''''''''''''''''''''''''''''''' ''sub to connect to mysql server'' '''''''''''''''''''''''''''''''''' PUBLIC FUNCTION conn(host AS String, lgn AS String, pass AS String) AS Boolean db.close db.Type = "mysql" Connected = FALSE db.Host = Host db.Login = lgn db.Password = pass db.Open Connected = TRUE RETURN TRUE CATCH Message.error(error.text) RETURN FALSE END '''''''''''''''''''''''''''''''''''''''' ''sub to fill the tableview w/ records'' '''''''''''''''''''''''''''''''''''''''' PUBLIC SUB fill_view(tbv AS GridView, qry AS String) DIM i AS Float rs1 = db.exec(qry) WITH rs1 tbv.rows.count = 0 IF .count <> 0 THEN tbv.columns.count = .fields.count tbv.rows.count = .count END IF END WITH END PUBLIC SUB set_jobs() Mglobal.JobTbl.Add("1", "N??gociatrice") Mglobal.JobTbl.Add("2", "Chef d'agence") Mglobal.JobTbl.Add("3", "Chef secteur") Mglobal.JobTbl.Add("4", "Directeur") Mglobal.JobTbl.Add("5", "Suppliant") Mglobal.JobTbl.Add("6", "Carte seul") Mglobal.JobTbl.Add("7", "S??cretaire") Mglobal.JobTbl.Add("8", "Comptable") Mglobal.JobTbl.Add("9", "Diverse") END PUBLIC FUNCTION MyVal(S AS String) AS Float IF S THEN RETURN Val(Replace(Replace(Replace(Replace(Replace(S, " ", ""), "???", ""), ")", ""), "(", ""), ".", ",")) ELSE RETURN 0 END IF END PUBLIC FUNCTION Authorize(Level AS Integer) AS Integer ' we say if someone is authorised (we take the person level from U_..... ' There are 3 levels to be asked : ' 0: N??gociatrices ' 1: respnsables agences et s??cretaires ' 2: direction et compta IF Level = 2 THEN IF U_Level = 4 OR U_Level = 8 THEN RETURN TRUE ELSE RETURN FALSE ENDIF ELSE IF Level = 1 THEN IF (U_Level > 1) AND (U_Level <> 6) AND (U_Level <> 9) THEN RETURN TRUE ELSE RETURN FALSE ENDIF ELSE IF Level = 0 THEN IF U_Level <> 6 AND U_Level <> 9 THEN RETURN TRUE ELSE RETURN FALSE ENDIF END IF RETURN FALSE END PUBLIC FUNCTION GetComm(VenteNo AS Integer, Type AS String) AS String[] ' we fix the nego, son agence and the comm on a vente ' Type can be 'Vente', 'Mandat', 'Chef' DIM hSql AS String DIM rSet AS Result DIM Rstr AS String[3] IF Type = "Vente" THEN hSql = "SELECT ((Jobs.comven * (Ventes.Comm_Vendue) / 1.196 - (Ifnull(Ded_1, 0) + Ifnull(Ded_2, 0) + Ifnull(Ded_3, 0))) / 100) " & "* Mandats.ComFacteur AS commision, agents.agent as negolala, agences.repertoire as filia FROM Ventes, agents, agences, Jobs, Mandats " & "where Ventes.No = " & Str(VenteNo) & " AND Ventes.Commercial = agents.id AND Jobs.Nego = Ventes.Commercial AND " & "Jobs.Start < Ventes.Date AND " & "(Jobs.End > Ventes.Date OR Ifnull(Jobs.End, 0) = 0) AND agences.no = Jobs.Filiale AND Mandats.Code = Ventes.Code_Mandat" ELSE IF Type = "Mandat" THEN ELSE IF Type = "Chef" THEN END IF rSet = db.Exec(hSql) IF rSet.Available THEN Rstr[0] = Format(rSet!Commision, "($,#.##)") Rstr[1] = rSet!negolala Rstr[2] = rSet!filia END IF RETURN Rstr END PUBLIC FUNCTION getmois(No AS Integer) AS String DIM tmp AS String SELECT CASE No CASE 1 tmp = "Janvier" CASE 2 tmp = "F??vrier" CASE 3 tmp = "Mars" CASE 4 tmp = "Avril" CASE 5 tmp = "Mai" CASE 6 tmp = "June" CASE 7 tmp = "Juillet" CASE 8 tmp = "A??ut" CASE 9 tmp = "Septembre" CASE 10 tmp = "Octobre" CASE 11 tmp = "Novembre" CASE 12 tmp = "D??cembre" END SELECT RETURN tmp END From gareth at ...1689... Tue Oct 2 19:05:40 2007 From: gareth at ...1689... (Gareth Bult) Date: Tue, 2 Oct 2007 18:05:40 +0100 (BST) Subject: [Gambas-user] gb.db.form In-Reply-To: <395974.85263.qm@...1678...> Message-ID: <31860152.5831191344740573.JavaMail.root@...1708...> If you pull the source code for gb.db.form, there's actually a test / demo built in ... However (!) once I can get Gambas to work again, I will be producing some examples, hopefully also with GridEditor included. -- Managing Director, Encryptec Limited Tel: 0845 25 77033, Mob: 07891 389657 Email: gareth at ...1689... Statements made are at all times subject to Encryptec's Terms and Conditions of Business, which are available upon request. ----- Original Message ----- From: "David Villalobos Cambronero" To: "Gambas Ingl?s" Sent: Tuesday, October 2, 2007 5:01:27 PM (GMT) Europe/London Subject: [Gambas-user] gb.db.form Hi all, Does someone have an example using the gb.db.form component??? Regards. David ____________________________________________________________________________________ Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. http://farechase.yahoo.com/ ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Tue Oct 2 19:09:45 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 2 Oct 2007 19:09:45 +0200 Subject: [Gambas-user] gb.db.form In-Reply-To: <31860152.5831191344740573.JavaMail.root@...1708...> References: <31860152.5831191344740573.JavaMail.root@...1708...> Message-ID: <200710021909.45434.gambas@...1...> On mardi 02 octobre 2007, Gareth Bult wrote: > If you pull the source code for gb.db.form, there's actually a test / demo > built in ... > > However (!) once I can get Gambas to work again, I will be producing some > examples, hopefully also with GridEditor included. > > -- > Managing Director, Encryptec Limited > Tel: 0845 25 77033, Mob: 07891 389657 > Email: gareth at ...1689... > Statements made are at all times subject to Encryptec's Terms and > Conditions of Business, which are available upon request. > > ----- Original Message ----- > From: "David Villalobos Cambronero" > To: "Gambas Ingl?s" > Sent: Tuesday, October 2, 2007 5:01:27 PM (GMT) Europe/London > Subject: [Gambas-user] gb.db.form > > Hi all, > > Does someone have an example using the gb.db.form component??? > > Regards. > > David > The Database example uses gb.db.form too. Regards, -- Benoit Minisini From david_villalobos_c at ...43... Tue Oct 2 19:13:12 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 2 Oct 2007 10:13:12 -0700 (PDT) Subject: [Gambas-user] gb.db.form Message-ID: <867910.28279.qm@...1656...> Great!!! I'll check. Anyway hope you can get Gambas working ASAP to get these examples... By the way.... I want to learn about it to write some documentation, so, hope you can send some examples Many Thanks: David ----- Original Message ---- From: Gareth Bult To: mailing list for gambas users Sent: Tuesday, October 2, 2007 11:05:40 AM Subject: Re: [Gambas-user] gb.db.form If you pull the source code for gb.db.form, there's actually a test / demo built in ... However (!) once I can get Gambas to work again, I will be producing some examples, hopefully also with GridEditor included. -- Managing Director, Encryptec Limited Tel: 0845 25 77033, Mob: 07891 389657 Email: gareth at ...1689... Statements made are at all times subject to Encryptec's Terms and Conditions of Business, which are available upon request. ----- Original Message ----- From: "David Villalobos Cambronero" To: "Gambas Ingl?s" Sent: Tuesday, October 2, 2007 5:01:27 PM (GMT) Europe/London Subject: [Gambas-user] gb.db.form Hi all, Does someone have an example using the gb.db.form component??? Regards. David ____________________________________________________________________________________ Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. http://farechase.yahoo.com/ ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Shape Yahoo! in your own image. Join our Network Research Panel today! http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 From david_villalobos_c at ...43... Tue Oct 2 19:22:19 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 2 Oct 2007 10:22:19 -0700 (PDT) Subject: [Gambas-user] gb.db.form Message-ID: <906294.47647.qm@...1668...> ok, I'll see it again but carefully :-) ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Tuesday, October 2, 2007 11:09:45 AM Subject: Re: [Gambas-user] gb.db.form On mardi 02 octobre 2007, Gareth Bult wrote: > If you pull the source code for gb.db.form, there's actually a test / demo > built in ... > > However (!) once I can get Gambas to work again, I will be producing some > examples, hopefully also with GridEditor included. > > -- > Managing Director, Encryptec Limited > Tel: 0845 25 77033, Mob: 07891 389657 > Email: gareth at ...1689... > Statements made are at all times subject to Encryptec's Terms and > Conditions of Business, which are available upon request. > > ----- Original Message ----- > From: "David Villalobos Cambronero" > To: "Gambas Ingl?s" > Sent: Tuesday, October 2, 2007 5:01:27 PM (GMT) Europe/London > Subject: [Gambas-user] gb.db.form > > Hi all, > > Does someone have an example using the gb.db.form component??? > > Regards. > > David > The Database example uses gb.db.form too. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Looking for a deal? Find great prices on flights and hotels with Yahoo! FareChase. http://farechase.yahoo.com/ From david_villalobos_c at ...43... Tue Oct 2 19:28:04 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 2 Oct 2007 10:28:04 -0700 (PDT) Subject: [Gambas-user] gb.db.form Message-ID: <713882.56955.qm@...1670...> ok, I'll see it again but carefully :-) ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Tuesday, October 2, 2007 11:09:45 AM Subject: Re: [Gambas-user] gb.db.form On mardi 02 octobre 2007, Gareth Bult wrote: > If you pull the source code for gb.db.form, there's actually a test / demo > built in ... > > However (!) once I can get Gambas to work again, I will be producing some > examples, hopefully also with GridEditor included. > > -- > Managing Director, Encryptec Limited > Tel: 0845 25 77033, Mob: 07891 389657 > Email: gareth at ...1689... > Statements made are at all times subject to Encryptec's Terms and > Conditions of Business, which are available upon request. > > ----- Original Message ----- > From: "David Villalobos Cambronero" > To: "Gambas Ingl?s" > Sent: Tuesday, October 2, 2007 5:01:27 PM (GMT) Europe/London > Subject: [Gambas-user] gb.db.form > > Hi all, > > Does someone have an example using the gb.db.form component??? > > Regards. > > David > The Database example uses gb.db.form too. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Be a better Globetrotter. Get better travel answers from someone who knows. Yahoo! Answers - Check it out. http://answers.yahoo.com/dir/?link=list&sid=396545469 From gambas.fr at ...626... Tue Oct 2 21:55:55 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 2 Oct 2007 21:55:55 +0200 Subject: [Gambas-user] Re-2: Form.resize event In-Reply-To: <1191016042.3218.2.camel@...1762...> References: <1191016042.3218.2.camel@...1762...> Message-ID: <6324a42a0710021255m193fff07l17a568fb0072b20c@...627...> u? in gambas 2 ? the minimum size is the size defined at the design for a resizable form it's automatic 2007/9/28, jose julio vidal : > > the code: > > ' Gambas class file > > > PRIVATE min_height AS Integer = CInt(ME.Height) > PRIVATE min_width AS Integer = CInt(ME.Width) > > > PUBLIC SUB Form_Open() > > Label2.Width = min_width / 2 > Label2.Height = min_height / 2 > label2.x = (min_width / 2) - (label2.Width / 2) > label2.y = (min_height / 2) - (label2.Height / 2) > ME.center > > END > > PUBLIC SUB Form_Resize() > > 'message.Info("cambiando") > ME.Height = min_height > ME.Width = min_width > > END > > > regards! > > > > El vie, 28-09-2007 a las 09:30 +0000, smiefert at ...784... escribi?: > > can you mail the plain code? > > > > > > > > -------- Original Message -------- > > Subject: Re: [Gambas-user] Form.resize event (27-Sep-2007 21:23) > > From: jj at ...1636... > > To: gambas-user at lists.sourceforge.net > > > > > hi! > > > mmm...this code fails sometimes...please, test the example > > > (GNULinex/Gambas 1.9.50) > > > > > > regards! > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > > To: gambas-user at lists.sourceforge.net > > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jj at ...1636... Tue Oct 2 23:08:24 2007 From: jj at ...1636... (jose julio vidal) Date: Tue, 02 Oct 2007 23:08:24 +0200 Subject: [Gambas-user] Re-2: Form.resize event In-Reply-To: <6324a42a0710021255m193fff07l17a568fb0072b20c@...627...> References: <1191016042.3218.2.camel@...1762...> <6324a42a0710021255m193fff07l17a568fb0072b20c@...627...> Message-ID: <1191359304.3233.3.camel@...1762...> Hi Fabien. when you drag the window fails (sometimes) the event resize of the form. Please, see the video. http://www.casaclaudio.com/gambeo/out1.ogg Thanks! El mar, 02-10-2007 a las 21:55 +0200, Fabien Bodard escribi?: > u? > in gambas 2 ? > > the minimum size is the size defined at the design for a resizable form > > it's automatic > > > 2007/9/28, jose julio vidal : > > > > the code: > > > > ' Gambas class file > > > > > > PRIVATE min_height AS Integer = CInt(ME.Height) > > PRIVATE min_width AS Integer = CInt(ME.Width) > > > > > > PUBLIC SUB Form_Open() > > > > Label2.Width = min_width / 2 > > Label2.Height = min_height / 2 > > label2.x = (min_width / 2) - (label2.Width / 2) > > label2.y = (min_height / 2) - (label2.Height / 2) > > ME.center > > > > END > > > > PUBLIC SUB Form_Resize() > > > > 'message.Info("cambiando") > > ME.Height = min_height > > ME.Width = min_width > > > > END > > > > > > regards! > > > > > > > > El vie, 28-09-2007 a las 09:30 +0000, smiefert at ...784... escribi?: > > > can you mail the plain code? > > > > > > > > > > > > -------- Original Message -------- > > > Subject: Re: [Gambas-user] Form.resize event (27-Sep-2007 21:23) > > > From: jj at ...1636... > > > To: gambas-user at lists.sourceforge.net > > > > > > > hi! > > > > mmm...this code fails sometimes...please, test the example > > > > (GNULinex/Gambas 1.9.50) > > > > > > > > regards! > > > > > > > > > > > > > > > > > > ------------------------------------------------------------------------- > > > > This SF.net email is sponsored by: Microsoft > > > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > > _______________________________________________ > > > > Gambas-user mailing list > > > > Gambas-user at lists.sourceforge.net > > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > > > > > > > To: gambas-user at lists.sourceforge.net > > > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Microsoft > > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Tue Oct 2 23:58:22 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 2 Oct 2007 23:58:22 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 Message-ID: <200710022358.22957.gambas@...1...> Hi, The last svn revision of gambas changed the version number to 1.9.90. That means that: 1) You must do a ./reconf-all; ./configure -C before recompiling everything. 2) The first release candidate of Gambas 2 is coming :-). Before, I will first release 1.9.90 so that you can test it a little before making it public. If no big problems are found, the 1.9.91 will be released as Gambas 2 RC1. Important notes: There is a big change in the last revision: the module symbols are now private by default, and not public as in VB. This will break the projects that used this feature. But I added a new project option to enable the old behaviour. This option is automatically set when you create a new project and you request Visual Basic compatibility. The other big change will be the last incrementaion of the bytecode version, that will force you to recompile all your projects. Sorry for that! I plan to make some articles on news site about the release candidate, in the hope of attracting more testers^W people. Maybe I will make some sort of HTML slides on the web site and provide links to them in the articles. Any help and suggestion about that is welcome!!! Regards, -- Benoit Minisini From ct1egh at ...626... Wed Oct 3 02:11:20 2007 From: ct1egh at ...626... (=?ISO-8859-1?B?QW50825pbw==?= Pereira) Date: Wed, 3 Oct 2007 01:11:20 +0100 Subject: [Gambas-user] Timezone In-Reply-To: <7259b5ae0710011136w25a157b5u6fd8e21900665b37@...627...> References: <20071001182953.42273af3@...1779...> <7259b5ae0710011136w25a157b5u6fd8e21900665b37@...627...> Message-ID: <20071003011120.6c351215@...1779...> Ok Daniel, Thanks for the great tip :) I found the /etc/timezone file and another one as /usr/share/zoneinfo/zone.tab where I can get the code and coordinates for timezones. Best regards, Ant?nio Em Mon, 1 Oct 2007 20:36:10 +0200 "Daniel Campos" escreveu: > Just read the contents of the /etc/timezone file > > Daniel > > 2007/10/1, Ant?nio Pereira : > > Hi list users, > > > > Is there any way to get the system timezone with Gambas2? > > > > Regards, > > > > Ant?nio > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Microsoft > > Defy all challenges. Microsoft(R) Visual Studio 2005. > > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From wd at ...1775... Wed Oct 3 10:45:21 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 12:45:21 +0400 Subject: [Gambas-user] colors In-Reply-To: References: Message-ID: <200710031245.22116.wd@...1775...> as i already write (http://gambasrad.org/bugtrak/gambas-bug-tracker/20) colors still buggy with dark kde theme (just simply white on black/darkgrey) when i write some like "Message(" hint with params shows white on light yellow :( tooltips on toolbars is black on lightyellow everywhere in properties list on changed rows used ?olor.LightBackground (#ebebeb) and #ffffff on it additionaly i cant find alternative color for lists from color theme in Color class i hardcode it in props list, but it is bad solution From wd at ...1775... Wed Oct 3 10:59:58 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 12:59:58 +0400 Subject: [Gambas-user] tableview.edit in splits In-Reply-To: References: Message-ID: <200710031259.58336.wd@...1775...> put tableview on form write in _new columns/rows .count for it 3 write in dblclick last.edit run its works put vsplit or hsplit on form and tableview on it run on dblclick in table split just redraws and do not editable put any split on form, any box/panel on it and tableview on this panel works again From gambas at ...1... Wed Oct 3 11:30:07 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 11:30:07 +0200 Subject: [Gambas-user] colors In-Reply-To: <200710031245.22116.wd@...1775...> References: <200710031245.22116.wd@...1775...> Message-ID: <200710031130.07906.gambas@...1...> On mercredi 03 octobre 2007, White Dragon wrote: > as i already write (http://gambasrad.org/bugtrak/gambas-bug-tracker/20) > colors still buggy with dark kde theme (just simply white on > black/darkgrey) > Sorry, I have fixed some colors, but forgot some others. > when i write some like "Message(" hint with params shows > white on light yellow :( > tooltips on toolbars is black on lightyellow everywhere OK. Now the tooltip foreground color is forced to black. > > in properties list on changed rows used ?olor.LightBackground (#ebebeb) > and #ffffff on it OK. Color.LightBackground is calculated, and I must find an algorithm that works on dark backgrounds too. > additionaly i cant find alternative color for lists from color theme in > Color class i hardcode it in props list, but it is bad solution > I think I can get it, and I will check if it is possible in GTK+ too. Regards, -- Benoit Minisini From gambas at ...1... Wed Oct 3 11:31:41 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 11:31:41 +0200 Subject: [Gambas-user] tableview.edit in splits In-Reply-To: <200710031259.58336.wd@...1775...> References: <200710031259.58336.wd@...1775...> Message-ID: <200710031131.41505.gambas@...1...> On mercredi 03 octobre 2007, White Dragon wrote: > put tableview on form > write in _new columns/rows .count for it 3 > write in dblclick last.edit > run > its works > > put vsplit or hsplit on form and tableview on it > run > on dblclick in table split just redraws and do not editable > > put any split on form, any box/panel on it and tableview on this panel > works again > Do you use gb.qt or gb.gtk? If you replace the DblClick event by Activate, does it work differently? -- Benoit Minisini From wd at ...1775... Wed Oct 3 11:57:09 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 13:57:09 +0400 Subject: [Gambas-user] colors In-Reply-To: <200710031130.07906.gambas@...1...> References: <200710031245.22116.wd@...1775...> <200710031130.07906.gambas@...1...> Message-ID: <200710031357.09190.wd@...1775...> ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > On mercredi 03 octobre 2007, White Dragon wrote: > > > > in properties list on changed rows used ?olor.LightBackground (#ebebeb) > > and #ffffff on it > > OK. Color.LightBackground is calculated, and I must find an algorithm that > works on dark backgrounds too. > i found it at ~/.kde/share/config/kdeglobals [General] alternateBackground=89,89,89 From gambas at ...1... Wed Oct 3 12:15:15 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 12:15:15 +0200 Subject: [Gambas-user] colors In-Reply-To: <200710031357.09190.wd@...1775...> References: <200710031130.07906.gambas@...1...> <200710031357.09190.wd@...1775...> Message-ID: <200710031215.15379.gambas@...1...> On mercredi 03 octobre 2007, White Dragon wrote: > ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > > On mercredi 03 octobre 2007, White Dragon wrote: > > > in properties list on changed rows used ?olor.LightBackground (#ebebeb) > > > and #ffffff on it > > > > OK. Color.LightBackground is calculated, and I must find an algorithm > > that works on dark backgrounds too. > > i found it at > ~/.kde/share/config/kdeglobals > [General] > alternateBackground=89,89,89 > Yes, this is a KDE thing, not a QT one. -- Benoit Minisini From wd at ...1775... Wed Oct 3 11:43:23 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 13:43:23 +0400 Subject: [Gambas-user] tableview.edit in splits In-Reply-To: <200710031131.41505.gambas@...1...> References: <200710031259.58336.wd@...1775...> <200710031131.41505.gambas@...1...> Message-ID: <200710031343.23199.wd@...1775...> ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > On mercredi 03 octobre 2007, White Dragon wrote: > > put tableview on form > > write in _new columns/rows .count for it 3 > > write in dblclick last.edit > > run > > its works > > > > put vsplit or hsplit on form and tableview on it > > run > > on dblclick in table split just redraws and do not editable > > > > put any split on form, any box/panel on it and tableview on this panel > > works again > > > > Do you use gb.qt or gb.gtk? > > If you replace the DblClick event by Activate, does it work differently? > i use gb.qt activate work same in gtk i cant edit in any way :) (i dont need it actually :)) From gambas at ...1... Wed Oct 3 12:43:49 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 12:43:49 +0200 Subject: [Gambas-user] colors In-Reply-To: <200710031130.07906.gambas@...1...> References: <200710031245.22116.wd@...1775...> <200710031130.07906.gambas@...1...> Message-ID: <200710031243.49601.gambas@...1...> On mercredi 03 octobre 2007, Benoit Minisini wrote: > On mercredi 03 octobre 2007, White Dragon wrote: > > as i already write (http://gambasrad.org/bugtrak/gambas-bug-tracker/20) > > colors still buggy with dark kde theme (just simply white on > > black/darkgrey) > > Sorry, I have fixed some colors, but forgot some others. > > > when i write some like "Message(" hint with params shows > > white on light yellow :( > > tooltips on toolbars is black on lightyellow everywhere > > OK. Now the tooltip foreground color is forced to black. > > > in properties list on changed rows used ?olor.LightBackground (#ebebeb) > > and #ffffff on it > > OK. Color.LightBackground is calculated, and I must find an algorithm that > works on dark backgrounds too. > > > additionaly i cant find alternative color for lists from color theme in > > Color class i hardcode it in props list, but it is bad solution > > I think I can get it, and I will check if it is possible in GTK+ too. > > Regards, The last revision fixes the two first problems. As for the third: is this alternative color the color you need to draw odd rows in list views? -- Benoit Minisini From gambas at ...1... Wed Oct 3 13:23:05 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 13:23:05 +0200 Subject: [Gambas-user] tableview.edit in splits In-Reply-To: <200710031259.58336.wd@...1775...> References: <200710031259.58336.wd@...1775...> Message-ID: <200710031323.05245.gambas@...1...> On mercredi 03 octobre 2007, White Dragon wrote: > put tableview on form > write in _new columns/rows .count for it 3 > write in dblclick last.edit > run > its works > > put vsplit or hsplit on form and tableview on it > run > on dblclick in table split just redraws and do not editable > > put any split on form, any box/panel on it and tableview on this panel > works again > That bug was fixed in the last revision. Regards, -- Benoit Minisini From wd at ...1775... Wed Oct 3 11:43:23 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 13:43:23 +0400 Subject: [Gambas-user] tableview.edit in splits In-Reply-To: <200710031131.41505.gambas@...1...> References: <200710031259.58336.wd@...1775...> <200710031131.41505.gambas@...1...> Message-ID: <200710031343.23199.wd@...1775...> ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > On mercredi 03 octobre 2007, White Dragon wrote: > > put tableview on form > > write in _new columns/rows .count for it 3 > > write in dblclick last.edit > > run > > its works > > > > put vsplit or hsplit on form and tableview on it > > run > > on dblclick in table split just redraws and do not editable > > > > put any split on form, any box/panel on it and tableview on this panel > > works again > > > > Do you use gb.qt or gb.gtk? > > If you replace the DblClick event by Activate, does it work differently? > i use gb.qt activate work same in gtk i cant edit in any way :) (i dont need it actually :)) From wd at ...1775... Wed Oct 3 13:25:38 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 15:25:38 +0400 Subject: [Gambas-user] tableview.edit in splits In-Reply-To: <200710031323.05245.gambas@...1...> References: <200710031259.58336.wd@...1775...> <200710031323.05245.gambas@...1...> Message-ID: <200710031525.38574.wd@...1775...> ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > On mercredi 03 octobre 2007, White Dragon wrote: > > put tableview on form > > write in _new columns/rows .count for it 3 > > write in dblclick last.edit > > run > > its works > > > > put vsplit or hsplit on form and tableview on it > > run > > on dblclick in table split just redraws and do not editable > > > > put any split on form, any box/panel on it and tableview on this panel > > works again > > > > That bug was fixed in the last revision. > > Regards, > thanks how works :) From wd at ...1775... Wed Oct 3 13:35:24 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 15:35:24 +0400 Subject: [Gambas-user] colors In-Reply-To: <200710031243.49601.gambas@...1...> References: <200710031130.07906.gambas@...1...> <200710031243.49601.gambas@...1...> Message-ID: <200710031535.24306.wd@...1775...> ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > On mercredi 03 octobre 2007, Benoit Minisini wrote: > > On mercredi 03 octobre 2007, White Dragon wrote: > > > as i already write (http://gambasrad.org/bugtrak/gambas-bug-tracker/20) > > > colors still buggy with dark kde theme (just simply white on > > > black/darkgrey) > > > > Sorry, I have fixed some colors, but forgot some others. > > > > > when i write some like "Message(" hint with params shows > > > white on light yellow :( > > > tooltips on toolbars is black on lightyellow everywhere > > > > OK. Now the tooltip foreground color is forced to black. > > > > > in properties list on changed rows used ?olor.LightBackground (#ebebeb) > > > and #ffffff on it > > > > OK. Color.LightBackground is calculated, and I must find an algorithm that > > works on dark backgrounds too. > > > > > additionaly i cant find alternative color for lists from color theme in > > > Color class i hardcode it in props list, but it is bad solution > > > > I think I can get it, and I will check if it is possible in GTK+ too. > > > > Regards, > > The last revision fixes the two first problems. > > As for the third: is this alternative color the color you need to draw odd > rows in list views? > now its readable, but hardly to find difference between changed and unchanged props and in lists too :) in textboxs and same objects my bg=#4c4c4c color.lightbackground=#505050 is it really no way to get it from system? and mayb better set unchanged props not bold? (like in (k|qt)designer) From gambas at ...1... Wed Oct 3 13:43:28 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 13:43:28 +0200 Subject: [Gambas-user] colors In-Reply-To: <200710031535.24306.wd@...1775...> References: <200710031243.49601.gambas@...1...> <200710031535.24306.wd@...1775...> Message-ID: <200710031343.28648.gambas@...1...> On mercredi 03 octobre 2007, White Dragon wrote: > ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > > On mercredi 03 octobre 2007, Benoit Minisini wrote: > > > On mercredi 03 octobre 2007, White Dragon wrote: > > > > as i already write > > > > (http://gambasrad.org/bugtrak/gambas-bug-tracker/20) colors still > > > > buggy with dark kde theme (just simply white on black/darkgrey) > > > > > > Sorry, I have fixed some colors, but forgot some others. > > > > > > > when i write some like "Message(" hint with params shows > > > > white on light yellow :( > > > > tooltips on toolbars is black on lightyellow everywhere > > > > > > OK. Now the tooltip foreground color is forced to black. > > > > > > > in properties list on changed rows used ?olor.LightBackground > > > > (#ebebeb) and #ffffff on it > > > > > > OK. Color.LightBackground is calculated, and I must find an algorithm > > > that works on dark backgrounds too. > > > > > > > additionaly i cant find alternative color for lists from color theme > > > > in Color class i hardcode it in props list, but it is bad solution > > > > > > I think I can get it, and I will check if it is possible in GTK+ too. > > > > > > Regards, > > > > The last revision fixes the two first problems. > > > > As for the third: is this alternative color the color you need to draw > > odd rows in list views? > > now its readable, but hardly to find difference between changed and > unchanged props and in lists too :) > > in textboxs and same objects my bg=#4c4c4c > color.lightbackground=#505050 > > is it really no way to get it from system? No, it is a KDE thing. The Gambas alternate background is computed by using a mix of the background text and of the highlight text. But the background color is three times more important than the highlight color in the formula. Which color scheme do you use exactly? > > and mayb better set unchanged props not bold? (like in (k|qt)designer) What are you talking about precisely? -- Benoit Minisini From wd at ...1775... Wed Oct 3 13:59:02 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 15:59:02 +0400 Subject: [Gambas-user] colors In-Reply-To: <200710031343.28648.gambas@...1...> References: <200710031535.24306.wd@...1775...> <200710031343.28648.gambas@...1...> Message-ID: <200710031559.02453.wd@...1775...> ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > On mercredi 03 octobre 2007, White Dragon wrote: > > ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > > > On mercredi 03 octobre 2007, Benoit Minisini wrote: > > > > On mercredi 03 octobre 2007, White Dragon wrote: > > > > > as i already write > > > > > (http://gambasrad.org/bugtrak/gambas-bug-tracker/20) colors still > > > > > buggy with dark kde theme (just simply white on black/darkgrey) > > > > > > > > Sorry, I have fixed some colors, but forgot some others. > > > > > > > > > when i write some like "Message(" hint with params shows > > > > > white on light yellow :( > > > > > tooltips on toolbars is black on lightyellow everywhere > > > > > > > > OK. Now the tooltip foreground color is forced to black. > > > > > > > > > in properties list on changed rows used ?olor.LightBackground > > > > > (#ebebeb) and #ffffff on it > > > > > > > > OK. Color.LightBackground is calculated, and I must find an algorithm > > > > that works on dark backgrounds too. > > > > > > > > > additionaly i cant find alternative color for lists from color theme > > > > > in Color class i hardcode it in props list, but it is bad solution > > > > > > > > I think I can get it, and I will check if it is possible in GTK+ too. > > > > > > > > Regards, > > > > > > The last revision fixes the two first problems. > > > > > > As for the third: is this alternative color the color you need to draw > > > odd rows in list views? > > > > now its readable, but hardly to find difference between changed and > > unchanged props and in lists too :) > > > > in textboxs and same objects my bg=#4c4c4c > > color.lightbackground=#505050 > > > > is it really no way to get it from system? > > No, it is a KDE thing. > > The Gambas alternate background is computed by using a mix of the background > text and of the highlight text. But the background color is three times more > important than the highlight color in the formula. what about configurable for it? (and all others) > > Which color scheme do you use exactly? > # cat ~/.kde/share/apps/kdisplay/color-schemes/wd.kcsrc [Color Scheme] Name=wd activeBackground=66,66,66 activeBlend=0,0,0 activeForeground=255,255,255 activeTitleBtnBg=192,192,192 alternateBackground=89,89,89 background=12,12,12 buttonBackground=40,40,40 buttonForeground=203,203,203 contrast=7 foreground=255,255,255 frame=192,192,192 handle=192,192,192 inactiveBackground=120,120,120 inactiveBlend=120,120,120 inactiveForeground=168,168,168 inactiveFrame=192,192,192 inactiveHandle=192,192,192 inactiveTitleBtnBg=192,192,192 linkColor=185,152,152 selectBackground=95,95,95 selectForeground=255,255,255 shadeSortColumn=true visitedLinkColor=189,189,189 windowBackground=76,76,76 windowForeground=255,255,255 > > > > and mayb better set unchanged props not bold? (like in (k|qt)designer) > > What are you talking about precisely? > i offer set property names in property list normal width by default and only changed set to bold From jredrejo at ...626... Wed Oct 3 14:15:42 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Wed, 3 Oct 2007 14:15:42 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <200710022358.22957.gambas@...1...> References: <200710022358.22957.gambas@...1...> Message-ID: <8eb28a500710030515t13365a8ekac03eee8f11ee10d@...627...> 2007/10/2, Benoit Minisini : > > Hi, > > Sorry, I'm afraid I don't understand this: The other big change will be the last incrementaion of the bytecode version, > that will force you to recompile all your projects. Sorry for that! > > Do you mean that projects compiled with versions <1.9.90 won't work unless they are recompiled, even if we don't use the module symbols feature? wouldn't it be possible just give a warning as you did with 1.9.50?. There are a lot of gambas projects finished out, and that would mean that they will break if the upgrade their gambas packages, even if no changes are needed in the code. From david_villalobos_c at ...43... Wed Oct 3 14:24:53 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 3 Oct 2007 05:24:53 -0700 (PDT) Subject: [Gambas-user] .Show() Message-ID: <481963.80170.qm@...1667...> Hi all, Is there a direfence between: Form1.Visible = TRUE and, Form1.Show() ???? Regards David ____________________________________________________________________________________ Fussy? Opinionated? Impossible to please? Perfect. Join Yahoo!'s user panel and lay it on us. http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 From gambas at ...1... Wed Oct 3 14:31:49 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 14:31:49 +0200 Subject: [Gambas-user] .Show() In-Reply-To: <481963.80170.qm@...1667...> References: <481963.80170.qm@...1667...> Message-ID: <200710031431.49632.gambas@...1...> On mercredi 03 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > Is there a direfence between: > Form1.Visible = TRUE and, > Form1.Show() ???? > > Regards > > David > No, it calls internally the same code. So if you have a difference, this is a bug! -- Benoit Minisini From david_villalobos_c at ...43... Wed Oct 3 14:40:55 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 3 Oct 2007 05:40:55 -0700 (PDT) Subject: [Gambas-user] .Show() Message-ID: <424928.37664.qm@...1716...> No, it was just a doubt. By the way, I found the gb.db.form example, the DataSource acts like a container, right? I mean, if you put a a DataBrowser and set the Table, DataBrowser will use the Data base described in DataSource, is it ok? ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Wednesday, October 3, 2007 6:31:49 AM Subject: Re: [Gambas-user] .Show() On mercredi 03 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > Is there a direfence between: > Form1.Visible = TRUE and, > Form1.Show() ???? > > Regards > > David > No, it calls internally the same code. So if you have a difference, this is a bug! -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Got a little couch potato? Check out fun summer activities for kids. http://search.yahoo.com/search?fr=oni_on_mail&p=summer+activities+for+kids&cs=bz From gambas at ...1... Wed Oct 3 14:54:02 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 14:54:02 +0200 Subject: [Gambas-user] .Show() In-Reply-To: <424928.37664.qm@...1716...> References: <424928.37664.qm@...1716...> Message-ID: <200710031454.02859.gambas@...1...> On mercredi 03 octobre 2007, David Villalobos Cambronero wrote: > No, it was just a doubt. > > By the way, I found the gb.db.form example, the DataSource acts like a > container, right? I mean, if you put a a DataBrowser and set the Table, > DataBrowser will use the Data base described in DataSource, is it ok? > Yes. -- Benoit Minisini From rospolosco at ...152... Wed Oct 3 15:02:08 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Wed, 3 Oct 2007 15:02:08 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 - 2 bugs In-Reply-To: <200710022358.22957.gambas@...1...> References: <200710022358.22957.gambas@...1...> Message-ID: <200710031502.08201.rospolosco@...152...> Alle 23:58, marted? 2 ottobre 2007, Benoit Minisini ha scritto: > Hi, > > The last svn revision of gambas changed the version number to 1.9.90. > > That means that: > > 1) You must do a ./reconf-all; ./configure -C before recompiling > everything. > > 2) The first release candidate of Gambas 2 is coming :-). Before, I will > first release 1.9.90 so that you can test it a little before making it > public. If no big problems are found, the 1.9.91 will be released as Gambas > 2 RC1. > > Important notes: > > There is a big change in the last revision: the module symbols are now > private by default, and not public as in VB. This will break the projects > that used this feature. But I added a new project option to enable the old > behaviour. This option is automatically set when you create a new project > and you request Visual Basic compatibility. > > The other big change will be the last incrementaion of the bytecode > version, that will force you to recompile all your projects. Sorry for > that! > > I plan to make some articles on news site about the release candidate, in > the hope of attracting more testers^W people. Maybe I will make some sort > of HTML slides on the web site and provide links to them in the articles. > > Any help and suggestion about that is welcome!!! > > Regards, I downloaded 1.9.90. I tried to make a RPM package of a project and get this error: Creating package for Mandriva Linux. Initializing ~/RPM directory. Creating source package. Creating .spec file. Creating package... rpmbuild -ba /home/stefano/RPM/SPECS/gbxgol.spec Executing(%prep): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.35159 + umask 022 + cd /home/stefano/RPM/BUILD + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot + cd /home/stefano/RPM/BUILD + rm -rf gbxgol + /usr/bin/bzip2 -dc /home/stefano/RPM/SOURCES/gbxgol-0.0.75.tar.bz2 + tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd gbxgol + exit 0 Executing(%build): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 + umask 022 + cd /home/stefano/RPM/BUILD + cd gbxgol + /usr/local/bin/gbc2 -a -p OK + gba2 + exit 0 Executing(%install): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 + umask 022 + cd /home/stefano/RPM/BUILD + cd gbxgol + install -d /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin + install -p gbxgol.gambas /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin/gbxgol + install -d '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}' + install -d '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}' + install -d '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}' + install -p .icon/16.png '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}/gbxgol.png' + install -p .icon/32.png '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}/gbxgol.png' + install -p .icon/48.png '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}/gbxgol.png' + install -d /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/share/applications + cat + /usr/lib/rpm/brp-compress + /usr/lib/rpm/brp-strip + /usr/lib/rpm/brp-strip-static-archive + /usr/lib/rpm/brp-strip-comment-note Processing files: gbxgol-0.0.75-75mdv Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot Wrote: /home/stefano/RPM/SRPMS/gbxgol-0.0.75-75mdv.src.rpm Wrote: /home/stefano/RPM/RPMS/noarch/gbxgol-0.0.75-75mdv.noarch.rpm Executing(%clean): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63274 + umask 022 + cd /home/stefano/RPM/BUILD + cd gbxgol + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot + exit 0 The package build has failed. Package.MoveFile.1053: File or directory does not exist Also I noticed this bug: if in project properties I set version = 0.1.0 and then I make an installation package, the packager wizard automatically upgrade the version by one and the project version becomes 0.1.1. If I set 0.0.56, then the packager upgrades to 0.0.57 et cetera. There's another old problem in Project --> Properties. Everytime I make an executable of a project, for testing purpose, the version of the project is automatically upgraded by one. A new executable doesn't mean it's a new project version, and it's a little annoying to reset the version in Project-->Properties. Congratulation for the upcoming RC1! Regards, Stefano From ariefbayu at ...626... Wed Oct 3 15:10:31 2007 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Wed, 3 Oct 2007 20:10:31 +0700 Subject: [Gambas-user] Gambas 2 version 1.9.90 - 2 bugs In-Reply-To: <200710031502.08201.rospolosco@...152...> References: <200710022358.22957.gambas@...1...> <200710031502.08201.rospolosco@...152...> Message-ID: <976ad9050710030610o5cd96bd9n878073f66a9bca02@...627...> > > Also I noticed this bug: if in project properties I set > version = 0.1.0 and then I make an installation package, > the packager wizard automatically upgrade the version by > one and the project version becomes 0.1.1. If I set 0.0.56, then > the packager upgrades to 0.0.57 et cetera. > > There's another old problem in Project --> Properties. Everytime > I make an executable of a project, for testing purpose, the version > of the project is automatically upgraded by one. > A new executable doesn't mean it's a new project version, and > it's a little annoying to reset the version in Project-->Properties. As far as I remember, this behavior is exacly the same as Visual Basic. But hey, I'm not using it for years by now. May be it can be set on gambas2 Preferences. -- Daiguren Hy?rinmaru From gambas at ...1... Wed Oct 3 15:19:33 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 15:19:33 +0200 Subject: [Gambas-user] colors In-Reply-To: <200710031559.02453.wd@...1775...> References: <200710031343.28648.gambas@...1...> <200710031559.02453.wd@...1775...> Message-ID: <200710031519.33672.gambas@...1...> On mercredi 03 octobre 2007, White Dragon wrote: > > > > The Gambas alternate background is computed by using a mix of the > > background text and of the highlight text. But the background color is > > three times more important than the highlight color in the formula. > > what about configurable for it? (and all others) > The QT component knows nothing about KDE colors, and nothing compels you to use the Color.LightBackground color. So what do you want to be configurable? > > Which color scheme do you use exactly? > > # cat ~/.kde/share/apps/kdisplay/color-schemes/wd.kcsrc > [Color Scheme] > Name=wd > activeBackground=66,66,66 > activeBlend=0,0,0 > activeForeground=255,255,255 > activeTitleBtnBg=192,192,192 > alternateBackground=89,89,89 > background=12,12,12 > buttonBackground=40,40,40 > buttonForeground=203,203,203 > contrast=7 > foreground=255,255,255 > frame=192,192,192 > handle=192,192,192 > inactiveBackground=120,120,120 > inactiveBlend=120,120,120 > inactiveForeground=168,168,168 > inactiveFrame=192,192,192 > inactiveHandle=192,192,192 > inactiveTitleBtnBg=192,192,192 > linkColor=185,152,152 > selectBackground=95,95,95 > selectForeground=255,255,255 > shadeSortColumn=true > visitedLinkColor=189,189,189 > windowBackground=76,76,76 > windowForeground=255,255,255 > > > > and mayb better set unchanged props not bold? (like in (k|qt)designer) > > > > What are you talking about precisely? > > i offer set property names in property list normal width by default > and only changed set to bold OK, done. Regards, -- Benoit Minisini From wd at ...1775... Wed Oct 3 15:23:18 2007 From: wd at ...1775... (White Dragon) Date: Wed, 3 Oct 2007 17:23:18 +0400 Subject: [Gambas-user] colors In-Reply-To: <200710031519.33672.gambas@...1...> References: <200710031559.02453.wd@...1775...> <200710031519.33672.gambas@...1...> Message-ID: <200710031723.18905.wd@...1775...> ? ????????? ?? 3 ??????? 2007 Benoit Minisini ???????(a): > On mercredi 03 octobre 2007, White Dragon wrote: > > > > > > The Gambas alternate background is computed by using a mix of the > > > background text and of the highlight text. But the background color is > > > three times more important than the highlight color in the formula. > > > > what about configurable for it? (and all others) > > > > The QT component knows nothing about KDE colors, and nothing compels you to > use the Color.LightBackground color. So what do you want to be configurable? colors in IDE but its just offer i already satisfied From gambas at ...1... Wed Oct 3 15:40:16 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 15:40:16 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 - 2 bugs In-Reply-To: <200710031502.08201.rospolosco@...152...> References: <200710022358.22957.gambas@...1...> <200710031502.08201.rospolosco@...152...> Message-ID: <200710031540.16316.gambas@...1...> On mercredi 03 octobre 2007, Stefano Palmeri wrote: > > I downloaded 1.9.90. I tried to make a RPM package > of a project and get this error: > > Creating package for Mandriva Linux. > Initializing ~/RPM directory. > Creating source package. > Creating .spec file. > Creating package... > > rpmbuild -ba /home/stefano/RPM/SPECS/gbxgol.spec > Executing(%prep): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.35159 > + umask 022 > + cd /home/stefano/RPM/BUILD > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot > + cd /home/stefano/RPM/BUILD > + rm -rf gbxgol > + /usr/bin/bzip2 -dc /home/stefano/RPM/SOURCES/gbxgol-0.0.75.tar.bz2 > + tar -xf - > + STATUS=0 > + '[' 0 -ne 0 ']' > + cd gbxgol > + exit 0 > Executing(%build): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 > + umask 022 > + cd /home/stefano/RPM/BUILD > + cd gbxgol > + /usr/local/bin/gbc2 -a -p > OK > + gba2 > + exit 0 > Executing(%install): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 > + umask 022 > + cd /home/stefano/RPM/BUILD > + cd gbxgol > + install -d /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin > + install -p > gbxgol.gambas > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin/gbxgol + > install -d > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}' + > install -d > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}' + > install -d > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}' + > install -p .icon/16.png > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}/gbxgol.p >ng' + > install -p .icon/32.png > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}/gbxgol.pn >g' + > install -p .icon/48.png > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}/gbxgol.p >ng' + > install -d > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/share/applications > + cat > + /usr/lib/rpm/brp-compress > + /usr/lib/rpm/brp-strip > + /usr/lib/rpm/brp-strip-static-archive > + /usr/lib/rpm/brp-strip-comment-note > Processing files: gbxgol-0.0.75-75mdv > Checking for unpackaged > file(s): /usr/lib/rpm/check-files > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot Wrote: > /home/stefano/RPM/SRPMS/gbxgol-0.0.75-75mdv.src.rpm > Wrote: /home/stefano/RPM/RPMS/noarch/gbxgol-0.0.75-75mdv.noarch.rpm > Executing(%clean): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63274 > + umask 022 > + cd /home/stefano/RPM/BUILD > + cd gbxgol > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot > + exit 0 > > The package build has failed. > Package.MoveFile.1053: File or directory does not exist I fixed the package naming bug in the last revision. Can you try it and tell me if it is ok for you? > > > Also I noticed this bug: if in project properties I set > version = 0.1.0 and then I make an installation package, > the packager wizard automatically upgrade the version by > one and the project version becomes 0.1.1. If I set 0.0.56, then > the packager upgrades to 0.0.57 et cetera. > > There's another old problem in Project --> Properties. Everytime > I make an executable of a project, for testing purpose, the version > of the project is automatically upgraded by one. > A new executable doesn't mean it's a new project version, and > it's a little annoying to reset the version in Project-->Properties. Actually the project version is only made of the two first numbers: Major and Minor. The last one is a revision number, and is only intended to count the number of time a project executable was made. This is the reason why it is always automatically incremented. Note that the release number is not used by the packager unless specified explicitely. > > Congratulation for the upcoming RC1! Thanks! > > Regards, > > Stefano > Regards, -- Benoit Minisini From gambas at ...1... Wed Oct 3 15:45:35 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 15:45:35 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <8eb28a500710030515t13365a8ekac03eee8f11ee10d@...627...> References: <200710022358.22957.gambas@...1...> <8eb28a500710030515t13365a8ekac03eee8f11ee10d@...627...> Message-ID: <200710031545.35230.gambas@...1...> On mercredi 03 octobre 2007, Jos? Luis Redrejo wrote: > 2007/10/2, Benoit Minisini : > > Hi, > > Sorry, I'm afraid I don't understand this: > > The other big change will be the last incrementaion of the bytecode > version, > > > that will force you to recompile all your projects. Sorry for that! > > Do you mean that projects compiled with versions <1.9.90 won't work unless > they are recompiled, even if we don't use the module symbols feature? This is not related at all with this change. The bytecode didn't change at all, but its version number is at the moment '1.9.49' (it is defined in hexadecimal in the acinclude.m4 file). I just wanted to upgrade this number to '2.0'. > wouldn't it be possible just give a warning as you did with 1.9.50?. Maybe. > There are a lot of gambas projects finished out, and that would mean that > they will break if the upgrade their gambas packages, even if no changes > are needed in the code. Actually you will get just a warning, but it is disabled if the gambas version is >= 2.0. I just have to keep it even for 2.0, but by checking that the version of the executed version is not lower than 1.9.xx. Regards, -- Benoit Minisini From rospolosco at ...152... Wed Oct 3 15:57:39 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Wed, 3 Oct 2007 15:57:39 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 - 2 bugs In-Reply-To: <200710031540.16316.gambas@...1...> References: <200710022358.22957.gambas@...1...> <200710031502.08201.rospolosco@...152...> <200710031540.16316.gambas@...1...> Message-ID: <200710031557.39762.rospolosco@...152...> Alle 15:40, mercoled? 3 ottobre 2007, Benoit Minisini ha scritto: > On mercredi 03 octobre 2007, Stefano Palmeri wrote: > > I downloaded 1.9.90. I tried to make a RPM package > > of a project and get this error: > > > > Creating package for Mandriva Linux. > > Initializing ~/RPM directory. > > Creating source package. > > Creating .spec file. > > Creating package... > > > > rpmbuild -ba /home/stefano/RPM/SPECS/gbxgol.spec > > Executing(%prep): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.35159 > > + umask 022 > > + cd /home/stefano/RPM/BUILD > > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot > > + cd /home/stefano/RPM/BUILD > > + rm -rf gbxgol > > + /usr/bin/bzip2 -dc /home/stefano/RPM/SOURCES/gbxgol-0.0.75.tar.bz2 > > + tar -xf - > > + STATUS=0 > > + '[' 0 -ne 0 ']' > > + cd gbxgol > > + exit 0 > > Executing(%build): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 > > + umask 022 > > + cd /home/stefano/RPM/BUILD > > + cd gbxgol > > + /usr/local/bin/gbc2 -a -p > > OK > > + gba2 > > + exit 0 > > Executing(%install): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 > > + umask 022 > > + cd /home/stefano/RPM/BUILD > > + cd gbxgol > > + install -d /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin > > + install -p > > gbxgol.gambas > > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin/gbxgol + > > install -d > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}' + > > install -d > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}' + > > install -d > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}' + > > install -p .icon/16.png > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}/gbxgol > >.p ng' + > > install -p .icon/32.png > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}/gbxgol. > >pn g' + > > install -p .icon/48.png > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}/gbxgol > >.p ng' + > > install -d > > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/share/applicatio > >ns + cat > > + /usr/lib/rpm/brp-compress > > + /usr/lib/rpm/brp-strip > > + /usr/lib/rpm/brp-strip-static-archive > > + /usr/lib/rpm/brp-strip-comment-note > > Processing files: gbxgol-0.0.75-75mdv > > Checking for unpackaged > > file(s): /usr/lib/rpm/check-files > > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot Wrote: > > /home/stefano/RPM/SRPMS/gbxgol-0.0.75-75mdv.src.rpm > > Wrote: /home/stefano/RPM/RPMS/noarch/gbxgol-0.0.75-75mdv.noarch.rpm > > Executing(%clean): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63274 > > + umask 022 > > + cd /home/stefano/RPM/BUILD > > + cd gbxgol > > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot > > + exit 0 > > > > The package build has failed. > > Package.MoveFile.1053: File or directory does not exist > > I fixed the package naming bug in the last revision. Can you try it and > tell me if it is ok for you? > No, I get the same error (svn 684) Creating package for Mandriva Linux. Initializing ~/RPM directory. Creating source package. Creating .spec file. Creating package... rpmbuild -ba /home/stefano/RPM/SPECS/gbxgol.spec Executing(%prep): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63105 + umask 022 + cd /home/stefano/RPM/BUILD + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot + cd /home/stefano/RPM/BUILD + rm -rf gbxgol + /usr/bin/bzip2 -dc /home/stefano/RPM/SOURCES/gbxgol-0.0.78.tar.bz2 + tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd gbxgol + exit 0 Executing(%build): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63105 + umask 022 + cd /home/stefano/RPM/BUILD + cd gbxgol + /usr/local/bin/gbc2 -a -p OK + gba2 + exit 0 Executing(%install): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63105 + umask 022 + cd /home/stefano/RPM/BUILD + cd gbxgol + install -d /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot//usr/bin + install -p gbxgol.gambas /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot//usr/bin/gbxgol + install -d '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_miconsdir}' + install -d '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_iconsdir}' + install -d '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_liconsdir}' + install -p .icon/16.png '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_miconsdir}/gbxgol.png' + install -p .icon/32.png '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_iconsdir}/gbxgol.png' + install -p .icon/48.png '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_liconsdir}/gbxgol.png' + install -d /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot//usr/share/applications + cat + /usr/lib/rpm/brp-compress + /usr/lib/rpm/brp-strip + /usr/lib/rpm/brp-strip-static-archive + /usr/lib/rpm/brp-strip-comment-note Processing files: gbxgol-0.0.78-78mdv Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot Wrote: /home/stefano/RPM/SRPMS/gbxgol-0.0.78-78mdv.src.rpm Wrote: /home/stefano/RPM/RPMS/noarch/gbxgol-0.0.78-78mdv.noarch.rpm Executing(%clean): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.91949 + umask 022 + cd /home/stefano/RPM/BUILD + cd gbxgol + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot + exit 0 The package build has failed. Package.MoveFile.1053: File or directory does not exist For next 4 hours I can't test new svn versions. Regards, Stefano > > Also I noticed this bug: if in project properties I set > > version = 0.1.0 and then I make an installation package, > > the packager wizard automatically upgrade the version by > > one and the project version becomes 0.1.1. If I set 0.0.56, then > > the packager upgrades to 0.0.57 et cetera. > > > > There's another old problem in Project --> Properties. Everytime > > I make an executable of a project, for testing purpose, the version > > of the project is automatically upgraded by one. > > A new executable doesn't mean it's a new project version, and > > it's a little annoying to reset the version in Project-->Properties. > > Actually the project version is only made of the two first numbers: Major > and Minor. The last one is a revision number, and is only intended to count > the number of time a project executable was made. This is the reason why it > is always automatically incremented. Note that the release number is not > used by the packager unless specified explicitely. > > > Congratulation for the upcoming RC1! > > Thanks! > > > Regards, > > > > Stefano > > Regards, From gambas at ...1... Wed Oct 3 16:19:17 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 16:19:17 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 - 2 bugs In-Reply-To: <200710031557.39762.rospolosco@...152...> References: <200710022358.22957.gambas@...1...> <200710031540.16316.gambas@...1...> <200710031557.39762.rospolosco@...152...> Message-ID: <200710031619.17579.gambas@...1...> On mercredi 03 octobre 2007, Stefano Palmeri wrote: > Alle 15:40, mercoled? 3 ottobre 2007, Benoit Minisini ha scritto: > > On mercredi 03 octobre 2007, Stefano Palmeri wrote: > > > I downloaded 1.9.90. I tried to make a RPM package > > > of a project and get this error: > > > > > > Creating package for Mandriva Linux. > > > Initializing ~/RPM directory. > > > Creating source package. > > > Creating .spec file. > > > Creating package... > > > > > > rpmbuild -ba /home/stefano/RPM/SPECS/gbxgol.spec > > > Executing(%prep): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.35159 > > > + umask 022 > > > + cd /home/stefano/RPM/BUILD > > > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot > > > + cd /home/stefano/RPM/BUILD > > > + rm -rf gbxgol > > > + /usr/bin/bzip2 -dc /home/stefano/RPM/SOURCES/gbxgol-0.0.75.tar.bz2 > > > + tar -xf - > > > + STATUS=0 > > > + '[' 0 -ne 0 ']' > > > + cd gbxgol > > > + exit 0 > > > Executing(%build): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 > > > + umask 022 > > > + cd /home/stefano/RPM/BUILD > > > + cd gbxgol > > > + /usr/local/bin/gbc2 -a -p > > > OK > > > + gba2 > > > + exit 0 > > > Executing(%install): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.95251 > > > + umask 022 > > > + cd /home/stefano/RPM/BUILD > > > + cd gbxgol > > > + install -d > > > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin + install > > > -p > > > gbxgol.gambas > > > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/bin/gbxgol + > > > install -d > > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}' + > > > install -d > > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}' + > > > install -d > > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}' + > > > install -p .icon/16.png > > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_miconsdir}/gbxg > > >ol .p ng' + > > > install -p .icon/32.png > > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_iconsdir}/gbxgo > > >l. pn g' + > > > install -p .icon/48.png > > > '/home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot/%{_liconsdir}/gbxg > > >ol .p ng' + > > > install -d > > > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot//usr/share/applicat > > >io ns + cat > > > + /usr/lib/rpm/brp-compress > > > + /usr/lib/rpm/brp-strip > > > + /usr/lib/rpm/brp-strip-static-archive > > > + /usr/lib/rpm/brp-strip-comment-note > > > Processing files: gbxgol-0.0.75-75mdv > > > Checking for unpackaged > > > file(s): /usr/lib/rpm/check-files > > > /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot Wrote: > > > /home/stefano/RPM/SRPMS/gbxgol-0.0.75-75mdv.src.rpm > > > Wrote: /home/stefano/RPM/RPMS/noarch/gbxgol-0.0.75-75mdv.noarch.rpm > > > Executing(%clean): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63274 > > > + umask 022 > > > + cd /home/stefano/RPM/BUILD > > > + cd gbxgol > > > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.75-75mdv-buildroot > > > + exit 0 > > > > > > The package build has failed. > > > Package.MoveFile.1053: File or directory does not exist > > > > I fixed the package naming bug in the last revision. Can you try it and > > tell me if it is ok for you? > > No, I get the same error (svn 684) > > Creating package for Mandriva Linux. > Initializing ~/RPM directory. > Creating source package. > Creating .spec file. > Creating package... > > rpmbuild -ba /home/stefano/RPM/SPECS/gbxgol.spec > Executing(%prep): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63105 > + umask 022 > + cd /home/stefano/RPM/BUILD > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot > + cd /home/stefano/RPM/BUILD > + rm -rf gbxgol > + /usr/bin/bzip2 -dc /home/stefano/RPM/SOURCES/gbxgol-0.0.78.tar.bz2 > + tar -xf - > + STATUS=0 > + '[' 0 -ne 0 ']' > + cd gbxgol > + exit 0 > Executing(%build): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63105 > + umask 022 > + cd /home/stefano/RPM/BUILD > + cd gbxgol > + /usr/local/bin/gbc2 -a -p > OK > + gba2 > + exit 0 > Executing(%install): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.63105 > + umask 022 > + cd /home/stefano/RPM/BUILD > + cd gbxgol > + install -d /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot//usr/bin > + install -p > gbxgol.gambas > /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot//usr/bin/gbxgol + > install -d > '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_miconsdir}' + > install -d > '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_iconsdir}' + > install -d > '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_liconsdir}' + > install -p .icon/16.png > '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_miconsdir}/gbxgol.p >ng' + > install -p .icon/32.png > '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_iconsdir}/gbxgol.pn >g' + > install -p .icon/48.png > '/home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot/%{_liconsdir}/gbxgol.p >ng' + > install -d > /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot//usr/share/applications > + cat > + /usr/lib/rpm/brp-compress > + /usr/lib/rpm/brp-strip > + /usr/lib/rpm/brp-strip-static-archive > + /usr/lib/rpm/brp-strip-comment-note > Processing files: gbxgol-0.0.78-78mdv > Checking for unpackaged > file(s): /usr/lib/rpm/check-files > /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot Wrote: > /home/stefano/RPM/SRPMS/gbxgol-0.0.78-78mdv.src.rpm > Wrote: /home/stefano/RPM/RPMS/noarch/gbxgol-0.0.78-78mdv.noarch.rpm > Executing(%clean): /bin/sh -e /home/stefano/RPM/tmp/rpm-tmp.91949 > + umask 022 > + cd /home/stefano/RPM/BUILD > + cd gbxgol > + rm -rf /home/stefano/RPM/tmp/gbxgol-0.0.78-78mdv-buildroot > + exit 0 > > The package build has failed. > Package.MoveFile.1053: File or directory does not exist > > > For next 4 hours I can't test new svn versions. > > Regards, > > Stefano > Mmm. Are you sure that you recompile and reinstall the IDE? -- Benoit Minisini From cclark at ...1783... Wed Oct 3 18:40:31 2007 From: cclark at ...1783... (Colin Clark) Date: Wed, 3 Oct 2007 09:40:31 -0700 (PDT) Subject: [Gambas-user] Debugger: Watch variable Message-ID: <13022691.post@...1379...> I'm using the 1.9.51 version of Gambas. If I halt the running of a program using a breakpoint, then highlight a variable using the mouse, a balloon containing the current state of the variable pops up. Unfortunately the balloon remains displayed for only a fraction of a second. Is there a way to change the time-out for this? Thanks Colin Clark -- View this message in context: http://www.nabble.com/Debugger%3A-Watch-variable-tf4562940.html#a13022691 Sent from the gambas-user mailing list archive at Nabble.com. From gambas.fr at ...626... Wed Oct 3 19:02:41 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 3 Oct 2007 19:02:41 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <200710022358.22957.gambas@...1...> References: <200710022358.22957.gambas@...1...> Message-ID: <6324a42a0710031002u26b99c16h4993b37915a6b38f@...627...> > > I plan to make some articles on news site about the release candidate, in > the > hope of attracting more testers^W people. Maybe I will make some sort of > HTML > slides on the web site and provide links to them in the articles. > > Any help and suggestion about that is welcome!!! maybe it will be interresting to list the most important feature of gambas here so many people can do article and publicity on the same line of mind. these queries are for Benoit and others too : What is gambas ? What is his goal ? Why use gambas ? What's new in gambas2 ? And in what gambas2 is better than v.1 What is the thing you prefer in gambas ? What did you see for the gambas future ? for me: 1) The better programming language i know 2) To give the possibility to linux users to have a BASIC RAD. And in second refresh the basic mind. 3) Because it's simple , quick, stable, GNU, powerfull. 4) hum so many things... i hope Benoit remenbers all ;-). ...Same thing for the differences. 5) The IDE, the qt/gtk api, the container system, the db layers, the gb.webcomponent. 6) hoho ! Script version, db integration in ide, report and web page designer... a gb.orgre component(for 3D games), if it is possible a better integration to the desktop(gnome/kde), by using its toobars, 64 bits?, kpart ?, and so on... These answer are queries too :-). I hope every body do the same so we can have impress and suggest for the future. And a support for articles. Fabien Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Wed Oct 3 19:11:49 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 19:11:49 +0200 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <13022691.post@...1379...> References: <13022691.post@...1379...> Message-ID: <200710031911.49202.gambas@...1...> On mercredi 03 octobre 2007, Colin Clark wrote: > I'm using the 1.9.51 version of Gambas. > > If I halt the running of a program using a breakpoint, then highlight a > variable using the mouse, a balloon containing the current state of the > variable pops up. > > Unfortunately the balloon remains displayed for only a fraction of a > second. Is there a way to change the time-out for this? > > Thanks > > Colin Clark The timeout is about five seconds, which is usually enough to read the value. Why don't you use the "watch expression" menu? This way the expression value is displayed permanently in the debugger watch windows. -- Benoit Minisini From rohnny at ...1248... Wed Oct 3 20:07:39 2007 From: rohnny at ...1248... (R. Stormo) Date: Wed, 3 Oct 2007 11:07:39 -0700 (PDT) Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <200710022358.22957.gambas@...1...> References: <200710022358.22957.gambas@...1...> Message-ID: <13024542.post@...1379...> Hi. There are couple of things in this version. 1) My Project crash with this : This raise error #11 my Class PRIVATE MyHTTP AS HttpClien public check() MyHTTP = NEW HttpClient AS "MyHTTP" 2) Still no go with the make installation on Ubuntu. Tried it with fiesty and now running gutsy gibbon but still only get the filname-orig file that is my project. Regards Rohnny My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Gambas-2-version-1.9.90-tf4558450.html#a13024542 Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Wed Oct 3 20:12:11 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 20:12:11 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <13024542.post@...1379...> References: <200710022358.22957.gambas@...1...> <13024542.post@...1379...> Message-ID: <200710032012.11699.gambas@...1...> On mercredi 03 octobre 2007, R. Stormo wrote: > Hi. > > There are couple of things in this version. > > 1) > My Project crash with this : > > This raise error #11 > my Class > PRIVATE MyHTTP AS HttpClien > > public check() > > MyHTTP = NEW HttpClient AS "MyHTTP" > No crash there. Please give more details or send a full project so that I debug... > > > 2) Still no go with the make installation on Ubuntu. > Tried it with fiesty and now running gutsy gibbon but still only get the > filname-orig file that is my project. Can you give detailed precisions ? -- Benoit Minisini From rohnny at ...1248... Wed Oct 3 20:12:58 2007 From: rohnny at ...1248... (R. Stormo) Date: Wed, 3 Oct 2007 11:12:58 -0700 (PDT) Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <200710022358.22957.gambas@...1...> References: <200710022358.22957.gambas@...1...> Message-ID: <13024544.post@...1379...> Hi. Also see one thing more. When I use version control from previous version I get this error. rohnny at ...1008...:~/gambas3/trunk$ gambas2 Project.GetVersion.1770: Unable to get version from: /home/rohnny/Prosjekter/faktura/faktura.gambas Regards Rohnny My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Gambas-2-version-1.9.90-tf4558450.html#a13024544 Sent from the gambas-user mailing list archive at Nabble.com. From rospolosco at ...152... Wed Oct 3 20:22:54 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Wed, 3 Oct 2007 20:22:54 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 - 2 bugs In-Reply-To: <200710031619.17579.gambas@...1...> References: <200710022358.22957.gambas@...1...> <200710031557.39762.rospolosco@...152...> <200710031619.17579.gambas@...1...> Message-ID: <200710032022.55335.rospolosco@...152...> Alle 16:19, mercoled? 3 ottobre 2007, Benoit Minisini ha scritto: > Mmm. Are you sure that you recompile and reinstall the IDE? > > -- > Benoit Minisini OK. The packager wizard works. svn 684. Bye, Stefano From ariefbayu at ...626... Wed Oct 3 20:26:40 2007 From: ariefbayu at ...626... (Arief Bayu Purwanto) Date: Thu, 4 Oct 2007 01:26:40 +0700 Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <13024542.post@...1379...> References: <200710022358.22957.gambas@...1...> <13024542.post@...1379...> Message-ID: <976ad9050710031126n54f7f68ex896cab2d07f58c11@...627...> > > 2) Still no go with the make installation on Ubuntu. > Tried it with fiesty and now running gutsy gibbon but still only get the > filname-orig file that is my project. I can compile it using fresh svn checkout on fiesty. -- Daiguren Hy?rinmaru From rohnny at ...1248... Wed Oct 3 22:36:28 2007 From: rohnny at ...1248... (R. Stormo) Date: Wed, 3 Oct 2007 13:36:28 -0700 (PDT) Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <200710032012.11699.gambas@...1...> References: <200710022358.22957.gambas@...1...> <13024542.post@...1379...> <200710032012.11699.gambas@...1...> Message-ID: <13027318.post@...1379...> Benoit Minisini wrote: > > On mercredi 03 octobre 2007, R. Stormo wrote: >> Hi. >> >> There are couple of things in this version. >> >> 1) >> My Project crash with this : >> >> This raise error #11 >> my Class >> PRIVATE MyHTTP AS HttpClien >> >> public check() >> >> MyHTTP = NEW HttpClient AS "MyHTTP" >> > > No crash there. Please give more details or send a full project so that I > debug... > >> >> >> 2) Still no go with the make installation on Ubuntu. >> Tried it with fiesty and now running gutsy gibbon but still only get the >> filname-orig file that is my project. > > Can you give detailed precisions ? > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Here is a code that do crash. Hasn't crash in previous version. When it come to make installation package I can't give you any more information because I'm not getting anything in the screen except. Making Package for Ubuntu Making build directory Creating desktop file..... Source are being debianized. Creating package Making changelog Packages are made without error. and a dialog say close or retry -- View this message in context: http://www.nabble.com/Gambas-2-version-1.9.90-tf4558450.html#a13027318 Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Wed Oct 3 23:34:16 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Oct 2007 23:34:16 +0200 Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <13027318.post@...1379...> References: <200710022358.22957.gambas@...1...> <200710032012.11699.gambas@...1...> <13027318.post@...1379...> Message-ID: <200710032334.16421.gambas@...1...> On mercredi 03 octobre 2007, R. Stormo wrote: > Benoit Minisini wrote: > > On mercredi 03 octobre 2007, R. Stormo wrote: > >> Hi. > >> > >> There are couple of things in this version. > >> > >> 1) > >> My Project crash with this : > >> > >> This raise error #11 > >> my Class > >> PRIVATE MyHTTP AS HttpClien > >> > >> public check() > >> > >> MyHTTP = NEW HttpClient AS "MyHTTP" > > > > No crash there. Please give more details or send a full project so that I > > debug... > > > >> 2) Still no go with the make installation on Ubuntu. > >> Tried it with fiesty and now running gutsy gibbon but still only get the > >> filname-orig file that is my project. > > > > Can you give detailed precisions ? > > > > -- > > Benoit Minisini > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Here is a code that do crash. Hasn't crash in previous version. Which code? > > > When it come to make installation package I can't give you any more > information because I'm not getting anything in the screen except. > > Making Package for Ubuntu > Making build directory > Creating desktop file..... > Source are being debianized. > Creating package > Making changelog > Packages are made without error. > > > and a dialog say close or retry So no errors were detected. But what is the problem exactly? -- Benoit Minisini From rohnny at ...1248... Wed Oct 3 23:39:54 2007 From: rohnny at ...1248... (R. Stormo) Date: Wed, 3 Oct 2007 14:39:54 -0700 (PDT) Subject: [Gambas-user] Gambas 2 version 1.9.90 In-Reply-To: <200710032334.16421.gambas@...1...> References: <200710022358.22957.gambas@...1...> <13024542.post@...1379...> <200710032012.11699.gambas@...1...> <13027318.post@...1379...> <200710032334.16421.gambas@...1...> Message-ID: <13028494.post@...1379...> Benoit Minisini wrote: > > On mercredi 03 octobre 2007, R. Stormo wrote: >> Benoit Minisini wrote: >> > On mercredi 03 octobre 2007, R. Stormo wrote: >> >> Hi. >> >> >> >> There are couple of things in this version. >> >> >> >> 1) >> >> My Project crash with this : >> >> >> >> This raise error #11 >> >> my Class >> >> PRIVATE MyHTTP AS HttpClien >> >> >> >> public check() >> >> >> >> MyHTTP = NEW HttpClient AS "MyHTTP" >> > >> > No crash there. Please give more details or send a full project so that >> I >> > debug... >> > >> >> 2) Still no go with the make installation on Ubuntu. >> >> Tried it with fiesty and now running gutsy gibbon but still only get >> the >> >> filname-orig file that is my project. >> > >> > Can you give detailed precisions ? >> > >> > -- >> > Benoit Minisini >> > >> > >> ------------------------------------------------------------------------- >> > This SF.net email is sponsored by: Splunk Inc. >> > Still grepping through log files to find problems? Stop. >> > Now Search log events and configuration files using AJAX and a browser. >> > Download your FREE copy of Splunk now >> http://get.splunk.com/ >> > _______________________________________________ >> > Gambas-user mailing list >> > Gambas-user at lists.sourceforge.net >> > https://lists.sourceforge.net/lists/listinfo/gambas-user >> >> Here is a code that do crash. Hasn't crash in previous version. > > Which code? > upps my mistake. http://www.nabble.com/file/p13028494/http-test-0.0.1.tar.gz http-test-0.0.1.tar.gz Benoit Minisini wrote: > >> >> >> When it come to make installation package I can't give you any more >> information because I'm not getting anything in the screen except. >> >> Making Package for Ubuntu >> Making build directory >> Creating desktop file..... >> Source are being debianized. >> Creating package >> Making changelog >> Packages are made without error. >> >> >> and a dialog say close or retry > > So no errors were detected. But what is the problem exactly? > > The problem is that there is no installation file. Only project are saved. as filename-orig.bz2 Benoit Minisini wrote: > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Regards Rohnny My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Gambas-2-version-1.9.90-tf4558450.html#a13028494 Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Thu Oct 4 01:23:30 2007 From: gambas at ...1... (Benoit Minisini) Date: Thu, 4 Oct 2007 01:23:30 +0200 Subject: [Gambas-user] File Chooser In-Reply-To: <200710021828.04330.steven@...1652...> References: <200709251045.25097.steven@...1652...> <200710012035.49800.gambas@...1...> <200710021828.04330.steven@...1652...> Message-ID: <200710040123.30157.gambas@...1...> On mardi 02 octobre 2007, Steven Lobbezoo wrote: > Of course, here it is. > > Steven > I cannot reproduce the problem. Did you try the latest svn release? -- Benoit Minisini From gambas at ...1... Thu Oct 4 01:27:09 2007 From: gambas at ...1... (Benoit Minisini) Date: Thu, 4 Oct 2007 01:27:09 +0200 Subject: [Gambas-user] Calling library functions in Gambas2 In-Reply-To: <12475387.post@...1379...> References: <6bb01940708191619l2e9d79eja1e3e0986788604f@...627...> <200709031659.27960.gambas@...1...> <12475387.post@...1379...> Message-ID: <200710040127.09130.gambas@...1...> On mardi 04 septembre 2007, easuter wrote: > Benoit Minisini wrote: > > You must install the last subversion revision, not the last release. > > > > Regards, > > > > -- > > Benoit Minisini > > Yeah, it seems to work (with svn r552) :-) > The only thing now is that when the gambas console prints the returned > value from an external function (any one that I've tried so far, even > printf), it gives this message before it: > > Session management error: Authentication Rejected, reason : None of the > authentication protocols specified are supported and host-based > authentication failed > > This shouldn't happen right (it doesn't in gambas2 1.9.50)? This message is not related to Gambas, but to the fact that your program is run by a user different from the user that connected to the X11 display. Regards, -- Benoit Minisini From jredrejo at ...626... Thu Oct 4 12:56:51 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Thu, 4 Oct 2007 12:56:51 +0200 Subject: [Gambas-user] problem with ColorButton, FileView and DirView using gtk Message-ID: <8eb28a500710040356g1fea5965qd4774e067857df0b@...627...> Tested with 1.9.51, using gb.gui or gb.gtk, width of the FileView, DirView and ColorButton objects on the forms is always very small and, setting by code the width value doesn't work. IconView seems to behave rightly. With gb.qt it works perfectly. This is a new problem, as with 1.9.50 using gb.gtk it worked perfectly. Regards. From gambas at ...1... Thu Oct 4 13:20:51 2007 From: gambas at ...1... (Benoit Minisini) Date: Thu, 4 Oct 2007 13:20:51 +0200 Subject: [Gambas-user] problem with ColorButton, FileView and DirView using gtk In-Reply-To: <8eb28a500710040356g1fea5965qd4774e067857df0b@...627...> References: <8eb28a500710040356g1fea5965qd4774e067857df0b@...627...> Message-ID: <200710041320.51704.gambas@...1...> On jeudi 04 octobre 2007, Jos? Luis Redrejo wrote: > Tested with 1.9.51, using gb.gui or gb.gtk, width of the FileView, DirView > and ColorButton objects on the forms is always very small and, setting by > code the width value doesn't work. IconView seems to behave rightly. > With gb.qt it works perfectly. > > This is a new problem, as with 1.9.50 using gb.gtk it worked perfectly. > > Regards. OK. Fixed in the last svn revision. Regards, -- Benoit Minisini From cclark at ...1783... Thu Oct 4 13:22:11 2007 From: cclark at ...1783... (Colin Clark) Date: Thu, 04 Oct 2007 12:22:11 +0100 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <200710031911.49202.gambas@...1...> References: <13022691.post@...1379...> <200710031911.49202.gambas@...1...> Message-ID: <4704CCE3.50304@...1783...> Benoit Minisini wrote: > On mercredi 03 octobre 2007, Colin Clark wrote: > >> I'm using the 1.9.51 version of Gambas. >> >> If I halt the running of a program using a breakpoint, then highlight a >> variable using the mouse, a balloon containing the current state of the >> variable pops up. >> >> Unfortunately the balloon remains displayed for only a fraction of a >> second. Is there a way to change the time-out for this? >> >> Thanks >> >> Colin Clark >> > > The timeout is about five seconds, which is usually enough to read the value. > > Why don't you use the "watch expression" menu? This way the expression value > is displayed permanently in the debugger watch windows. > > Thanks. As you say I can use the watch expression. However, just as information, the timeout on my computer is actually about one quarter of a second, and not 5 seconds. Colin Clark From gambas at ...1... Thu Oct 4 13:36:53 2007 From: gambas at ...1... (Benoit Minisini) Date: Thu, 4 Oct 2007 13:36:53 +0200 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <4704CCE3.50304@...1783...> References: <13022691.post@...1379...> <200710031911.49202.gambas@...1...> <4704CCE3.50304@...1783...> Message-ID: <200710041336.53362.gambas@...1...> On jeudi 04 octobre 2007, Colin Clark wrote: > Benoit Minisini wrote: > > On mercredi 03 octobre 2007, Colin Clark wrote: > >> I'm using the 1.9.51 version of Gambas. > >> > >> If I halt the running of a program using a breakpoint, then highlight a > >> variable using the mouse, a balloon containing the current state of the > >> variable pops up. > >> > >> Unfortunately the balloon remains displayed for only a fraction of a > >> second. Is there a way to change the time-out for this? > >> > >> Thanks > >> > >> Colin Clark > > > > The timeout is about five seconds, which is usually enough to read the > > value. > > > > Why don't you use the "watch expression" menu? This way the expression > > value is displayed permanently in the debugger watch windows. > > Thanks. As you say I can use the watch expression. > > However, just as information, the timeout on my computer is actually > about one quarter of a second, and not 5 seconds. > Mmm... Note that the balloon is automatically hidden if the editor cursor moves, or if you click on it, or if the editor loses the focus... Are you in one of these cases? -- Benoit Minisini From cclark at ...1783... Thu Oct 4 20:36:18 2007 From: cclark at ...1783... (Colin Clark) Date: Thu, 04 Oct 2007 19:36:18 +0100 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <200710041336.53362.gambas@...1...> References: <13022691.post@...1379...> <200710031911.49202.gambas@...1...> <4704CCE3.50304@...1783...> <200710041336.53362.gambas@...1...> Message-ID: <470532A2.9020403@...1783...> Benoit Minisini wrote: > On jeudi 04 octobre 2007, Colin Clark wrote: > >> Benoit Minisini wrote: >> >>> On mercredi 03 octobre 2007, Colin Clark wrote: >>> >>>> I'm using the 1.9.51 version of Gambas. >>>> >>>> If I halt the running of a program using a breakpoint, then highlight a >>>> variable using the mouse, a balloon containing the current state of the >>>> variable pops up. >>>> >>>> Unfortunately the balloon remains displayed for only a fraction of a >>>> second. Is there a way to change the time-out for this? >>>> >>>> Thanks >>>> >>>> Colin Clark >>>> >>> The timeout is about five seconds, which is usually enough to read the >>> value. >>> >>> Why don't you use the "watch expression" menu? This way the expression >>> value is displayed permanently in the debugger watch windows. >>> >> Thanks. As you say I can use the watch expression. >> >> However, just as information, the timeout on my computer is actually >> about one quarter of a second, and not 5 seconds. >> >> > > Mmm... Note that the balloon is automatically hidden if the editor cursor > moves, or if you click on it, or if the editor loses the focus... Are you in > one of these cases? > > I just double-left-click on a variable. The balloon flashes up, and then immediately disappears. The variable remains highlighted. Colin Clark From gambas at ...1... Fri Oct 5 01:08:38 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 5 Oct 2007 01:08:38 +0200 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <470532A2.9020403@...1783...> References: <13022691.post@...1379...> <200710041336.53362.gambas@...1...> <470532A2.9020403@...1783...> Message-ID: <200710050108.38692.gambas@...1...> On jeudi 04 octobre 2007, Colin Clark wrote: > Benoit Minisini wrote: > > On jeudi 04 octobre 2007, Colin Clark wrote: > >> Benoit Minisini wrote: > >>> On mercredi 03 octobre 2007, Colin Clark wrote: > >>>> I'm using the 1.9.51 version of Gambas. > >>>> > >>>> If I halt the running of a program using a breakpoint, then highlight > >>>> a variable using the mouse, a balloon containing the current state of > >>>> the variable pops up. > >>>> > >>>> Unfortunately the balloon remains displayed for only a fraction of a > >>>> second. Is there a way to change the time-out for this? > >>>> > >>>> Thanks > >>>> > >>>> Colin Clark > >>> > >>> The timeout is about five seconds, which is usually enough to read the > >>> value. > >>> > >>> Why don't you use the "watch expression" menu? This way the expression > >>> value is displayed permanently in the debugger watch windows. > >> > >> Thanks. As you say I can use the watch expression. > >> > >> However, just as information, the timeout on my computer is actually > >> about one quarter of a second, and not 5 seconds. > > > > Mmm... Note that the balloon is automatically hidden if the editor cursor > > moves, or if you click on it, or if the editor loses the focus... Are you > > in one of these cases? > > I just double-left-click on a variable. The balloon flashes up, and then > immediately disappears. The variable remains highlighted. > > Colin Clark > It should not... Strange... Which KDE style do you use? -- Benoit Minisini From rospolosco at ...152... Fri Oct 5 11:26:42 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 5 Oct 2007 11:26:42 +0200 Subject: [Gambas-user] new Italian translation for 1.9.90 Message-ID: <200710051126.42772.rospolosco@...152...> Hi, Benoit. I've updated the Italian translation for the IDE, last trunk. File attached. Regards, Stefano Palmeri -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas2-it-1.9.90.po.gz Type: application/x-gzip Size: 18193 bytes Desc: not available URL: From rospolosco at ...152... Fri Oct 5 13:05:10 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 5 Oct 2007 13:05:10 +0200 Subject: [Gambas-user] new Italian translation for 1.9.90 - 2th version Message-ID: <200710051305.10178.rospolosco@...152...> Second corrected version. I fixed something. Bye Stefano -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas2-it-1.9.90.po.gz Type: application/x-gzip Size: 18224 bytes Desc: not available URL: From rospolosco at ...152... Fri Oct 5 13:24:25 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 5 Oct 2007 13:24:25 +0200 Subject: [Gambas-user] again new Italian translation for 1.9.90 - 3rd version Message-ID: <200710051324.25960.rospolosco@...152...> Aaarrrghhh. Third version. Sorry. Stefano -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas2-it-1.9.90.po.gz Type: application/x-gzip Size: 18354 bytes Desc: not available URL: From steven at ...1652... Fri Oct 5 13:37:26 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Fri, 5 Oct 2007 13:37:26 +0200 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <200710050108.38692.gambas@...1...> References: <13022691.post@...1379...> <470532A2.9020403@...1783...> <200710050108.38692.gambas@...1...> Message-ID: <200710051337.26957.steven@...1652...> Le vendredi 5 octobre 2007 01:08, Benoit Minisini a ?crit?: > On jeudi 04 octobre 2007, Colin Clark wrote: > > Benoit Minisini wrote: > > > On jeudi 04 octobre 2007, Colin Clark wrote: > > >> Benoit Minisini wrote: > > >>> On mercredi 03 octobre 2007, Colin Clark wrote: > > >>>> I'm using the 1.9.51 version of Gambas. > > >>>> > > > > Colin Clark > > It should not... Strange... Which KDE style do you use? I have the same (since I installed Suse 10.2). I donnot use KDE, but work with gnome. KDE is installed however. Steven From cclark at ...1783... Fri Oct 5 13:50:06 2007 From: cclark at ...1783... (Colin Clark) Date: Fri, 05 Oct 2007 12:50:06 +0100 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <200710050108.38692.gambas@...1...> References: <13022691.post@...1379...> <200710041336.53362.gambas@...1...> <470532A2.9020403@...1783...> <200710050108.38692.gambas@...1...> Message-ID: <470624EE.6080307@...1783...> Benoit Minisini wrote: > On jeudi 04 octobre 2007, Colin Clark wrote: > >> Benoit Minisini wrote: >> >>> On jeudi 04 octobre 2007, Colin Clark wrote: >>> >>>> Benoit Minisini wrote: >>>> >>>>> On mercredi 03 octobre 2007, Colin Clark wrote: >>>>> >>>>>> I'm using the 1.9.51 version of Gambas. >>>>>> >>>>>> If I halt the running of a program using a breakpoint, then highlight >>>>>> a variable using the mouse, a balloon containing the current state of >>>>>> the variable pops up. >>>>>> >>>>>> Unfortunately the balloon remains displayed for only a fraction of a >>>>>> second. Is there a way to change the time-out for this? >>>>>> >>>>>> Thanks >>>>>> >>>>>> Colin Clark >>>>>> >>>>> The timeout is about five seconds, which is usually enough to read the >>>>> value. >>>>> >>>>> Why don't you use the "watch expression" menu? This way the expression >>>>> value is displayed permanently in the debugger watch windows. >>>>> >>>> Thanks. As you say I can use the watch expression. >>>> >>>> However, just as information, the timeout on my computer is actually >>>> about one quarter of a second, and not 5 seconds. >>>> >>> Mmm... Note that the balloon is automatically hidden if the editor cursor >>> moves, or if you click on it, or if the editor loses the focus... Are you >>> in one of these cases? >>> >> I just double-left-click on a variable. The balloon flashes up, and then >> immediately disappears. The variable remains highlighted. >> >> Colin Clark >> >> > > It should not... Strange... Which KDE style do you use? > > I use Ubuntu 7.04, with the Gnome desktop. The Balloon timeout works correctly in my own projects. For instance if I make the following simple addition to the HighlightEditor example, it works as I would expect it to. PUBLIC SUB Editor1_dblclick() Balloon.Delay = 5000 Balloon.Info(Editor1.Selection.text, ME) END Colin Clark From rgx at ...17... Fri Oct 5 14:40:32 2007 From: rgx at ...17... (RalfGesellensetter) Date: Fri, 5 Oct 2007 14:40:32 +0200 Subject: [Gambas-user] Persistent drawings? Message-ID: <200710051440.32293.rgx@...17...> Dear list, this issue is connected to my other posting (wich can be considered unsolved): When I use drawing commands in a Drawingarea, this painting is not persistent: When I mini/maximize the window or raise another window on top, afterwards all (covered) drawings are gone. Is there any persistent mode of drawing? Thanks Regards Ralf From dcamposf at ...626... Fri Oct 5 14:50:43 2007 From: dcamposf at ...626... (Daniel Campos) Date: Fri, 5 Oct 2007 14:50:43 +0200 Subject: [Gambas-user] Persistent drawings? In-Reply-To: <200710051440.32293.rgx@...17...> References: <200710051440.32293.rgx@...17...> Message-ID: <7259b5ae0710050550k50ea7096pb77a4ade00871294@...627...> Set the "Cached" property of the DrawingArea to TRUE. Daniel 2007/10/5, RalfGesellensetter : > Dear list, > > this issue is connected to my other posting (wich can be considered unsolved): > > When I use drawing commands in a Drawingarea, this painting is not persistent: > When I mini/maximize the window or raise another window on top, afterwards > all (covered) drawings are gone. Is there any persistent mode of drawing? > > Thanks > Regards > Ralf > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From laxminarayan at ...1434... Fri Oct 5 14:51:41 2007 From: laxminarayan at ...1434... (Laxminarayan G Kamath A) Date: Fri, 5 Oct 2007 18:21:41 +0530 Subject: [Gambas-user] Persistent drawings? In-Reply-To: <200710051440.32293.rgx@...17...> References: <200710051440.32293.rgx@...17...> Message-ID: <20071005182141.f679b1ab.laxminarayan@...1434...> On Fri, 5 Oct 2007 14:40:32 +0200, RalfGesellensetter wrote: > > When I use drawing commands in a Drawingarea, this painting is not > persistent: When I mini/maximize the window or raise another window > on top, afterwards all (covered) drawings are gone. Is there any > persistent mode of drawing? Set the "Cached" property of the "DrawingArea" object to true. http://gambasdoc.org/help/comp/gb.qt/drawingarea/cached -- Cheers, Laxminarayan G Kamath A hacker || developer, DeepRoot Linux Work URL: http://deeproot.in From gambas at ...1... Fri Oct 5 23:06:04 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 5 Oct 2007 23:06:04 +0200 Subject: [Gambas-user] Release of gambas 1.9.90 Message-ID: <200710052306.04255.gambas@...1...> Hi, This release is the last one before the first release candidate of Gambas 2. This is mainly a bug fixes release: * An old bug was fixed in the interpreter that made the debugger display the value of global variables incorrectly. * Class names used as functions now are cast operators, unless they have a _call special method defined. * An old bug was fixed in the Settings class, that made the interpreter stops without printing any error message. * The gb.ldap component was removed: apparently it does not work, and its develor does not maintain it anymore. See the ChangeLog for the other bug fixes: http://gambas.sf.net/changelog2.html You have at least one week to raise the last problems before the release of Gambas 2 RC1. Translations will be able to be updated after this release, but please don't translate after the final one! :-) I will write some "marketing" article to quickly depict all the changes since Gambas 1, and may post it on some news site. Regards, -- Benoit Minisini From gambas at ...1... Fri Oct 5 23:06:16 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 5 Oct 2007 23:06:16 +0200 Subject: [Gambas-user] again new Italian translation for 1.9.90 - 3rd version In-Reply-To: <200710051324.25960.rospolosco@...152...> References: <200710051324.25960.rospolosco@...152...> Message-ID: <200710052306.16491.gambas@...1...> On vendredi 05 octobre 2007, Stefano Palmeri wrote: > Aaarrrghhh. Third version. > > Sorry. > > Stefano Thanks! -- Benoit Minisini From rospolosco at ...152... Fri Oct 5 23:55:58 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 5 Oct 2007 23:55:58 +0200 Subject: [Gambas-user] again new Italian translation for 1.9.90 - 3rd version In-Reply-To: <200710052306.16491.gambas@...1...> References: <200710051324.25960.rospolosco@...152...> <200710052306.16491.gambas@...1...> Message-ID: <200710052355.58514.rospolosco@...152...> Alle 23:06, venerd? 5 ottobre 2007, Benoit Minisini ha scritto: > On vendredi 05 octobre 2007, Stefano Palmeri wrote: > > Aaarrrghhh. Third version. > > > > Sorry. > > > > Stefano > > Thanks! Expect a new version in next week, before RC1. Also, I noticed a little bug in 1.9.90 IDE (just downloaded). In the packager wizard the buttons labels (Next, Previous, Cancel) stay untranslated, but they are translated in the *.po italian file. The same if you: export LANG=es_ES; gambas2.gambas all the IDE is in Spanish, but packager wizard buttons labels are English. But French works fine. What's wrong? Regards, Stefano Palmeri From gambas at ...1... Sat Oct 6 00:02:24 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 00:02:24 +0200 Subject: [Gambas-user] again new Italian translation for 1.9.90 - 3rd version In-Reply-To: <200710052355.58514.rospolosco@...152...> References: <200710051324.25960.rospolosco@...152...> <200710052306.16491.gambas@...1...> <200710052355.58514.rospolosco@...152...> Message-ID: <200710060002.24397.gambas@...1...> On vendredi 05 octobre 2007, Stefano Palmeri wrote: > Alle 23:06, venerd? 5 ottobre 2007, Benoit Minisini ha scritto: > > On vendredi 05 octobre 2007, Stefano Palmeri wrote: > > > Aaarrrghhh. Third version. > > > > > > Sorry. > > > > > > Stefano > > > > Thanks! > > Expect a new version in next week, before RC1. > > Also, I noticed a little bug in 1.9.90 IDE (just downloaded). > > In the packager wizard the buttons labels (Next, Previous, Cancel) > stay untranslated, but they are translated in the *.po italian file. > > The same if you: > export LANG=es_ES; gambas2.gambas > > all the IDE is in Spanish, but packager wizard buttons labels are English. > > But French works fine. What's wrong? > > Regards, > > Stefano Palmeri > You have to translate the gb.form component that implementes the Wizard control. Many components have strings to translate. Hopefully, you have to do that once: strings are not duplicated in each project using the component! Regards, -- Benoit Minisini From rospolosco at ...152... Sat Oct 6 06:57:36 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 06:57:36 +0200 Subject: [Gambas-user] again new Italian translation for 1.9.90 - 3rd version In-Reply-To: <200710060002.24397.gambas@...1...> References: <200710051324.25960.rospolosco@...152...> <200710052355.58514.rospolosco@...152...> <200710060002.24397.gambas@...1...> Message-ID: <200710060657.37126.rospolosco@...152...> Alle 00:02, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On vendredi 05 octobre 2007, Stefano Palmeri wrote: > > Alle 23:06, venerd? 5 ottobre 2007, Benoit Minisini ha scritto: > > > On vendredi 05 octobre 2007, Stefano Palmeri wrote: > > > > Aaarrrghhh. Third version. > > > > > > > > Sorry. > > > > > > > > Stefano > > > > > > Thanks! > > > > Expect a new version in next week, before RC1. > > > > Also, I noticed a little bug in 1.9.90 IDE (just downloaded). > > > > In the packager wizard the buttons labels (Next, Previous, Cancel) > > stay untranslated, but they are translated in the *.po italian file. > > > > The same if you: > > export LANG=es_ES; gambas2.gambas > > > > all the IDE is in Spanish, but packager wizard buttons labels are > > English. > > > > But French works fine. What's wrong? > > > > Regards, > > > > Stefano Palmeri > > You have to translate the gb.form component that implementes the Wizard > control. > > Many components have strings to translate. Hopefully, you have to do that > once: strings are not duplicated in each project using the component! > > Regards, Ok, but I want my place in the hall of fame :-) Stefano From steven at ...1652... Sat Oct 6 07:54:52 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Sat, 6 Oct 2007 07:54:52 +0200 Subject: [Gambas-user] File Chooser In-Reply-To: <200710040123.30157.gambas@...1...> References: <200709251045.25097.steven@...1652...> <200710021828.04330.steven@...1652...> <200710040123.30157.gambas@...1...> Message-ID: <200710060754.53093.steven@...1652...> Le jeudi 4 octobre 2007 01:23, Benoit Minisini a ?crit?: > On mardi 02 octobre 2007, Steven Lobbezoo wrote: > > Of course, here it is. > > > > Steven > > I cannot reproduce the problem. Did you try the latest svn release? Hi, I just did, No problem anymore (suppose it solved it's self, since it considers itself a total nuisance ;-) ) Thanks, Steven From rospolosco at ...152... Sat Oct 6 11:40:35 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 11:40:35 +0200 Subject: [Gambas-user] italian translation --- IDE + components Message-ID: <200710061140.35617.rospolosco@...152...> It's me, again. I again updated the IDE translation and translated the components. They are all from 1.9.90, even if some of their names refer to previous Gambas versions. Regards, Stefano Palmeri -------------- next part -------------- A non-text attachment was scrubbed... Name: IDE-plus-components-italian.tar.gz Type: application/x-tgz Size: 19888 bytes Desc: not available URL: From gambas at ...1... Sat Oct 6 13:39:16 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 13:39:16 +0200 Subject: [Gambas-user] again new Italian translation for 1.9.90 - 3rd version In-Reply-To: <200710060657.37126.rospolosco@...152...> References: <200710051324.25960.rospolosco@...152...> <200710060002.24397.gambas@...1...> <200710060657.37126.rospolosco@...152...> Message-ID: <200710061339.17087.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > Alle 00:02, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > > On vendredi 05 octobre 2007, Stefano Palmeri wrote: > > > Alle 23:06, venerd? 5 ottobre 2007, Benoit Minisini ha scritto: > > > > On vendredi 05 octobre 2007, Stefano Palmeri wrote: > > > > > Aaarrrghhh. Third version. > > > > > > > > > > Sorry. > > > > > > > > > > Stefano > > > > > > > > Thanks! > > > > > > Expect a new version in next week, before RC1. > > > > > > Also, I noticed a little bug in 1.9.90 IDE (just downloaded). > > > > > > In the packager wizard the buttons labels (Next, Previous, Cancel) > > > stay untranslated, but they are translated in the *.po italian file. > > > > > > The same if you: > > > export LANG=es_ES; gambas2.gambas > > > > > > all the IDE is in Spanish, but packager wizard buttons labels are > > > English. > > > > > > But French works fine. What's wrong? > > > > > > Regards, > > > > > > Stefano Palmeri > > > > You have to translate the gb.form component that implementes the Wizard > > control. > > > > Many components have strings to translate. Hopefully, you have to do that > > once: strings are not duplicated in each project using the component! > > > > Regards, > > Ok, but I want my place in the hall of fame :-) > > Stefano > Done in the web site :-). You will see it in the about dialog at next release. -- Benoit Minisini From gambas at ...1... Sat Oct 6 13:40:52 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 13:40:52 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061140.35617.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> Message-ID: <200710061340.52223.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > It's me, again. > > I again updated the IDE translation and translated > the components. They are all from 1.9.90, even if some of their > names refer to previous Gambas versions. > > Regards, > > Stefano Palmeri Thanks. I suggest that when an italian string is the same as the english string, or if an english string does not be translated (because it is a number for example), that you use the special "-" string as translation. This way, we can easily make the difference between a non-translated string and a string that must not be translated. Regards, -- Benoit Minisini From gambas at ...1... Sat Oct 6 13:42:01 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 13:42:01 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061140.35617.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> Message-ID: <200710061342.01782.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > It's me, again. > > I again updated the IDE translation and translated > the components. They are all from 1.9.90, even if some of their > names refer to previous Gambas versions. > > Regards, > > Stefano Palmeri Another point: do you want a subversion write access, so that you can do your translation directly in the source code? It is easier for me, as I don't have to take your translation and insert them in the source code manually. It takes a lot of time when there are a lot of different translations. Regards, -- Benoit Minisini From rospolosco at ...152... Sat Oct 6 16:04:51 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 16:04:51 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061340.52223.gambas@...1...> References: <200710061140.35617.rospolosco@...152...> <200710061340.52223.gambas@...1...> Message-ID: <200710061604.51895.rospolosco@...152...> Alle 13:40, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > It's me, again. > > > > I again updated the IDE translation and translated > > the components. They are all from 1.9.90, even if some of their > > names refer to previous Gambas versions. > > > > Regards, > > > > Stefano Palmeri > > Thanks. > > I suggest that when an italian string is the same as the english string, or > if an english string does not be translated (because it is a number for > example), that you use the special "-" string as translation. > OK. I didn't know. Sorry. Do I have to correct the translations that I sent? Regards, Stefano Palmeri > This way, we can easily make the difference between a non-translated string > and a string that must not be translated. > > Regards, From rospolosco at ...152... Sat Oct 6 16:11:26 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 16:11:26 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061342.01782.gambas@...1...> References: <200710061140.35617.rospolosco@...152...> <200710061342.01782.gambas@...1...> Message-ID: <200710061611.27030.rospolosco@...152...> Alle 13:42, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > It's me, again. > > > > I again updated the IDE translation and translated > > the components. They are all from 1.9.90, even if some of their > > names refer to previous Gambas versions. > > > > Regards, > > > > Stefano Palmeri > > Another point: do you want a subversion write access, so that you can do > your translation directly in the source code? > Actually, I don't know how it works. I use svn just to update the trunk... If I had a subversion write access, then how I can work on *.po files? Do you mean using some console text editor or what else? I could try and see if it is something I'm able to. Regards, Stefano Palmeri > It is easier for me, as I don't have to take your translation and insert > them in the source code manually. It takes a lot of time when there are a > lot of different translations. > > Regards, From d.paleino at ...626... Sat Oct 6 16:16:47 2007 From: d.paleino at ...626... (David Paleino) Date: Sat, 6 Oct 2007 16:16:47 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061611.27030.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> <200710061342.01782.gambas@...1...> <200710061611.27030.rospolosco@...152...> Message-ID: <20071006161647.4235325d@...1597...> Il giorno Sat, 6 Oct 2007 16:11:26 +0200 Stefano Palmeri ha scritto: > > ... > Hi Stefano, > Actually, I don't know how it works. I use svn just to update the trunk... > If I had a subversion write access, then how I can work on *.po files? Do you > mean using some console text editor or what else? I could try and see if it > is something I'm able to. It's just a matter of editing the .po files as you wish, let it be nano, vim, emacs, gtranslate, kbabel, or $whatever. If you have write access to a SVN repository, you have the ability to "commit" changes into the repository, as well as adding and deleting files (I don't know if SVN has some Access Policy) After you make your changes, just do a: $ svn commit -m "My log message" And your changes will be sent to the SVN repository. > Regards, > Stefano Palmeri Kindly, David P.S.: ci conosciamo? Credo di aver gi? letto il tuo nome "in real life"... forse in SputniX? Uhm... /me pensa P.S. (non-speakers): sorry for the Italian-speaking OT :) -- . ''`. Debian maintainer | http://snipurl.com/qa_page/ : :' : Linuxer #334216 | http://www.hanskalabs.net/ `. `'` GPG: 1392B174 | http://www.debianizzati.org/ `- 2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: not available URL: From gambas at ...1... Sat Oct 6 16:32:00 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 16:32:00 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <20071006161647.4235325d@...1597...> References: <200710061140.35617.rospolosco@...152...> <200710061611.27030.rospolosco@...152...> <20071006161647.4235325d@...1597...> Message-ID: <200710061632.01051.gambas@...1...> On samedi 06 octobre 2007, David Paleino wrote: > Il giorno Sat, 6 Oct 2007 16:11:26 +0200 > > Stefano Palmeri ha scritto: > > ... > > Hi Stefano, > > > Actually, I don't know how it works. I use svn just to update the > > trunk... If I had a subversion write access, then how I can work on *.po > > files? Do you mean using some console text editor or what else? I could > > try and see if it is something I'm able to. > > It's just a matter of editing the .po files as you wish, let it be nano, > vim, emacs, gtranslate, kbabel, or $whatever. > > If you have write access to a SVN repository, you have the ability to > "commit" changes into the repository, as well as adding and deleting files > (I don't know if SVN has some Access Policy) > > After you make your changes, just do a: > > $ svn commit -m "My log message" > > And your changes will be sent to the SVN repository. > > > Regards, > > Stefano Palmeri > > Kindly, > David > > P.S.: ci conosciamo? Credo di aver gi? letto il tuo nome "in real life"... > forse in SputniX? Uhm... /me pensa > > P.S. (non-speakers): sorry for the Italian-speaking OT :) Do you know that the Gambas IDE has a translation dialog that allows you to translate any gambas project without having to edit any *.po file and run any GNU translation command? If you have a svn write access, you just have to use the IDE to translate the project, and once you have finished all your translations, you do that: $ cd /path/to/gambas/trunk $ EDITOR=kwrite svn commit ... svn will open the specified editor so that you enter the change description for this commit. See http://www.gambasdoc.org/help/howto/svn for more details, and any svn documentation for more detailed details. Regards, -- Benoit Minisini From rospolosco at ...152... Sat Oct 6 16:50:14 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 16:50:14 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061632.01051.gambas@...1...> References: <200710061140.35617.rospolosco@...152...> <20071006161647.4235325d@...1597...> <200710061632.01051.gambas@...1...> Message-ID: <200710061650.14464.rospolosco@...152...> Alle 16:32, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On samedi 06 octobre 2007, David Paleino wrote: > > Il giorno Sat, 6 Oct 2007 16:11:26 +0200 > > > > Stefano Palmeri ha scritto: > > > ... > > > > Hi Stefano, > > > > > Actually, I don't know how it works. I use svn just to update the > > > trunk... If I had a subversion write access, then how I can work on > > > *.po files? Do you mean using some console text editor or what else? I > > > could try and see if it is something I'm able to. > > > > It's just a matter of editing the .po files as you wish, let it be nano, > > vim, emacs, gtranslate, kbabel, or $whatever. > > > > If you have write access to a SVN repository, you have the ability to > > "commit" changes into the repository, as well as adding and deleting > > files (I don't know if SVN has some Access Policy) > > > > After you make your changes, just do a: > > > > $ svn commit -m "My log message" > > > > And your changes will be sent to the SVN repository. > > > > > Regards, > > > Stefano Palmeri > > > > Kindly, > > David > > > > P.S.: ci conosciamo? Credo di aver gi? letto il tuo nome "in real > > life"... forse in SputniX? Uhm... /me pensa > > > > P.S. (non-speakers): sorry for the Italian-speaking OT :) > > Do you know that the Gambas IDE has a translation dialog that allows you to > translate any gambas project without having to edit any *.po file and run > any GNU translation command? > Yes :-) I used it. So, I can make my translations in my own local trunk and then commit? OK, it seems to be easy. Thanks. If you want, you could give me a svn write access. Regards, Stefano Palmeri > If you have a svn write access, you just have to use the IDE to translate > the project, and once you have finished all your translations, you do that: > > $ cd /path/to/gambas/trunk > $ EDITOR=kwrite svn commit > ... > > svn will open the specified editor so that you enter the change description > for this commit. > > See http://www.gambasdoc.org/help/howto/svn for more details, and any svn > documentation for more detailed details. > > Regards, From gambas at ...1... Sat Oct 6 16:51:59 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 16:51:59 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061650.14464.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> <200710061632.01051.gambas@...1...> <200710061650.14464.rospolosco@...152...> Message-ID: <200710061651.59412.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > Alle 16:32, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > > On samedi 06 octobre 2007, David Paleino wrote: > > > Il giorno Sat, 6 Oct 2007 16:11:26 +0200 > > > > > > Stefano Palmeri ha scritto: > > > > ... > > > > > > Hi Stefano, > > > > > > > Actually, I don't know how it works. I use svn just to update the > > > > trunk... If I had a subversion write access, then how I can work on > > > > *.po files? Do you mean using some console text editor or what else? > > > > I could try and see if it is something I'm able to. > > > > > > It's just a matter of editing the .po files as you wish, let it be > > > nano, vim, emacs, gtranslate, kbabel, or $whatever. > > > > > > If you have write access to a SVN repository, you have the ability to > > > "commit" changes into the repository, as well as adding and deleting > > > files (I don't know if SVN has some Access Policy) > > > > > > After you make your changes, just do a: > > > > > > $ svn commit -m "My log message" > > > > > > And your changes will be sent to the SVN repository. > > > > > > > Regards, > > > > Stefano Palmeri > > > > > > Kindly, > > > David > > > > > > P.S.: ci conosciamo? Credo di aver gi? letto il tuo nome "in real > > > life"... forse in SputniX? Uhm... /me pensa > > > > > > P.S. (non-speakers): sorry for the Italian-speaking OT :) > > > > Do you know that the Gambas IDE has a translation dialog that allows you > > to translate any gambas project without having to edit any *.po file and > > run any GNU translation command? > > Yes :-) I used it. So, I can make my translations in my own local trunk and > then commit? OK, it seems to be easy. Thanks. If you want, you could > give me a svn write access. > > Regards, > > Stefano Palmeri > So you must tell me your sourceforge account. Didn't you read the "how to" page on the wiki? :-) -- Benoit Minisini From rospolosco at ...152... Sat Oct 6 16:53:12 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 16:53:12 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <20071006161647.4235325d@...1597...> References: <200710061140.35617.rospolosco@...152...> <200710061611.27030.rospolosco@...152...> <20071006161647.4235325d@...1597...> Message-ID: <200710061653.12535.rospolosco@...152...> Alle 16:16, sabato 6 ottobre 2007, David Paleino ha scritto: > Kindly, > David > > P.S.: ci conosciamo? Credo di aver gi? letto il tuo nome "in real life"... > forse in SputniX? Uhm... /me pensa > > P.S. (non-speakers): sorry for the Italian-speaking OT :) No, you probably read my name here on Gambas list or in some man page translation. :-) Ciao No. L'avrai letto qui o tra i traduttori di qualche man page. :-) From rospolosco at ...152... Sat Oct 6 17:05:00 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 17:05:00 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061651.59412.gambas@...1...> References: <200710061140.35617.rospolosco@...152...> <200710061650.14464.rospolosco@...152...> <200710061651.59412.gambas@...1...> Message-ID: <200710061705.00435.rospolosco@...152...> Alle 16:51, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > Alle 16:32, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > > > On samedi 06 octobre 2007, David Paleino wrote: > > > > Il giorno Sat, 6 Oct 2007 16:11:26 +0200 > > > > > > > > Stefano Palmeri ha scritto: > > > > > ... > > > > > > > > Hi Stefano, > > > > > > > > > Actually, I don't know how it works. I use svn just to update the > > > > > trunk... If I had a subversion write access, then how I can work on > > > > > *.po files? Do you mean using some console text editor or what > > > > > else? I could try and see if it is something I'm able to. > > > > > > > > It's just a matter of editing the .po files as you wish, let it be > > > > nano, vim, emacs, gtranslate, kbabel, or $whatever. > > > > > > > > If you have write access to a SVN repository, you have the ability to > > > > "commit" changes into the repository, as well as adding and deleting > > > > files (I don't know if SVN has some Access Policy) > > > > > > > > After you make your changes, just do a: > > > > > > > > $ svn commit -m "My log message" > > > > > > > > And your changes will be sent to the SVN repository. > > > > > > > > > Regards, > > > > > Stefano Palmeri > > > > > > > > Kindly, > > > > David > > > > > > > > P.S.: ci conosciamo? Credo di aver gi? letto il tuo nome "in real > > > > life"... forse in SputniX? Uhm... /me pensa > > > > > > > > P.S. (non-speakers): sorry for the Italian-speaking OT :) > > > > > > Do you know that the Gambas IDE has a translation dialog that allows > > > you to translate any gambas project without having to edit any *.po > > > file and run any GNU translation command? > > > > Yes :-) I used it. So, I can make my translations in my own local trunk > > and then commit? OK, it seems to be easy. Thanks. If you want, you could > > give me a svn write access. > > > > Regards, > > > > Stefano Palmeri > > So you must tell me your sourceforge account. Didn't you read the "how to" > page on the wiki? :-) Ok I read it. My sourceforge account is rospolosco. Then, please, tell me or show me a model for writing a "good log" when commit. Thanks, Stefano From rospolosco at ...152... Sat Oct 6 18:07:21 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 18:07:21 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061705.00435.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> <200710061651.59412.gambas@...1...> <200710061705.00435.rospolosco@...152...> Message-ID: <200710061807.21128.rospolosco@...152...> Alle 17:05, sabato 6 ottobre 2007, Stefano Palmeri ha scritto: > Then, please, tell me or show me a model for > writing a "good log" when commit. > > Thanks, > > Stefano I read the README.svn-commit. :-) Bye From gambas at ...1... Sat Oct 6 18:11:30 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 18:11:30 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061705.00435.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> <200710061651.59412.gambas@...1...> <200710061705.00435.rospolosco@...152...> Message-ID: <200710061811.31163.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > > Ok I read it. My sourceforge account is rospolosco. > Done. Now you have a write access! > Then, please, tell me or show me a model for > writing a "good log" when commit. This is explained somewhere in the developer mailing-list. I have updated the 'how to' page on the wiki with a paragraph on the revision log format. You should subscribe to the gambas-devel-svn mailing-list too. In the archive you will see many logs (some in the good format, other not). Regards, -- Benoit Minisini From rospolosco at ...152... Sat Oct 6 18:22:52 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 18:22:52 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061811.31163.gambas@...1...> References: <200710061140.35617.rospolosco@...152...> <200710061705.00435.rospolosco@...152...> <200710061811.31163.gambas@...1...> Message-ID: <200710061822.52871.rospolosco@...152...> Alle 18:11, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > Ok I read it. My sourceforge account is rospolosco. > > Done. Now you have a write access! > > > Then, please, tell me or show me a model for > > writing a "good log" when commit. > > This is explained somewhere in the developer mailing-list. I have updated > the 'how to' page on the wiki with a paragraph on the revision log format. > > You should subscribe to the gambas-devel-svn mailing-list too. In the > archive you will see many logs (some in the good format, other not). > > Regards, OK. Thank. I have a couple of questions, please. 1) What about the translations I sent this morning. Will you commit them or I have to commit myself? 2) The IDE translation is under [DEVELOPMENT ENVIRONMENT] log entry. What about components translation? Thanks, Stefano From gambas at ...1... Sat Oct 6 18:34:38 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 18:34:38 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061822.52871.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> <200710061811.31163.gambas@...1...> <200710061822.52871.rospolosco@...152...> Message-ID: <200710061834.38256.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > Alle 18:11, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > > Ok I read it. My sourceforge account is rospolosco. > > > > Done. Now you have a write access! > > > > > Then, please, tell me or show me a model for > > > writing a "good log" when commit. > > > > This is explained somewhere in the developer mailing-list. I have updated > > the 'how to' page on the wiki with a paragraph on the revision log > > format. > > > > You should subscribe to the gambas-devel-svn mailing-list too. In the > > archive you will see many logs (some in the good format, other not). > > > > Regards, > > OK. Thank. I have a couple of questions, please. > > 1) What about the translations I sent this morning. > Will you commit them or I have to commit myself? Do that yourself, this way you will be trained. :-) > > 2) The IDE translation is under [DEVELOPMENT ENVIRONMENT] log > entry. What about components translation? Under the component slot. For example [GB.FORM] for the translation of the gb.form component. Regards, -- Benoit Minisini From rospolosco at ...152... Sat Oct 6 19:56:40 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 19:56:40 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061834.38256.gambas@...1...> References: <200710061140.35617.rospolosco@...152...> <200710061822.52871.rospolosco@...152...> <200710061834.38256.gambas@...1...> Message-ID: <200710061956.40771.rospolosco@...152...> Alle 18:34, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > Alle 18:11, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > > > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > > > Ok I read it. My sourceforge account is rospolosco. > > > > > > Done. Now you have a write access! > > > > > > > Then, please, tell me or show me a model for > > > > writing a "good log" when commit. > > > > > > This is explained somewhere in the developer mailing-list. I have > > > updated the 'how to' page on the wiki with a paragraph on the revision > > > log format. > > > > > > You should subscribe to the gambas-devel-svn mailing-list too. In the > > > archive you will see many logs (some in the good format, other not). > > > > > > Regards, > > > > OK. Thank. I have a couple of questions, please. > > > > 1) What about the translations I sent this morning. > > Will you commit them or I have to commit myself? > > Do that yourself, this way you will be trained. :-) > OK. Just done. I hope everything is good. I noticed a strange thing while commit. svn added some en_US.po file that I didn't work on. I just work on italian translations. Is it normal? Regards, Stefano Palmeri > > 2) The IDE translation is under [DEVELOPMENT ENVIRONMENT] log > > entry. What about components translation? > > Under the component slot. For example [GB.FORM] for the translation of the > gb.form component. > > Regards, From gambas at ...1... Sat Oct 6 20:13:56 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 20:13:56 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710061956.40771.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> <200710061834.38256.gambas@...1...> <200710061956.40771.rospolosco@...152...> Message-ID: <200710062013.57028.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > > OK. Just done. I hope everything is good. I noticed a > strange thing while commit. svn added some en_US.po file that > I didn't work on. I just work on italian translations. Is it normal? > > Regards, > > Stefano Palmeri > It is as if you added explicitely the 'English (U.S.A.)' language in the translation dialog. Did you do that? Anyway, it is kust a matter of removing it from the translation dialog. Regards, -- Benoit Minisini From rospolosco at ...152... Sat Oct 6 20:23:29 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sat, 6 Oct 2007 20:23:29 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710062013.57028.gambas@...1...> References: <200710061140.35617.rospolosco@...152...> <200710061956.40771.rospolosco@...152...> <200710062013.57028.gambas@...1...> Message-ID: <200710062023.29602.rospolosco@...152...> Alle 20:13, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > OK. Just done. I hope everything is good. I noticed a > > strange thing while commit. svn added some en_US.po file that > > I didn't work on. I just work on italian translations. Is it normal? > > > > Regards, > > > > Stefano Palmeri > > It is as if you added explicitely the 'English (U.S.A.)' language in the > translation dialog. Did you do that? > > Anyway, it is kust a matter of removing it from the translation dialog. > > Regards, Aaarrghh. I know what happened. I used my Gambas2 with en_US language interface. Ok, from now on I will use the italian language when translating. But the italian *.po files were correctly committed, I think. Sorry, if I caused some problem. Tell me if I have to do something now. Thanks, Stefano From gambas at ...1... Sat Oct 6 20:25:46 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 6 Oct 2007 20:25:46 +0200 Subject: [Gambas-user] italian translation --- IDE + components In-Reply-To: <200710062023.29602.rospolosco@...152...> References: <200710061140.35617.rospolosco@...152...> <200710062013.57028.gambas@...1...> <200710062023.29602.rospolosco@...152...> Message-ID: <200710062025.46256.gambas@...1...> On samedi 06 octobre 2007, Stefano Palmeri wrote: > Alle 20:13, sabato 6 ottobre 2007, Benoit Minisini ha scritto: > > On samedi 06 octobre 2007, Stefano Palmeri wrote: > > > OK. Just done. I hope everything is good. I noticed a > > > strange thing while commit. svn added some en_US.po file that > > > I didn't work on. I just work on italian translations. Is it normal? > > > > > > Regards, > > > > > > Stefano Palmeri > > > > It is as if you added explicitely the 'English (U.S.A.)' language in the > > translation dialog. Did you do that? > > > > Anyway, it is kust a matter of removing it from the translation dialog. > > > > Regards, > > Aaarrghh. I know what happened. > > I used my Gambas2 with en_US language interface. > > Ok, from now on I will use the italian language when translating. But the > italian *.po files were correctly committed, I think. > > Sorry, if I caused some problem. Tell me if I have to do something now. > > Thanks, > > Stefano > Actually is it more the translation dialog fault: it starts up on the current language, and apparently does not remove the void translation that could have been created. There is something better to do there... -- Benoit Minisini From gnu.linux at ...18... Sun Oct 7 12:04:50 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Sun, 07 Oct 2007 12:04:50 +0200 Subject: [Gambas-user] individual program icon Message-ID: <20071007100450.99090@...18...> Hi gambas-folks! I hope i am welcome to your mailing list and that i don't bug you =:-) I am a 21 year old german it specialist and for almost a couple of weeks i started reading the book "a beginner's guide to gambas". I want to say that programming and learning with gambas (especially under linux) makes a lot of fun and the previous night i programmed my first useful program :) But i have one big problem: I want to create a individual program-icon for my application. I created a icon with the gambas icon-editor and gave it the same name as the program. But when i use the wizard for creating an "installation package" (for debian) everything goes all right. But after the installation of my program the standard gambas-mascot-icon appears. Can anyone give me a hand? Best Regards. Frank. PS.: I hope you can understand my english =:-) -- Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten Browser-Versionen downloaden: http://www.gmx.net/de/go/browser From rgx at ...17... Sun Oct 7 13:00:10 2007 From: rgx at ...17... (RalfGesellensetter) Date: Sun, 7 Oct 2007 13:00:10 +0200 Subject: [Gambas-user] Persistent drawings? => Cached In-Reply-To: <7259b5ae0710050550k50ea7096pb77a4ade00871294@...627...> References: <200710051440.32293.rgx@...17...> <7259b5ae0710050550k50ea7096pb77a4ade00871294@...627...> Message-ID: <200710071300.10773.rgx@...17...> Am Freitag, 5. Oktober 2007 14:50:43 schrieb Daniel Campos: > Set the "Cached" property of the DrawingArea to TRUE. Thanks, this is what I wanted. I unchecked "cached" because seemingly this led to non-working drawing, because it takes "REFRESH" to make results visible! In this context: Can I just UNDO the last drawing command - or use a 2nd layer (transparent drawingarea) to display temporary stuff? Cheers ralf From dcamposf at ...626... Sun Oct 7 17:01:45 2007 From: dcamposf at ...626... (Daniel Campos) Date: Sun, 7 Oct 2007 17:01:45 +0200 Subject: [Gambas-user] Persistent drawings? => Cached In-Reply-To: <200710071300.10773.rgx@...17...> References: <200710051440.32293.rgx@...17...> <7259b5ae0710050550k50ea7096pb77a4ade00871294@...627...> <200710071300.10773.rgx@...17...> Message-ID: <7259b5ae0710070801s2d31e33bre475df2827678885@...627...> > In this context: Can I just UNDO the last drawing command - or use a 2nd layer > (transparent drawingarea) to display temporary stuff? > Mmh... you can not undo disrectly, but you can draw on a Picture (or more than one), and then paint thes Pictures on the DrawingArea as you need, that way you can implement as much internal buffers as you want with different contents, it is limited only by the spped you need for the process. Daniel > Cheers > ralf > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From dcamposf at ...626... Sun Oct 7 17:02:52 2007 From: dcamposf at ...626... (Daniel Campos) Date: Sun, 7 Oct 2007 17:02:52 +0200 Subject: [Gambas-user] Persistent drawings? => Cached In-Reply-To: <7259b5ae0710070801s2d31e33bre475df2827678885@...627...> References: <200710051440.32293.rgx@...17...> <7259b5ae0710050550k50ea7096pb77a4ade00871294@...627...> <200710071300.10773.rgx@...17...> <7259b5ae0710070801s2d31e33bre475df2827678885@...627...> Message-ID: <7259b5ae0710070802q6ea0aaf1n343d4fa14d87deb@...627...> Sorry for the big number of mistakes, I think my hands were on hollydays today :-) 2007/10/7, Daniel Campos : > > In this context: Can I just UNDO the last drawing command - or use a 2nd layer > > (transparent drawingarea) to display temporary stuff? > > > > Mmh... you can not undo disrectly, but you can draw on a Picture (or > more than one), and then paint thes Pictures on the DrawingArea as you > need, that way you can implement as much internal buffers as you want > with different contents, it is limited only by the spped you need for > the process. > > Daniel > > > Cheers > > ralf > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > From rgx at ...17... Sun Oct 7 17:21:39 2007 From: rgx at ...17... (RalfGesellensetter) Date: Sun, 7 Oct 2007 17:21:39 +0200 Subject: [Gambas-user] Persistent drawings? => Cached In-Reply-To: <7259b5ae0710070801s2d31e33bre475df2827678885@...627...> References: <200710051440.32293.rgx@...17...> <200710071300.10773.rgx@...17...> <7259b5ae0710070801s2d31e33bre475df2827678885@...627...> Message-ID: <200710071721.40071.rgx@...17...> Am Sonntag 07 Oktober 2007 17:01 schrieb Daniel Campos: > you can draw on a Picture (or > more than one), and then paint thes Pictures on the DrawingArea as > you need, Thanks, this means, I use one layer TEMP to draw, and yet another layer FINAL to 'commit' my change, rollbacks can be done by drawing FINAL onto TEMP. I will try this later. Maybe some "copy" or "assignment" command should be preferred to drawImage(Image) here. Regards Ralf From dcamposf at ...626... Sun Oct 7 18:50:59 2007 From: dcamposf at ...626... (Daniel Campos) Date: Sun, 7 Oct 2007 18:50:59 +0200 Subject: [Gambas-user] Persistent drawings? => Cached In-Reply-To: <200710071721.40071.rgx@...17...> References: <200710051440.32293.rgx@...17...> <200710071300.10773.rgx@...17...> <7259b5ae0710070801s2d31e33bre475df2827678885@...627...> <200710071721.40071.rgx@...17...> Message-ID: <7259b5ae0710070950j4904e000h58c5ccaaca2989e8@...627...> > > I will try this later. Maybe some "copy" or "assignment" command should > be preferred to drawImage(Image) here. > It is really easy to implement in your program: create an "Utils" class with following content: STATIC PUBLIC SUB Copy(hDraw AS DrawingArea, hPic AS Picture) Draw.Begin(hDraw) Draw.Picture(hPic, 0, 0) Draw.End() END Then call it when you need it: Utils.Copy(MyDrawingArea,MyPicture) Isn't it? :-) Daniel From gnu.linux at ...18... Sun Oct 7 20:35:08 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Sun, 07 Oct 2007 20:35:08 +0200 Subject: [Gambas-user] individual program icon In-Reply-To: <20071007100450.99090@...18...> References: <20071007100450.99090@...18...> Message-ID: <20071007183508.238080@...18...> Hi gambas-fans, after I searched the whole day for setting an individual program icon and finally for 5 minutes i got the solution. I just have to select the icon in the project properties. :) But i think that isn't hot news for you. Best Regards, Frank. -------- Original-Nachricht -------- Datum: Sun, 07 Oct 2007 12:04:50 +0200 Von: gnu.linux at ...18... An: gambas-user at lists.sourceforge.net Betreff: [Gambas-user] individual program icon Hi gambas-folks! I hope i am welcome to your mailing list and that i don't bug you =:-) I am a 21 year old german it specialist and for almost a couple of weeks i started reading the book "a beginner's guide to gambas". I want to say that programming and learning with gambas (especially under linux) makes a lot of fun and the previous night i programmed my first useful program :) But i have one big problem: I want to create a individual program-icon for my application. I created a icon with the gambas icon-editor and gave it the same name as the program. But when i use the wizard for creating an "installation package" (for debian) everything goes all right. But after the installation of my program the standard gambas-mascot-icon appears. Can anyone give me a hand? Best Regards. Frank. PS.: I hope you can understand my english =:-) -- Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten Browser-Versionen downloaden: http://www.gmx.net/de/go/browser ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user -- Psssst! Schon vom neuen GMX MultiMessenger geh?rt? Der kanns mit allen: http://www.gmx.net/de/go/multimessenger From rospolosco at ...152... Mon Oct 8 12:18:38 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Mon, 8 Oct 2007 12:18:38 +0200 Subject: [Gambas-user] Autotools installation package bug? Message-ID: <200710081218.38759.rospolosco@...152...> Hi. I tried to make an Autotool installation package of a project. The packager wizard exits with this error: Creating package for Autotools. Making build directory. The package build has failed. Package.MakeAutotoolsPackage.995: File or directory does not exist Gambas2 rev. 705. Regards, Stefano Palmeri From gambas at ...1... Mon Oct 8 13:07:07 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 8 Oct 2007 13:07:07 +0200 Subject: [Gambas-user] Autotools installation package bug? In-Reply-To: <200710081218.38759.rospolosco@...152...> References: <200710081218.38759.rospolosco@...152...> Message-ID: <200710081307.07810.gambas@...1...> On lundi 08 octobre 2007, Stefano Palmeri wrote: > Hi. > > I tried to make an Autotool installation package of a project. > The packager wizard exits with this error: > > Creating package for Autotools. > Making build directory. > The package build has failed. > Package.MakeAutotoolsPackage.995: File or directory does not exist > > > Gambas2 rev. 705. > > Regards, > > Stefano Palmeri > Actually this is a stupid feature in the archiver. This is fixed in the last revision, but you must do a compilation and an installation again. Regards, -- Benoit Minisini From charles at ...1784... Tue Oct 9 07:38:07 2007 From: charles at ...1784... (charlesg) Date: Mon, 8 Oct 2007 22:38:07 -0700 (PDT) Subject: [Gambas-user] Gambas2, GTK and printing Message-ID: <13063990.post@...1379...> Wow! I'm lost! Gambas 1.9.50, Ubuntu 7.04. >From the forum I cannot for the life of me work out whether it is possible yet to draw to a printer using 'GTK+ graphical application' If it is I would be very grateful if someone could list a simple program to print 'hello' to a printer. rgds -- View this message in context: http://www.nabble.com/Gambas2%2C-GTK-and-printing-tf4576636.html#a13063990 Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Tue Oct 9 08:59:02 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 9 Oct 2007 08:59:02 +0200 Subject: [Gambas-user] Gambas2, GTK and printing In-Reply-To: <13063990.post@...1379...> References: <13063990.post@...1379...> Message-ID: <200710090859.02183.gambas@...1...> On mardi 09 octobre 2007, charlesg wrote: > Wow! I'm lost! > > Gambas 1.9.50, Ubuntu 7.04. > > >From the forum I cannot for the life of me work out whether it is possible > > yet to draw to a printer using 'GTK+ graphical application' > > If it is I would be very grateful if someone could list a simple program to > print 'hello' to a printer. > > rgds Printing with GTK+ is done by the Cairo library, which is not yet available in Gambas. This is a thing that needs to be implemented yet... Regards, -- Benoit Minisini From cclark at ...1783... Tue Oct 9 15:56:12 2007 From: cclark at ...1783... (Colin Clark) Date: Tue, 09 Oct 2007 14:56:12 +0100 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <200710051337.26957.steven@...1652...> References: <13022691.post@...1379...> <470532A2.9020403@...1783...> <200710050108.38692.gambas@...1...> <200710051337.26957.steven@...1652...> Message-ID: <470B887C.20207@...1783...> Steven Lobbezoo wrote: > Le vendredi 5 octobre 2007 01:08, Benoit Minisini a ?crit : > >> On jeudi 04 octobre 2007, Colin Clark wrote: >> >>> Benoit Minisini wrote: >>> >>>> On jeudi 04 octobre 2007, Colin Clark wrote: >>>> >>>>> Benoit Minisini wrote: >>>>> >>>>>> On mercredi 03 octobre 2007, Colin Clark wrote: >>>>>> >>>>>>> I'm using the 1.9.51 version of Gambas. >>>>>>> >>>>>>> >>> Colin Clark >>> >> It should not... Strange... Which KDE style do you use? >> > > I have the same (since I installed Suse 10.2). I donnot use KDE, but work with > gnome. KDE is installed however. > > Steven > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > Hello Steven When I use this feature the cursor flickers, and so do other items on the desktop, so I assume something is taking the focus away from that window. I don't know how to find where the problem is, so as a work-around I use a MessageBox instead of the Balloon. The change is in : gambas2-1.9.90/app/src/gambas2/FDebugInfo.class And the change is: PRIVATE SUB ShowAsBalloon(sMsg AS String) DIM hIcon AS Picture sMsg = Replace(sMsg, "\t", "\n") sMsg = Replace(sMsg, " ", " ") sMsg = Replace(sMsg, "&", "&") sMsg = Replace(sMsg, "<", "<") sMsg = Replace(sMsg, ">", ">") IF Left(sMsg) = "!" THEN sMsg = Mid$(sMsg, 2) hIcon = Picture["icon:/32/error"] ELSE hIcon = Picture["icon:/32/info"] ENDIF 'Balloon(sMsg, objForm, hIcon, Mouse.ScreenX - objForm.ScreenX, Mouse.ScreenY - objForm.ScreenY) ' Balloon(sMsg, Design.BalloonControl, hIcon, Design.BalloonX, Design.BalloonY) 'Use a MessageBox instead Message.Info(sMsg) END Colin Clark From gambas at ...1... Tue Oct 9 16:04:19 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 9 Oct 2007 16:04:19 +0200 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <470B887C.20207@...1783...> References: <13022691.post@...1379...> <200710051337.26957.steven@...1652...> <470B887C.20207@...1783...> Message-ID: <200710091604.19639.gambas@...1...> On mardi 09 octobre 2007, Colin Clark wrote: > Steven Lobbezoo wrote: > > Le vendredi 5 octobre 2007 01:08, Benoit Minisini a ?crit : > >> On jeudi 04 octobre 2007, Colin Clark wrote: > >>> Benoit Minisini wrote: > >>>> On jeudi 04 octobre 2007, Colin Clark wrote: > >>>>> Benoit Minisini wrote: > >>>>>> On mercredi 03 octobre 2007, Colin Clark wrote: > >>>>>>> I'm using the 1.9.51 version of Gambas. > >>> > >>> Colin Clark > >> > >> It should not... Strange... Which KDE style do you use? > > > > I have the same (since I installed Suse 10.2). I donnot use KDE, but work > > with gnome. KDE is installed however. > > > > Steven > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Hello Steven > > When I use this feature the cursor flickers, and so do other items on > the desktop, so I assume something is taking the focus away from that > window. > I don't know how to find where the problem is, so as a work-around I use > a MessageBox instead of the Balloon. > > The change is in : > > gambas2-1.9.90/app/src/gambas2/FDebugInfo.class > > And the change is: > > PRIVATE SUB ShowAsBalloon(sMsg AS String) > > DIM hIcon AS Picture > > sMsg = Replace(sMsg, "\t", "\n") > sMsg = Replace(sMsg, " ", " ") > sMsg = Replace(sMsg, "&", "&") > sMsg = Replace(sMsg, "<", "<") > sMsg = Replace(sMsg, ">", ">") > > IF Left(sMsg) = "!" THEN > sMsg = Mid$(sMsg, 2) > hIcon = Picture["icon:/32/error"] > ELSE > hIcon = Picture["icon:/32/info"] > ENDIF > > 'Balloon(sMsg, objForm, hIcon, Mouse.ScreenX - objForm.ScreenX, > Mouse.ScreenY - objForm.ScreenY) > ' Balloon(sMsg, Design.BalloonControl, hIcon, Design.BalloonX, > Design.BalloonY) > 'Use a MessageBox instead > Message.Info(sMsg) > > END > > > Colin Clark > It seems to be a problem with the window-manager. I will try with Gnome & Metacity if it happens the same thing. Matacity is known to not respect all the freedesktop window-manager specifications. Regards, -- Benoit Minisini From david_villalobos_c at ...43... Tue Oct 9 16:41:42 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 9 Oct 2007 07:41:42 -0700 (PDT) Subject: [Gambas-user] Events Message-ID: <855721.7201.qm@...1781...> Hi all, I want to know if I can create a event with Gambas, for example add the event click to a object that do not have it? Can someone explaime how Gambas deals with events Best regards David ____________________________________________________________________________________ Pinpoint customers who are looking for what you sell. http://searchmarketing.yahoo.com/ From steven at ...1652... Tue Oct 9 16:51:28 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 9 Oct 2007 16:51:28 +0200 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <470B887C.20207@...1783...> References: <13022691.post@...1379...> <200710051337.26957.steven@...1652...> <470B887C.20207@...1783...> Message-ID: <200710091651.28691.steven@...1652...> Le mardi 9 octobre 2007 15:56, Colin Clark a ?crit?: > Steven Lobbezoo wrote: > > Le vendredi 5 octobre 2007 01:08, Benoit Minisini a ?crit : > >> On jeudi 04 octobre 2007, Colin Clark wrote: > >>> Benoit Minisini wrote: > >>>> On jeudi 04 octobre 2007, Colin Clark wrote: > >>>>> Benoit Minisini wrote: > >>>>>> On mercredi 03 octobre 2007, Colin Clark wrote: > >>>>>>> I'm using the 1.9.51 version of Gambas. > >>> > >>> Colin Clark > >> > >> It should not... Strange... Which KDE style do you use? > > > > I have the same (since I installed Suse 10.2). I donnot use KDE, but work > > with gnome. KDE is installed however. > > > > Steven > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Hello Steven > > When I use this feature the cursor flickers, and so do other items on > the desktop, so I assume something is taking the focus away from that > window. > I don't know how to find where the problem is, so as a work-around I use > a MessageBox instead of the Balloon. > > The change is in : > > gambas2-1.9.90/app/src/gambas2/FDebugInfo.class > > And the change is: > > PRIVATE SUB ShowAsBalloon(sMsg AS String) > > DIM hIcon AS Picture > > sMsg = Replace(sMsg, "\t", "\n") > sMsg = Replace(sMsg, " ", " ") > sMsg = Replace(sMsg, "&", "&") > sMsg = Replace(sMsg, "<", "<") > sMsg = Replace(sMsg, ">", ">") > > IF Left(sMsg) = "!" THEN > sMsg = Mid$(sMsg, 2) > hIcon = Picture["icon:/32/error"] > ELSE > hIcon = Picture["icon:/32/info"] > ENDIF > > 'Balloon(sMsg, objForm, hIcon, Mouse.ScreenX - objForm.ScreenX, > Mouse.ScreenY - objForm.ScreenY) > ' Balloon(sMsg, Design.BalloonControl, hIcon, Design.BalloonX, > Design.BalloonY) > 'Use a MessageBox instead > Message.Info(sMsg) > > END > > > Colin Clark > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user Hi, I can see that the info is displayed for a VERY short moment. So it works, but just far to fast. Steven From cclark at ...1783... Wed Oct 10 12:21:57 2007 From: cclark at ...1783... (Colin Clark) Date: Wed, 10 Oct 2007 03:21:57 -0700 (PDT) Subject: [Gambas-user] Debugger: Watch history Message-ID: <13133153.post@...1379...> When using the debugger I find that the list of variables I am Watching is not remembered from run to run. In the file: gambas2-1.9.90/app/src/gambas2/FDebugInfo.class In the procedure: PUBLIC SUB ReadWatchSettings() Should the order of the following two lines be reversed? IF sString THEN sString = Project.Config[sFlag &/ "Watch[" & CStr(iInd) & "]"] Colin Clark -- View this message in context: http://www.nabble.com/Debugger%3A-Watch-history-tf4599922.html#a13133153 Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Wed Oct 10 12:31:53 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 10 Oct 2007 12:31:53 +0200 Subject: [Gambas-user] Debugger: Watch history In-Reply-To: <13133153.post@...1379...> References: <13133153.post@...1379...> Message-ID: <200710101231.53379.gambas@...1...> On mercredi 10 octobre 2007, Colin Clark wrote: > When using the debugger I find that the list of variables I am Watching is > not remembered from run to run. > > In the file: > gambas2-1.9.90/app/src/gambas2/FDebugInfo.class > > In the procedure: > PUBLIC SUB ReadWatchSettings() > > Should the order of the following two lines be reversed? > IF sString THEN > sString = Project.Config[sFlag &/ "Watch[" & CStr(iInd) & "]"] > > > Colin Clark Indeed. I will fix that in the next revision. Regards, -- Benoit Minisini From gambas at ...1... Wed Oct 10 12:37:43 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 10 Oct 2007 12:37:43 +0200 Subject: [Gambas-user] Events In-Reply-To: <855721.7201.qm@...1781...> References: <855721.7201.qm@...1781...> Message-ID: <200710101237.43550.gambas@...1...> On mardi 09 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > I want to know if I can create a event with Gambas, for example add the > event click to a object that do not have it? > > Can someone explaime how Gambas deals with events > > Best regards > > David > I'm speaking about the development version: In a few words, you can create any events you want in Gambas. You cannot add a new event declaration to an already existing class. But you can use inheritance for that. You can use the Observer() class too: it allows you to intercept events sent by an object before the event handlers get them. You should read "The Gambas Object Model" page on the wiki documentation, and take a look at all event-related functions in the language documentation. Look at the Observer class documentation too. Regards, -- Benoit Minisini From david_villalobos_c at ...43... Wed Oct 10 14:13:15 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 10 Oct 2007 05:13:15 -0700 (PDT) Subject: [Gambas-user] Events Message-ID: <221431.99271.qm@...1781...> Great! I?ll check David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Wednesday, October 10, 2007 4:37:43 AM Subject: Re: [Gambas-user] Events On mardi 09 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > I want to know if I can create a event with Gambas, for example add the > event click to a object that do not have it? > > Can someone explaime how Gambas deals with events > > Best regards > > David > I'm speaking about the development version: In a few words, you can create any events you want in Gambas. You cannot add a new event declaration to an already existing class. But you can use inheritance for that. You can use the Observer() class too: it allows you to intercept events sent by an object before the event handlers get them. You should read "The Gambas Object Model" page on the wiki documentation, and take a look at all event-related functions in the language documentation. Look at the Observer class documentation too. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Yahoo! oneSearch: Finally, mobile search that gives answers, not web links. http://mobile.yahoo.com/mobileweb/onesearch?refer=1ONXIC From david_villalobos_c at ...43... Thu Oct 11 15:16:20 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Thu, 11 Oct 2007 06:16:20 -0700 (PDT) Subject: [Gambas-user] Connections using gb.db.form Message-ID: <373086.24431.qm@...1657...> Hi all, Can gb.db.form deals with two or more connections? I mean, can I have a DataSource pointing to the database Test1 and other pointing to Test2? I tried to make it, but I got the same result on both DataSources. Regards David ____________________________________________________________________________________ Be a better Heartthrob. Get better relationship answers from someone who knows. Yahoo! Answers - Check it out. http://answers.yahoo.com/dir/?link=list&sid=396545433 From david_villalobos_c at ...43... Thu Oct 11 15:51:04 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Thu, 11 Oct 2007 06:51:04 -0700 (PDT) Subject: [Gambas-user] Message to Fabien Bodard Message-ID: <82053.98342.qm@...1782...> Hi all, Hi Fabien Bodard, gambasdoc.org says that you wrote the page: http://www.gambasdoc.org/help/doc/namingconvention, but there is anotherone called: http://www.gambasdoc.org/help/doc/naming, I think they are very related, so maybe you can make some modifications, I wanted to do it, but I prefer to tell you, since it was written for you. Best regards David ____________________________________________________________________________________ Fussy? Opinionated? Impossible to please? Perfect. Join Yahoo!'s user panel and lay it on us. http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 From gambas.fr at ...626... Thu Oct 11 21:52:57 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Thu, 11 Oct 2007 21:52:57 +0200 Subject: [Gambas-user] Message to Fabien Bodard In-Reply-To: <82053.98342.qm@...1782...> References: <82053.98342.qm@...1782...> Message-ID: <6324a42a0710111252o203ff7aek84ad109c3a81c6f4@...627...> Mine is more older but i will synchronize it with the Benoit's one 2007/10/11, David Villalobos Cambronero : > > Hi all, > > Hi Fabien Bodard, gambasdoc.org says that you wrote the page: > http://www.gambasdoc.org/help/doc/namingconvention, but there is > anotherone called: http://www.gambasdoc.org/help/doc/naming, I think they > are very related, so maybe you can make some modifications, I wanted to do > it, but I prefer to tell you, since it was written for you. > > Best regards > > David > > > > > > ____________________________________________________________________________________ > Fussy? Opinionated? Impossible to please? Perfect. Join Yahoo!'s user > panel and lay it on us. > http://surveylink.yahoo.com/gmrs/yahoo_panel_invite.asp?a=7 > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Fri Oct 12 00:01:46 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 12 Oct 2007 00:01:46 +0200 Subject: [Gambas-user] Connections using gb.db.form In-Reply-To: <373086.24431.qm@...1657...> References: <373086.24431.qm@...1657...> Message-ID: <200710120001.46920.gambas@...1...> On jeudi 11 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > Can gb.db.form deals with two or more connections? I mean, can I have a > DataSource pointing to the database Test1 and other pointing to Test2? > > I tried to make it, but I got the same result on both DataSources. > > Regards > > David > This is not possible at the moment. This will be implemented after the 2.0. Bad luck! :-) -- Benoit Minisini From david_villalobos_c at ...43... Fri Oct 12 01:42:41 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Thu, 11 Oct 2007 16:42:41 -0700 (PDT) Subject: [Gambas-user] Connections using gb.db.form Message-ID: <116858.40020.qm@...1656...> Great!!! I just want to know, since I writting some pages for the wiki... ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Thursday, October 11, 2007 4:01:46 PM Subject: Re: [Gambas-user] Connections using gb.db.form On jeudi 11 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > Can gb.db.form deals with two or more connections? I mean, can I have a > DataSource pointing to the database Test1 and other pointing to Test2? > > I tried to make it, but I got the same result on both DataSources. > > Regards > > David > This is not possible at the moment. This will be implemented after the 2.0. Bad luck! :-) -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Tonight's top picks. What will you watch tonight? Preview the hottest shows on Yahoo! TV. http://tv.yahoo.com/ From rospolosco at ...152... Fri Oct 12 11:05:42 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 12 Oct 2007 11:05:42 +0200 Subject: [Gambas-user] please put gambas1 help somewhere on line. Message-ID: <200710121105.42237.rospolosco@...152...> Hi, Benoit. When I discovered Gambas the included help helped me a lot. I mean the attached file. Now I see that in Gambas2 there's not something similar (or I miss it). But that kind of help is very useful. Imagine a 13 years old boy/girl that wants to learn Gambas2. So I'm asking to put that help with those easy examples somewhere online, even warning that it refers on Gambas1 and some examples are outdated. But, please believe me, that page (attached) is very very very useful for newbies. Thanks. Best regards, Stefano Palmeri From smiefert at ...784... Fri Oct 12 11:11:11 2007 From: smiefert at ...784... (smiefert at ...784...) Date: 12 Oct 2007 09:11:11 UT Subject: [Gambas-user] Catch close event? Message-ID: PUBLIC SUB Form_Close() message.Warning("Wnat to close this App?", "Yes", "Cancel") END how can i catch the closing? From gambas at ...1... Fri Oct 12 11:42:15 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 12 Oct 2007 11:42:15 +0200 Subject: [Gambas-user] please put gambas1 help somewhere on line. In-Reply-To: <200710121105.42237.rospolosco@...152...> References: <200710121105.42237.rospolosco@...152...> Message-ID: <200710121142.15924.gambas@...1...> On vendredi 12 octobre 2007, Stefano Palmeri wrote: > Hi, Benoit. > > When I discovered Gambas the included help helped me a lot. > I mean the attached file. Now I see that in Gambas2 there's not > something similar (or I miss it). But that kind of help is very useful. > Imagine a 13 years old boy/girl that wants to learn Gambas2. > So I'm asking to put that help with those easy examples somewhere online, > even warning that it refers on Gambas1 and some examples are outdated. But, > please believe me, that page (attached) is very very very useful for > newbies. Thanks. > > Best regards, > > Stefano Palmeri ??? To get the included help, just press F1 in the IDE. That didn't change since Gambas 1. Regards, -- Benoit Minisini From rospolosco at ...152... Fri Oct 12 12:04:55 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 12 Oct 2007 12:04:55 +0200 Subject: [Gambas-user] please put gambas1 help somewhere on line. In-Reply-To: <200710121142.15924.gambas@...1...> References: <200710121105.42237.rospolosco@...152...> <200710121142.15924.gambas@...1...> Message-ID: <200710121204.56072.rospolosco@...152...> Alle 11:42, venerd? 12 ottobre 2007, Benoit Minisini ha scritto: > On vendredi 12 octobre 2007, Stefano Palmeri wrote: > > Hi, Benoit. > > > > When I discovered Gambas the included help helped me a lot. > > I mean the attached file. Now I see that in Gambas2 there's not > > something similar (or I miss it). But that kind of help is very useful. > > Imagine a 13 years old boy/girl that wants to learn Gambas2. > > So I'm asking to put that help with those easy examples somewhere online, > > even warning that it refers on Gambas1 and some examples are outdated. > > But, please believe me, that page (attached) is very very very useful for > > newbies. Thanks. > > > > Best regards, > > > > Stefano Palmeri > > ??? > > To get the included help, just press F1 in the IDE. That didn't change > since Gambas 1. > > Regards, Where are these following items in Gambas2 help? In Gambas1 help they are under How do I..., but I can't find those in Gambas2. They are very useful. ---------------------------------------------------------------------------------------- The Easy Gambas Documentation It is still under construction, feel invited to use the edit-buttton :-) How to ... ...say "Hello World"? ...get familiar with Gambas? How does Gambas work? Events Mouseevents ...use the Button Argument ...use MouseDown, MouseMove and MouseUp ...get the position of the mouse Files ... open a file ... load and save files ...save and open files with a dialog ... load and save files with selfdefined datatypes ...make a new form from the same class ? OOP Do not fear the OOP ...transport data from one form to the other? ...make an object of a class? ...make more than one object of a class? ...use constructors? ...pass a value? ...use OPTIONAL parameters? ...make a function? ...use local and global variables? ...use PRIVATE and PUBLIC variables? ...use Modules? ...make a new form from the same class ? Ccar.class Variables Arrays ... make an Array ... make an Array of a selfdefined Datatype ...make a multidimensional Array? Collections ... make a Collection Converting Variables ... convert Strings to Integer with CInt() ... convert Variables to String with CStr() and Str() ... convert Strings with Val() Strings ... catenate strings ... divide a string into single characters ... divide a string into single words ... compare strings with 'LIKE' ...manipulate strings? ...convert strings to integers? ...convert other datatypes to strings? Widgets Boxes ... make a combobox ... make a listbox Buttons ...draw a picture on buttons? ...make radiobuttons? ...organize groups of radiobuttons? ...make checkboxes? ... make a button by code? Drawing Areas ...draw some figures? ...draw a transparent picture over a background? ...draw ? ...change the scale of a drawing area ? ...use RGB Colours Forms ...open a new Form/Window? ...open a modal Form? GridViews ...make a gridview? Menus ...make a Menu? Messages ...make Messages? ProgressBars ...use a ProgressBar? TextLabels ...format text in TextLabels? Timer ...make a timer? Miscellaneous ... start a gambas program with arguments ... execute programs via gambas ...convert my VB projects to Gambas? ...drag and drop ? ...draw a mathematical function ? ...use the clipboard ? ...use the IF/THEN keywords? ...use SELECT and CASE? ...use REPEAT/UNTIL loops? ...use DO WHILE loops? ...use WHILE/WEND loops? ...write FOR loops? ...use Databases with gambas? From rospolosco at ...152... Fri Oct 12 12:27:46 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 12 Oct 2007 12:27:46 +0200 Subject: [Gambas-user] Catch close event? In-Reply-To: References: Message-ID: <200710121227.46439.rospolosco@...152...> Alle 11:11, venerd? 12 ottobre 2007, smiefert at ...784... ha scritto: > PUBLIC SUB Form_Close() > > message.Warning("Wnat to close this App?", "Yes", "Cancel") ? > > END I'm sure it could be done much better... PUBLIC SUB Form_Close() SELECT message.Warning("Wnat to close this App?", "Yes", "Cancel") CASE 1 PRINT "I'm closed!" END SELECT END Stefano From rospolosco at ...152... Fri Oct 12 12:42:37 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 12 Oct 2007 12:42:37 +0200 Subject: [Gambas-user] Catch close event? In-Reply-To: <200710121227.46439.rospolosco@...152...> References: <200710121227.46439.rospolosco@...152...> Message-ID: <200710121242.38088.rospolosco@...152...> Alle 12:27, venerd? 12 ottobre 2007, Stefano Palmeri ha scritto: > Alle 11:11, venerd? 12 ottobre 2007, smiefert at ...784... ha scritto: > > PUBLIC SUB Form_Close() > > > > message.Warning("Wnat to close this App?", "Yes", "Cancel") ? > > > > END I forgot CASE 2 PUBLIC SUB Form_Close() SELECT message.Warning("Wnat to close this App?", "Yes", "Cancel") CASE 1 PRINT "I'm closed!" CASE 2 STOP EVENT END SELECT END > > I'm sure it could be done much better... > > > PUBLIC SUB Form_Close() > > SELECT message.Warning("Wnat to close this App?", "Yes", "Cancel") > > CASE 1 > PRINT "I'm closed!" > > END SELECT > > END > > > Stefano > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From david_villalobos_c at ...43... Fri Oct 12 14:18:27 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Fri, 12 Oct 2007 05:18:27 -0700 (PDT) Subject: [Gambas-user] Catch close event? Message-ID: <801596.24375.qm@...1672...> PUBLIC SUB Form_Close() DIM iWhatever AS Integer iWhatever = message.Warning("Wnat to close this App?", "Yes", "Cancel") END ----- Original Message ---- From: "smiefert at ...784..." To: gambas-user at lists.sourceforge.net Sent: Friday, October 12, 2007 3:11:11 AM Subject: [Gambas-user] Catch close event? PUBLIC SUB Form_Close() message.Warning("Wnat to close this App?", "Yes", "Cancel") END how can i catch the closing? ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Tonight's top picks. What will you watch tonight? Preview the hottest shows on Yahoo! TV. http://tv.yahoo.com/ From cjro99 at ...67... Fri Oct 12 15:13:47 2007 From: cjro99 at ...67... (javier romero) Date: Fri, 12 Oct 2007 13:13:47 +0000 Subject: [Gambas-user] ColumnView In-Reply-To: <200710101237.43550.gambas@...1...> References: <855721.7201.qm@...1781...> <200710101237.43550.gambas@...1...> Message-ID: Version Gambas 1.9.50 Ubuntu Feitsy the event "ColumnClick" does'nt work. When click inside the component sends the column click but when click in column header don't sends the column parameter. Regards Javier > From: gambas at ...1... > To: gambas-user at lists.sourceforge.net > Date: Wed, 10 Oct 2007 12:37:43 +0200 > Subject: Re: [Gambas-user] Events > > On mardi 09 octobre 2007, David Villalobos Cambronero wrote: > > Hi all, > > > > I want to know if I can create a event with Gambas, for example add the > > event click to a object that do not have it? > > > > Can someone explaime how Gambas deals with events > > > > Best regards > > > > David > > > > I'm speaking about the development version: > > In a few words, you can create any events you want in Gambas. > > You cannot add a new event declaration to an already existing class. But you > can use inheritance for that. > > You can use the Observer() class too: it allows you to intercept events sent > by an object before the event handlers get them. > > You should read "The Gambas Object Model" page on the wiki documentation, and > take a look at all event-related functions in the language documentation. > Look at the Observer class documentation too. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ From marco at ...1785... Fri Oct 12 15:20:01 2007 From: marco at ...1785... (Marco Mascia) Date: Fri, 12 Oct 2007 15:20:01 +0200 Subject: [Gambas-user] Gambas 2 Etch installation Message-ID: <470F7481.2060509@...1785...> Hi, I have have a problem during the installation of gambas2(1.9.51) on debian etch. the exception is: *gambas2-gb-pdf* cannot be installed. gambas2-gb-pdf depends on libpopper-glib1 libpopper-glib1 cannot be installed. how can i resolve? tnx, Marco From david_villalobos_c at ...43... Fri Oct 12 15:42:47 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Fri, 12 Oct 2007 06:42:47 -0700 (PDT) Subject: [Gambas-user] ColumnView Message-ID: <258114.67813.qm@...1716...> Try to make click in the column header not just in the column the ColumnClick event is raised when you click in the header ----- Original Message ---- From: javier romero To: mailing list for gambas users Sent: Friday, October 12, 2007 7:13:47 AM Subject: [Gambas-user] ColumnView Version Gambas 1.9.50 Ubuntu Feitsy the event "ColumnClick" does'nt work. When click inside the component sends the column click but when click in column header don't sends the column parameter. Regards Javier > From: gambas at ...1... > To: gambas-user at lists.sourceforge.net > Date: Wed, 10 Oct 2007 12:37:43 +0200 > Subject: Re: [Gambas-user] Events > > On mardi 09 octobre 2007, David Villalobos Cambronero wrote: > > Hi all, > > > > I want to know if I can create a event with Gambas, for example add the > > event click to a object that do not have it? > > > > Can someone explaime how Gambas deals with events > > > > Best regards > > > > David > > > > I'm speaking about the development version: > > In a few words, you can create any events you want in Gambas. > > You cannot add a new event declaration to an already existing class. But you > can use inheritance for that. > > You can use the Observer() class too: it allows you to intercept events sent > by an object before the event handlers get them. > > You should read "The Gambas Object Model" page on the wiki documentation, and > take a look at all event-related functions in the language documentation. > Look at the Observer class documentation too. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Pinpoint customers who are looking for what you sell. http://searchmarketing.yahoo.com/ From robert at ...1786... Fri Oct 12 17:08:04 2007 From: robert at ...1786... (=?ISO-8859-1?Q?Robert_Ch=E9ramy?=) Date: Fri, 12 Oct 2007 17:08:04 +0200 Subject: [Gambas-user] Gambas 2 Etch installation In-Reply-To: <470F7481.2060509@...1785...> References: <470F7481.2060509@...1785...> Message-ID: <470F8DD4.6080903@...1786...> Hi, gambas2 is not available as official Debian package for etch (stable). Where did you got the packages from ? Testing ? libpoppler1 is not available either under etch, that's why you get this error message. Cheers, tibob Marco Mascia schrieb: > Hi, > > I have have a problem during the installation of gambas2(1.9.51) on debian etch. > > the exception is: *gambas2-gb-pdf* cannot be installed. > > gambas2-gb-pdf depends on libpopper-glib1 > > libpopper-glib1 cannot be installed. > > > how can i resolve? > > tnx, > > Marco > > > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > From gambas at ...1... Fri Oct 12 17:32:14 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 12 Oct 2007 17:32:14 +0200 Subject: [Gambas-user] ColumnView In-Reply-To: References: <855721.7201.qm@...1781...> <200710101237.43550.gambas@...1...> Message-ID: <200710121732.15205.gambas@...1...> On vendredi 12 octobre 2007, javier romero wrote: > Version Gambas 1.9.50 > Ubuntu Feitsy > > the event "ColumnClick" does'nt work. When click inside the component sends > the column click but when click in column header don't sends the column > parameter. > > Regards > Javier > Hi, The documentation is false, ColumnClick is raised when you click inside the view, not on the headers. But as you are talking about it, I now find this event stupid, as its name is badly chosen, and there is already a Click event. I think I will remove it, or replace it with a property that will tell in which column the last click occured. If you need header click event, I suggest that you use a GridView instead. P.S. Next time, please create a new thread if you don't really answer to an already existing one! Regards, -- Benoit Minisini From rospolosco at ...152... Fri Oct 12 18:09:00 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Fri, 12 Oct 2007 18:09:00 +0200 Subject: [Gambas-user] How do I... Message-ID: <200710121809.00582.rospolosco@...152...> Hi, Benoit. What about the "How do I..." help page? :-) Regards, Stefano Palmeri From dcamposf at ...626... Fri Oct 12 18:13:49 2007 From: dcamposf at ...626... (Daniel Campos) Date: Fri, 12 Oct 2007 18:13:49 +0200 Subject: [Gambas-user] Gambas 2 Etch installation In-Reply-To: <470F7481.2060509@...1785...> References: <470F7481.2060509@...1785...> Message-ID: <7259b5ae0710120913l6dd31628w16c2837f56c87334@...627...> This library seems to be not available in Etch, but I think you should be able to repack it from Debian SID, as it is compilable even using Sarge. 1) Download the Debian sources from: http://packages.debian.org/lenny/libpoppler-dev (look at the right side of the page: download the dsc, tar.gz and diff.gz files) 2) Install an environment for compiling: apt-get install gcc cpp g++ debhelper lintian fakeroot devscripts apt-get install autotools-dev gnome-pkg-tools libglib2.0-dev apt-get install libgtk2.0-dev libfontconfig1-dev libqt3-mt-dev apt-get install libqt4-dev libglade2-dev libcairo2-dev gtk-doc-tools 3) Unpack the sources: dpkg-source -x the-package-name.dsc 4) Enter in the source folder and recreate the package: dpkg-buildpackage -rfakeroot 5) Install the created poopler deb package Daniel 2007/10/12, Marco Mascia : > Hi, > > I have have a problem during the installation of gambas2(1.9.51) on debian etch. > > the exception is: *gambas2-gb-pdf* cannot be installed. > > gambas2-gb-pdf depends on libpopper-glib1 > > libpopper-glib1 cannot be installed. > > > how can i resolve? > > tnx, > > Marco > > > > > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jredrejo at ...626... Sat Oct 13 13:22:03 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Sat, 13 Oct 2007 13:22:03 +0200 Subject: [Gambas-user] Gambas 2 Etch installation In-Reply-To: <470F7481.2060509@...1785...> References: <470F7481.2060509@...1785...> Message-ID: <8eb28a500710130422l21342f53t1d1fe3b9f59bf9a3@...627...> Thanks for your report. I've fixed the problem with 1.9.90 version. It will be available to apt in a couple of hours in the same place 1.9.51 was. Sorry for the inconveniences. Regards. Jos? L. 2007/10/12, Marco Mascia : > > Hi, > > I have have a problem during the installation of gambas2(1.9.51) on debian > etch. > > the exception is: *gambas2-gb-pdf* cannot be installed. > > gambas2-gb-pdf depends on libpopper-glib1 > > libpopper-glib1 cannot be installed. > > > how can i resolve? > > tnx, > > Marco > > > > From jh_starcom at ...103... Sun Oct 14 04:59:20 2007 From: jh_starcom at ...103... (Jun Hay) Date: Sat, 13 Oct 2007 19:59:20 -0700 Subject: [Gambas-user] how to make crystal report in Gambas? Message-ID: <47118608.2010806@...103...> Please, any body can help me to make crystal report in gambas? From jredrejo at ...626... Sat Oct 13 16:22:17 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Sat, 13 Oct 2007 16:22:17 +0200 Subject: [Gambas-user] how to make crystal report in Gambas? In-Reply-To: <47118608.2010806@...103...> References: <47118608.2010806@...103...> Message-ID: <8eb28a500710130722q6ff1262fuddaaebe260e9646e@...627...> It's almost impossible you can do crystal reports in gambas as not crystal reports for gambas is available. Anyway if you take a look at the examples and documentation you'll discover there is a report component and it's not hard to use it. Regards. 2007/10/14, Jun Hay : > > Please, any body can help me to make crystal report in gambas? > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Sat Oct 13 21:05:40 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 13 Oct 2007 21:05:40 +0200 Subject: [Gambas-user] How do I... In-Reply-To: <200710121809.00582.rospolosco@...152...> References: <200710121809.00582.rospolosco@...152...> Message-ID: <200710132105.40957.gambas@...1...> On vendredi 12 octobre 2007, Stefano Palmeri wrote: > Hi, Benoit. > > What about the "How do I..." help page? :-) > > Regards, > > Stefano Palmeri > Nobody (and I am a member of nobody) took the time to update these pages (How do I... and the easy documentation) so that they can put refer to Gambas 2 syntax and not Gambas 1. This is the reason why they were not put in the new Gambas Wiki (which becomes the IDE offline help after a lot of magic). Any volunteer? :-) -- Benoit Minisini From rohnny at ...1248... Sun Oct 14 19:09:04 2007 From: rohnny at ...1248... (R. Stormo) Date: Sun, 14 Oct 2007 10:09:04 -0700 (PDT) Subject: [Gambas-user] couple of things in svn Message-ID: <13200974.post@...1379...> downloaded latest version from svn today and I have a couple of things I have noticed. 1) When I compile my project to executable file I use "get version from file" This is what happening. Project.GetVersion.1770: Unable to get version from: /home/rohnny/Prosjekter/faktura/faktura.gambas The previous file is there. 2) Automatic completion have a BUG. My database have a field called mva (lower case) So I use Uppercase as a variable and called the lowercase (worked before) PUBLIC SUB Form_Open() DIM MVA AS Integer DIM r AS result MVA = r!MVA -------^^^^^ This is automatic changed to upper so I will get an error because database field are lower. END Regards Rohnny My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/couple-of-things-in-svn-tf4622442.html#a13200974 Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Sun Oct 14 21:53:12 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 14 Oct 2007 21:53:12 +0200 Subject: [Gambas-user] couple of things in svn In-Reply-To: <13200974.post@...1379...> References: <13200974.post@...1379...> Message-ID: <200710142153.12834.gambas@...1...> On dimanche 14 octobre 2007, R. Stormo wrote: > downloaded latest version from svn today and I have a couple of things I > have noticed. > > 1) When I compile my project to executable file I use "get version from > file" This is what happening. > > Project.GetVersion.1770: Unable to get version from: > /home/rohnny/Prosjekter/faktura/faktura.gambas > > The previous file is there. This is not "get version from file", but "get version for program". The program is run in a shell and must print on its standard output the a version string in the usual "X.Y.Z" format. > > 2) Automatic completion have a BUG. > My database have a field called mva (lower case) > So I use Uppercase as a variable and called the lowercase (worked before) > > PUBLIC SUB Form_Open() > DIM MVA AS Integer > DIM r AS result > > MVA = r!MVA > -------^^^^^ This is automatic changed to upper so I will get an error > because database field are lower. > END > The automatic completion is not in fault, but the gb.eval component. As a workaround, you can write instead: MVA = r["mva"] Regards, -- Benoit Minisini From jredrejo at ...626... Mon Oct 15 19:10:02 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Mon, 15 Oct 2007 19:10:02 +0200 Subject: [Gambas-user] Bug in gtk ToggleButton Message-ID: <8eb28a500710151010wcdaf9dbp2b4dd7d7516be786@...627...> Tested in Debian with 1.9.50 & 1.9.90: When using gtk, clicking on a toggle button, changes its value from false to true, but the button aspect doesn't toggle. Using qt it works. Is there any workaround? From jredrejo at ...626... Mon Oct 15 19:14:53 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Mon, 15 Oct 2007 19:14:53 +0200 Subject: [Gambas-user] Bug in gtk ToggleButton In-Reply-To: <8eb28a500710151010wcdaf9dbp2b4dd7d7516be786@...627...> References: <8eb28a500710151010wcdaf9dbp2b4dd7d7516be786@...627...> Message-ID: <8eb28a500710151014sbc8c837mef2320821e54eb95@...627...> It was my fault, the problem was in the gtk theme I was using, it works perfectly. My apologies. Regards Jos? L. 2007/10/15, Jos? Luis Redrejo : > > Tested in Debian with 1.9.50 & 1.9.90: > When using gtk, clicking on a toggle button, changes its value from false > to true, but the button aspect doesn't toggle. > Using qt it works. > > Is there any workaround? > From gambas.fr at ...626... Mon Oct 15 21:57:20 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 15 Oct 2007 21:57:20 +0200 Subject: [Gambas-user] A little thing to play with gambas Message-ID: <200710152157.20794.gambas.fr@...626...> Hi to all, I've done a little Gambas program that allow to use gambas as a script programming language. I know that it will be better to do it in C but it is just to make a mockup... It add Three new KEYWORDS : - USE : is for give used components - CLASS *: is for begin a class content and ended with END CLASS - INCLUDE: Allow to include another script file anywhere in the code (like in php) To use gbs2 you need to compile it in the ide, and copy the executable in /usr/local/bin, then make a symbolic link named 'gbs2' The test then can be launched by the ./test.gbs command I hope i work ... it's just an early alpha... but i think it's suffisely cool to be showed. Fabien Bodard -------------- next part -------------- A non-text attachment was scrubbed... Name: gbs2-0.0.24.tar.gz Type: application/x-tgz Size: 6669 bytes Desc: not available URL: -------------- next part -------------- #!/usr/bin/env gbs2 USE gb.qt INCLUDE inc.gbs PUBLIC SUB Main() CTest.Test END CLASS CTest STATIC Public sub Test() Dim hForm as New frmTest as "Form" frmTest.Show END Public sub Form_Hide() Message("You have closed me") End END CLASS -------------- next part -------------- USE gb.qt CLASS frmTest INHERITS Form Private hForm as Form Public Sub _New() Dim txtlbl as TextLabel txtlbl = new TextLabel(ME) ME.Arrangement = arrange.fill txtLbl.Text = "Incredible!!! " END END CLASS From sbungay at ...981... Mon Oct 15 22:04:34 2007 From: sbungay at ...981... (Stephen Bungay) Date: Mon, 15 Oct 2007 16:04:34 -0400 Subject: [Gambas-user] KUBUNTU 7.04, this might help others who are having difficulty... Message-ID: <200710151604.34895.sbungay@...981...> Greetings all! ? ? Having migrated to KUBUNTU from Fedora (where GAMBAS was successfully compiled many many times) I had some difficulty finding all of the dependencies for KUBUNTU 7.04. ? On initial ./reconf-all there were some libraries that I really REALLLY wanted to use. Below is a table of the things the reconf-all said was missing and the names of the items to search for in adept to install them. ? NOTE- Anything left blank are items which I did not want so they are still disabled in my install of GAMABAS. DISABLED????????????????????????Search adept for these COMPONENT???????????????items. Exact matches. - gb.db.firebird - gb.db.mysql???????????libmysqlclient15-dev - gb.db.odbc????????????unixodbc-dev - gb.db.sqlite3????????? - gb.gtk????????????????????????libgtk2.0-dev - gb.gtk.svg????????????librsvg2-dev - gb.net.curl??????????? - gb.opengl?????????????lib-mesa-swx11-dev - gb.pcre???????????????????????libpcre3-dev - gb.qt.kde?????????????????????kde-devel - gb.qte - gb.sdl????????????????????????libsdl-image1.2 - gb.xml????????????????????????libxml2-dev ? After the components I wanted were installed I did another ./reconf all and a ./configure. They both worked with no errors so make was the next step and it fell flat on its face complaining that; /bin/sed: can't read /usr/lib/libdirectfb.la: No such file or directory libtool: link: `/usr/lib/libdirectfb.la' is not a valid libtool archive ? Seems that some more dependencies were missing, although the configure did not seem to mind, make certainly did. Go to adept Manager and seek out and install the following, do them both because if you only do the first one make will fail on the second. libdirectfb-dev libaa1-dev ? Make then worked perfectly, make install went without a hitch and I now have the latest svn of the GAMBAS trunk (as of this writing) on my KUBUNTU 7.04 box. Steve. From gambas at ...1... Mon Oct 15 22:17:04 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 15 Oct 2007 22:17:04 +0200 Subject: [Gambas-user] KUBUNTU 7.04, this might help others who are having difficulty... In-Reply-To: <200710151604.34895.sbungay@...981...> References: <200710151604.34895.sbungay@...981...> Message-ID: <200710152217.05113.gambas@...1...> On lundi 15 octobre 2007, Stephen Bungay wrote: > Greetings all! > > ? ? Having migrated to KUBUNTU from Fedora (where GAMBAS was successfully > compiled many many times) I had some difficulty finding all of the > dependencies for KUBUNTU 7.04. > ? On initial ./reconf-all there were some libraries that I really REALLLY > wanted to use. Below is a table of the things the reconf-all said was > missing and the names of the items to search for in adept to install them. > > ? NOTE- Anything left blank are items which I did not want so they are > still disabled in my install of GAMABAS. > > DISABLED????????????????????????Search adept for these > COMPONENT???????????????items. Exact matches. > > - gb.db.firebird > - gb.db.mysql???????????libmysqlclient15-dev > - gb.db.odbc????????????unixodbc-dev > - gb.db.sqlite3????????? > - gb.gtk????????????????????????libgtk2.0-dev > - gb.gtk.svg????????????librsvg2-dev > - gb.net.curl??????????? > - gb.opengl?????????????lib-mesa-swx11-dev > - gb.pcre???????????????????????libpcre3-dev > - gb.qt.kde?????????????????????kde-devel > - gb.qte > - gb.sdl????????????????????????libsdl-image1.2 > - gb.xml????????????????????????libxml2-dev > > ? After the components I wanted were installed I did another ./reconf all > and a ./configure. They both worked with no errors so make was the next > step and it fell flat on its face complaining that; > > /bin/sed: can't read /usr/lib/libdirectfb.la: No such file or directory > libtool: link: `/usr/lib/libdirectfb.la' is not a valid libtool archive > > ? Seems that some more dependencies were missing, although the configure > did not seem to mind, make certainly did. Go to adept Manager and seek out > and install the following, do them both because if you only do the first > one make will fail on the second. > > libdirectfb-dev > libaa1-dev > > ? Make then worked perfectly, make install went without a hitch and I now > have the latest svn of the GAMBAS trunk (as of this writing) on my KUBUNTU > 7.04 box. > > Steve. Maybe you should put your experience in the wiki, at http://gambasdoc.org/help/install Regards, -- Benoit Minisini From gnu.linux at ...18... Mon Oct 15 22:17:35 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Mon, 15 Oct 2007 22:17:35 +0200 Subject: [Gambas-user] slogan for my gambas t-shirt Message-ID: <20071015201735.251100@...18...> Hi gambas-programmer, i want to create a t-shirt on spreadshirt.net with the gambas mascot. also i want to put a good "freaky" slogan on it. can you help me to find the right slogan? thank you very much! Best regards. Frank. -- GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail From gambas.fr at ...626... Mon Oct 15 22:19:36 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 15 Oct 2007 22:19:36 +0200 Subject: [Gambas-user] KUBUNTU 7.04, this might help others who are having difficulty... In-Reply-To: <200710151604.34895.sbungay@...981...> References: <200710151604.34895.sbungay@...981...> Message-ID: <200710152219.37116.gambas.fr@...626...> All is there ! http://gambasdoc.org/help/install/ubuntu Le Monday 15 October 2007 22:04:34 Stephen Bungay, vous avez ?crit?: > Greetings all! > > ? ? Having migrated to KUBUNTU from Fedora (where GAMBAS was successfully > compiled many many times) I had some difficulty finding all of the > dependencies for KUBUNTU 7.04. > ? On initial ./reconf-all there were some libraries that I really REALLLY > wanted to use. Below is a table of the things the reconf-all said was > missing and the names of the items to search for in adept to install them. > > ? NOTE- Anything left blank are items which I did not want so they are > still disabled in my install of GAMABAS. > > DISABLED????????????????????????Search adept for these > COMPONENT???????????????items. Exact matches. > > - gb.db.firebird > - gb.db.mysql???????????libmysqlclient15-dev > - gb.db.odbc????????????unixodbc-dev > - gb.db.sqlite3????????? > - gb.gtk????????????????????????libgtk2.0-dev > - gb.gtk.svg????????????librsvg2-dev > - gb.net.curl??????????? > - gb.opengl?????????????lib-mesa-swx11-dev > - gb.pcre???????????????????????libpcre3-dev > - gb.qt.kde?????????????????????kde-devel > - gb.qte > - gb.sdl????????????????????????libsdl-image1.2 > - gb.xml????????????????????????libxml2-dev > > ? After the components I wanted were installed I did another ./reconf all > and a ./configure. They both worked with no errors so make was the next > step and it fell flat on its face complaining that; > > /bin/sed: can't read /usr/lib/libdirectfb.la: No such file or directory > libtool: link: `/usr/lib/libdirectfb.la' is not a valid libtool archive > > ? Seems that some more dependencies were missing, although the configure > did not seem to mind, make certainly did. Go to adept Manager and seek out > and install the following, do them both because if you only do the first > one make will fail on the second. > > libdirectfb-dev > libaa1-dev > > ? Make then worked perfectly, make install went without a hitch and I now > have the latest svn of the GAMBAS trunk (as of this writing) on my KUBUNTU > 7.04 box. > > Steve. > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Mon Oct 15 22:19:48 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 15 Oct 2007 22:19:48 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152157.20794.gambas.fr@...626...> References: <200710152157.20794.gambas.fr@...626...> Message-ID: <200710152219.48240.gambas@...1...> On lundi 15 octobre 2007, Fabien Bodard wrote: > Hi to all, > I've done a little Gambas program that allow to use gambas as a script > programming language. > > I know that it will be better to do it in C but it is just to make a > mockup... > > It add Three new KEYWORDS : > > - USE : is for give used components > - CLASS *: is for begin a class content and ended with END CLASS > - INCLUDE: Allow to include another script file anywhere in the code (like > in php) > > To use gbs2 you need to compile it in the ide, and copy the executable > in /usr/local/bin, then make a symbolic link named 'gbs2' > > The test then can be launched by the ./test.gbs command > > I hope i work ... it's just an early alpha... but i think it's suffisely > cool to be showed. > > > Fabien Bodard Actually you can name your "gambas script" with the *.gambas extension. After all, they are Gambas code, and they are run as scripts, exactly like the true Gambas executable. Only one letter change: "#!/usr/bin/env gbr2" -> "#!/usr/bin/env gbs2" -- Benoit Minisini From gambas at ...1... Mon Oct 15 22:23:01 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 15 Oct 2007 22:23:01 +0200 Subject: [Gambas-user] KUBUNTU 7.04, this might help others who are having difficulty... In-Reply-To: <200710152219.37116.gambas.fr@...626...> References: <200710151604.34895.sbungay@...981...> <200710152219.37116.gambas.fr@...626...> Message-ID: <200710152223.01544.gambas@...1...> On lundi 15 octobre 2007, Fabien Bodard wrote: > All is there ! > > http://gambasdoc.org/help/install/ubuntu > Of course, I forgot the Ubuntu and Kubuntu are actually the same thing. -- Benoit Minisini From gnu.linux at ...18... Mon Oct 15 22:28:39 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Mon, 15 Oct 2007 22:28:39 +0200 Subject: [Gambas-user] how do you like this shirt? Message-ID: <20071015202839.173740@...18...> Hi gambas-friends, how do you like this shirt, without a slogan, but with the address of the gambas-project? Best Regards, Frank. -- GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas-shirt.png Type: image/png Size: 41695 bytes Desc: not available URL: From gambas.fr at ...626... Mon Oct 15 22:39:21 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 15 Oct 2007 22:39:21 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152219.48240.gambas@...1...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> Message-ID: <200710152239.21949.gambas.fr@...626...> In fact i found the .gambas extention too long comparate to other language one ... isn't it ? .py .c .bas .h .class < this is the max Le Monday 15 October 2007 22:19:48 Benoit Minisini, vous avez ?crit?: > On lundi 15 octobre 2007, Fabien Bodard wrote: > > Hi to all, > > I've done a little Gambas program that allow to use gambas as a script > > programming language. > > > > I know that it will be better to do it in C but it is just to make a > > mockup... > > > > It add Three new KEYWORDS : > > > > - USE : is for give used components > > - CLASS *: is for begin a class content and ended with END CLASS > > - INCLUDE: Allow to include another script file anywhere in the code > > (like in php) > > > > To use gbs2 you need to compile it in the ide, and copy the executable > > in /usr/local/bin, then make a symbolic link named 'gbs2' > > > > The test then can be launched by the ./test.gbs command > > > > I hope i work ... it's just an early alpha... but i think it's suffisely > > cool to be showed. > > > > > > Fabien Bodard > > Actually you can name your "gambas script" with the *.gambas extension. > > After all, they are Gambas code, and they are run as scripts, exactly like > the true Gambas executable. Only one letter change: > > "#!/usr/bin/env gbr2" -> "#!/usr/bin/env gbs2" From gambas.fr at ...626... Mon Oct 15 22:42:10 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 15 Oct 2007 22:42:10 +0200 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071015202839.173740@...18...> References: <20071015202839.173740@...18...> Message-ID: <200710152242.11090.gambas.fr@...626...> Le Monday 15 October 2007 22:28:39 gnu.linux at ...18..., vous avez ?crit?: > Hi gambas-friends, > > how do you like this shirt, without a slogan, but with the address of the > gambas-project? > > > Best Regards, > Frank. I think you need to wait a little bit to know what will be the final logo of the version 2 ... no ? From gambas at ...1... Mon Oct 15 22:46:11 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 15 Oct 2007 22:46:11 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152239.21949.gambas.fr@...626...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> <200710152239.21949.gambas.fr@...626...> Message-ID: <200710152246.11517.gambas@...1...> On lundi 15 octobre 2007, Fabien Bodard wrote: > In fact i found the .gambas extention too long comparate to other language > one ... isn't it ? > .py > .c > .bas > .h > .class < this is the max > The small extensions comes from the CP/M (and after MS/DOS) that didn't accept more than three characters. :-) It is just a matter of being used to. If you can't, maybe you could use the ".g" extension? Anyway nothing is mandatory, except for the archiver that use ".gambas" by default. Regards, -- Benoit Minisini From gambas.fr at ...626... Mon Oct 15 22:46:32 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 15 Oct 2007 22:46:32 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152219.48240.gambas@...1...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> Message-ID: <200710152246.32756.gambas.fr@...626...> To Benoit : Did you think the tmp executable will be in /tmp/gambas.userid/ or in /tmp ? Le Monday 15 October 2007 22:19:48 Benoit Minisini, vous avez ?crit?: > On lundi 15 octobre 2007, Fabien Bodard wrote: > > Hi to all, > > I've done a little Gambas program that allow to use gambas as a script > > programming language. > > > > I know that it will be better to do it in C but it is just to make a > > mockup... > > > > It add Three new KEYWORDS : > > > > - USE : is for give used components > > - CLASS *: is for begin a class content and ended with END CLASS > > - INCLUDE: Allow to include another script file anywhere in the code > > (like in php) > > > > To use gbs2 you need to compile it in the ide, and copy the executable > > in /usr/local/bin, then make a symbolic link named 'gbs2' > > > > The test then can be launched by the ./test.gbs command > > > > I hope i work ... it's just an early alpha... but i think it's suffisely > > cool to be showed. > > > > > > Fabien Bodard > > Actually you can name your "gambas script" with the *.gambas extension. > > After all, they are Gambas code, and they are run as scripts, exactly like > the true Gambas executable. Only one letter change: > > "#!/usr/bin/env gbr2" -> "#!/usr/bin/env gbs2" From sourceforge-raindog2 at ...94... Mon Oct 15 23:05:21 2007 From: sourceforge-raindog2 at ...94... (Rob) Date: Mon, 15 Oct 2007 17:05:21 -0400 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152219.48240.gambas@...1...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> Message-ID: <200710151705.21789.sourceforge-raindog2@...94...> Fabien wrote: > > I've done a little Gambas program that allow to use gambas as a > > script programming language. This is pretty sweet. I wrote a "gbs" based on one of the pre-1.0 versions but yours is thought out much better. On Monday 15 October 2007 16:19, Benoit Minisini wrote: > Actually you can name your "gambas script" with the *.gambas > extension. I think this is a bad idea, because then we have the same file extension for binary and text files. Sure, there's precedent (the pnm suite of formats) but in this case they're two different kinds of files, a Gambas archive (.gambas) and a script (.gbs). Rob From gambas at ...1... Mon Oct 15 23:10:35 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 15 Oct 2007 23:10:35 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710151705.21789.sourceforge-raindog2@...94...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> <200710151705.21789.sourceforge-raindog2@...94...> Message-ID: <200710152310.35326.gambas@...1...> On lundi 15 octobre 2007, Rob wrote: > Fabien wrote: > > > I've done a little Gambas program that allow to use gambas as a > > > script programming language. > > This is pretty sweet. I wrote a "gbs" based on one of the pre-1.0 > versions but yours is thought out much better. > > On Monday 15 October 2007 16:19, Benoit Minisini wrote: > > Actually you can name your "gambas script" with the *.gambas > > extension. > > I think this is a bad idea, because then we have the same file > extension for binary and text files. Sure, there's precedent (the > pnm suite of formats) but in this case they're two different kinds of > files, a Gambas archive (.gambas) and a script (.gbs). > > Rob > I proposed the '.g' extension. This is short, and I don't think it is used by anybody. Regards, -- Benoit Minisini From nando_f at ...951... Tue Oct 16 00:59:26 2007 From: nando_f at ...951... (nando) Date: Mon, 15 Oct 2007 17:59:26 -0500 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071015202839.173740@...18...> References: <20071015202839.173740@...18...> Message-ID: <20071015225656.M45248@...951...> That's wonderful! I would like to have these available for sale here in Canada. How can I get your artwork? fees, royalties, etc? -Fernando ---------- Original Message ----------- From: gnu.linux at ...18... To: gambas-user at lists.sourceforge.net Sent: Mon, 15 Oct 2007 22:28:39 +0200 Subject: [Gambas-user] how do you like this shirt? > Hi gambas-friends, > > how do you like this shirt, without a slogan, but with the address of the gambas- > project? > > Best Regards, > Frank. > -- > GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. > Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail ------- End of Original Message ------- From gnu.linux at ...18... Tue Oct 16 02:08:39 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Tue, 16 Oct 2007 02:08:39 +0200 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071015225656.M45248@...951...> References: <20071015202839.173740@...18...> <20071015225656.M45248@...951...> Message-ID: <20071016000839.71210@...18...> Hi Fernando and all others, when will it be decided what mascot/logo will be used for the Version 2? If that takes too long for me I will order me a t-shirt with the mascot, which is on the artwork at the moment. Fernando: If you want I can send you this t-shirt to Canada. Best Regards. Frank. -------- Original-Nachricht -------- > Datum: Mon, 15 Oct 2007 17:59:26 -0500 > Von: "nando" > An: mailing list for gambas users > Betreff: Re: [Gambas-user] how do you like this shirt? > That's wonderful! > I would like to have these available for sale here in Canada. > How can I get your artwork? fees, royalties, etc? > -Fernando > > > ---------- Original Message ----------- > From: gnu.linux at ...18... > To: gambas-user at lists.sourceforge.net > Sent: Mon, 15 Oct 2007 22:28:39 +0200 > Subject: [Gambas-user] how do you like this shirt? > > > Hi gambas-friends, > > > > how do you like this shirt, without a slogan, but with the address of > the gambas- > > project? > > > > Best Regards, > > Frank. > > -- > > GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. > > Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail > ------- End of Original Message ------- > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten Browser-Versionen downloaden: http://www.gmx.net/de/go/browser From nando_f at ...951... Tue Oct 16 05:24:36 2007 From: nando_f at ...951... (nando) Date: Mon, 15 Oct 2007 22:24:36 -0500 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071016000839.71210@...18...> References: <20071015202839.173740@...18...> <20071015225656.M45248@...951...> <20071016000839.71210@...18...> Message-ID: <20071016032352.M15963@...951...> I would love one. Tell me the cost and payment methods. -Fernando ---------- Original Message ----------- From: gnu.linux at ...18... To: nando_f at ...951..., mailing list for gambas users Sent: Tue, 16 Oct 2007 02:08:39 +0200 Subject: Re: [Gambas-user] how do you like this shirt? > Hi Fernando and all others, > > when will it be decided what mascot/logo will be used for the Version 2? > > If that takes too long for me I will order me a t-shirt with the mascot, which > is on the artwork at the moment. > > Fernando: > If you want I can send you this t-shirt to Canada. > > Best Regards. > Frank. > > -------- Original-Nachricht -------- > > Datum: Mon, 15 Oct 2007 17:59:26 -0500 > > Von: "nando" > > An: mailing list for gambas users > > Betreff: Re: [Gambas-user] how do you like this shirt? > > > That's wonderful! > > I would like to have these available for sale here in Canada. > > How can I get your artwork? fees, royalties, etc? > > -Fernando > > > > > > ---------- Original Message ----------- > > From: gnu.linux at ...18... > > To: gambas-user at lists.sourceforge.net > > Sent: Mon, 15 Oct 2007 22:28:39 +0200 > > Subject: [Gambas-user] how do you like this shirt? > > > > > Hi gambas-friends, > > > > > > how do you like this shirt, without a slogan, but with the address of > > the gambas- > > > project? > > > > > > Best Regards, > > > Frank. > > > -- > > > GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. > > > Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail > > ------- End of Original Message ------- > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -- > Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten > Browser-Versionen downloaden: http://www.gmx.net/de/go/browser > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user ------- End of Original Message ------- From gnu.linux at ...18... Tue Oct 16 05:28:54 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Tue, 16 Oct 2007 05:28:54 +0200 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071016032352.M15963@...951...> References: <20071015202839.173740@...18...> <20071015225656.M45248@...951...> <20071016000839.71210@...18...> <20071016032352.M15963@...951...> Message-ID: <20071016032854.320980@...18...> Fernando, I will visit our post office and ask them how much it will cost. but i know that the t-shirt isn't cheap (by a order of 2 articles). but i indulge myself in buying the shirt =:-) ???anybody else who is intereseted in the shirt??? regards, frank. -------- Original-Nachricht -------- > Datum: Mon, 15 Oct 2007 22:24:36 -0500 > Von: "nando" > An: mailing list for gambas users > Betreff: Re: [Gambas-user] how do you like this shirt? > I would love one. > Tell me the cost and payment methods. > -Fernando > > > > ---------- Original Message ----------- > From: gnu.linux at ...18... > To: nando_f at ...951..., mailing list for gambas users > > Sent: Tue, 16 Oct 2007 02:08:39 +0200 > Subject: Re: [Gambas-user] how do you like this shirt? > > > Hi Fernando and all others, > > > > when will it be decided what mascot/logo will be used for the Version 2? > > > > If that takes too long for me I will order me a t-shirt with the mascot, > which > > is on the artwork at the moment. > > > > Fernando: > > If you want I can send you this t-shirt to Canada. > > > > Best Regards. > > Frank. > > > > -------- Original-Nachricht -------- > > > Datum: Mon, 15 Oct 2007 17:59:26 -0500 > > > Von: "nando" > > > An: mailing list for gambas users > > > Betreff: Re: [Gambas-user] how do you like this shirt? > > > > > That's wonderful! > > > I would like to have these available for sale here in Canada. > > > How can I get your artwork? fees, royalties, etc? > > > -Fernando > > > > > > > > > ---------- Original Message ----------- > > > From: gnu.linux at ...18... > > > To: gambas-user at lists.sourceforge.net > > > Sent: Mon, 15 Oct 2007 22:28:39 +0200 > > > Subject: [Gambas-user] how do you like this shirt? > > > > > > > Hi gambas-friends, > > > > > > > > how do you like this shirt, without a slogan, but with the address > of > > > the gambas- > > > > project? > > > > > > > > Best Regards, > > > > Frank. > > > > -- > > > > GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. > > > > Alle Infos und kostenlose Anmeldung: > http://www.gmx.net/de/go/freemail > > > ------- End of Original Message ------- > > > > > > > > > > ------------------------------------------------------------------------- > > > This SF.net email is sponsored by: Splunk Inc. > > > Still grepping through log files to find problems? Stop. > > > Now Search log events and configuration files using AJAX and a > browser. > > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > > _______________________________________________ > > > Gambas-user mailing list > > > Gambas-user at lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > -- > > Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten > > Browser-Versionen downloaden: http://www.gmx.net/de/go/browser > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > ------- End of Original Message ------- > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal f?r Modem und ISDN: http://www.gmx.net/de/go/smartsurfer From gambas at ...1... Tue Oct 16 09:04:09 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 16 Oct 2007 09:04:09 +0200 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071016032854.320980@...18...> References: <20071015202839.173740@...18...> <20071016032352.M15963@...951...> <20071016032854.320980@...18...> Message-ID: <200710160904.09433.gambas@...1...> On mardi 16 octobre 2007, gnu.linux at ...18... wrote: > Fernando, > I will visit our post office and ask them how much it will cost. > but i know that the t-shirt isn't cheap (by a order of 2 articles). but i > indulge myself in buying the shirt =:-) > > ???anybody else who is intereseted in the shirt??? > > regards, > frank. Will you use the new logo I sent you or the old one? The old one was made by Fabien Bodard, the new one by a guy I don't know who works with Daniel Campos. If you want to use the first, you must ask the permission to Fabien. If you want to use the second, then Daniel must tell us how to contact the designer of the new logo. Regards, -- Benoit Minisini From dcamposf at ...626... Tue Oct 16 09:33:11 2007 From: dcamposf at ...626... (Daniel Campos) Date: Tue, 16 Oct 2007 09:33:11 +0200 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <200710160904.09433.gambas@...1...> References: <20071015202839.173740@...18...> <20071016032352.M15963@...951...> <20071016032854.320980@...18...> <200710160904.09433.gambas@...1...> Message-ID: <7259b5ae0710160033y21e6eba0w6bf5cd94ac4c5ec6@...627...> > > If you want to use the first, you must ask the permission to Fabien. If you > want to use the second, then Daniel must tell us how to contact the designer > of the new logo. > Hi: He worked for a time here, from an external company, currently I don't know very much about him. His name is Marcos Morales and his mail is: supermarcos at ...626... Daniel From dcamposf at ...626... Tue Oct 16 09:35:35 2007 From: dcamposf at ...626... (Daniel Campos) Date: Tue, 16 Oct 2007 09:35:35 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152310.35326.gambas@...1...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> <200710151705.21789.sourceforge-raindog2@...94...> <200710152310.35326.gambas@...1...> Message-ID: <7259b5ae0710160035s704b6bfck128c3d5148db0c86@...627...> > > I proposed the '.g' extension. This is short, and I don't think it is used by > anybody. Are you sure? http://filext.com/file-extension/g :-) Daniel > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From tomas.eroles at ...277... Tue Oct 16 10:07:48 2007 From: tomas.eroles at ...277... (Tomas Eroles i Forner) Date: Tue, 16 Oct 2007 10:07:48 +0200 Subject: [Gambas-user] Use of wizards and ini files Message-ID: <1192522068.3621.11.camel@...1787...> Hi all! I'm writing a small application and I want to put a wizard. I'm looking on the wiki encyclopedia, and on the book of Daniel and Jose Luis some information for solve my problems, but I could'n find it. My questions are: - Is it possible to change the caption of the buttons? - If once I've created a wizard with 5 pages I want to delete the second one, may I do it without problems to the next pages? - I plan to use a configuration file for configure the program, like an .ini file. What do you think is better, use a text-plain file or xml file? Thanks in advance From Karl.Reinl at ...9... Tue Oct 16 11:06:09 2007 From: Karl.Reinl at ...9... (Charlie Reinl) Date: Tue, 16 Oct 2007 11:06:09 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <7259b5ae0710160035s704b6bfck128c3d5148db0c86@...627...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> <200710151705.21789.sourceforge-raindog2@...94...> <200710152310.35326.gambas@...1...> <7259b5ae0710160035s704b6bfck128c3d5148db0c86@...627...> Message-ID: <1192525569.5413.1.camel@...40...> Am Dienstag, den 16.10.2007, 09:35 +0200 schrieb Daniel Campos: > > > > I proposed the '.g' extension. This is short, and I don't think it is used by > > anybody. > > > Are you sure? > > http://filext.com/file-extension/g > and whats about .g2 .g Charlie > :-) > > Daniel > > > > > > Regards, > > > > -- > > Benoit Minisini From gambas at ...1... Tue Oct 16 13:46:52 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 16 Oct 2007 13:46:52 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <1192525569.5413.1.camel@...40...> References: <200710152157.20794.gambas.fr@...626...> <7259b5ae0710160035s704b6bfck128c3d5148db0c86@...627...> <1192525569.5413.1.camel@...40...> Message-ID: <200710161346.52486.gambas@...1...> On mardi 16 octobre 2007, Charlie Reinl wrote: > Am Dienstag, den 16.10.2007, 09:35 +0200 schrieb Daniel Campos: > > > I proposed the '.g' extension. This is short, and I don't think it is > > > used by anybody. > > > > Are you sure? > > > > http://filext.com/file-extension/g > > and whats about .g2 .g > > Charlie > The version of gambas is in the interpreter name (#!/usr/bin/gbs2). I think we can take ".g" safely. There is no risk of confusion with ANTLR files. Regards, -- Benoit Minisini From gambas at ...1... Tue Oct 16 13:50:41 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 16 Oct 2007 13:50:41 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152246.32756.gambas.fr@...626...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> <200710152246.32756.gambas.fr@...626...> Message-ID: <200710161350.41607.gambas@...1...> On lundi 15 octobre 2007, Fabien Bodard wrote: > To Benoit : > > Did you think the tmp executable will be in /tmp/gambas.userid/ or in /tmp > ? > As you wrote gbs2 in Gambas, you should use the default temporary file management provided by the interpreter: all temporary files are put in a directory named /tmp/gambas.$USERID/ that is only readable by this $USERID. If you put things in /tmp, then other users may be able to do some bad things to your files. But if you want to create some sort of persistent cache, you may consider using $HOME/tmp or something like /var/cache for root user. Regards, -- Benoit Minisini From gambas.fr at ...626... Tue Oct 16 14:33:09 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 16 Oct 2007 14:33:09 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710161350.41607.gambas@...1...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> <200710152246.32756.gambas.fr@...626...> <200710161350.41607.gambas@...1...> Message-ID: <6324a42a0710160533w1dcf709av2bdc00f4f3e277c7@...627...> i think the current way is sufficient 2007/10/16, Benoit Minisini : > > On lundi 15 octobre 2007, Fabien Bodard wrote: > > To Benoit : > > > > Did you think the tmp executable will be in /tmp/gambas.userid/ or in > /tmp > > ? > > > > As you wrote gbs2 in Gambas, you should use the default temporary file > management provided by the interpreter: all temporary files are put in a > directory named /tmp/gambas.$USERID/ that is only readable by this > $USERID. > > If you put things in /tmp, then other users may be able to do some bad > things > to your files. > > But if you want to create some sort of persistent cache, you may consider > using $HOME/tmp or something like /var/cache for root user. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From rgx at ...17... Tue Oct 16 14:38:17 2007 From: rgx at ...17... (RalfGesellensetter) Date: Tue, 16 Oct 2007 14:38:17 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710152219.48240.gambas@...1...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> Message-ID: <200710161438.19750.rgx@...17...> Am Montag 15 Oktober 2007 22:19 schrieb Benoit Minisini: > "#!/usr/bin/env gbr2" -> "#!/usr/bin/env gbs2" huh? Am I missing anything? ls /usr/bin/gb* /usr/bin/gba2 /usr/bin/gbc2 /usr/bin/gbi2 /usr/bin/gbr2 /usr/bin/gbx2 env gbs2 env: gbs2: No such file or directory From david_villalobos_c at ...43... Tue Oct 16 15:47:56 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 16 Oct 2007 06:47:56 -0700 (PDT) Subject: [Gambas-user] Watch a variable Message-ID: <236326.9612.qm@...1668...> Hi all, Can someone tell me how can I add a watch to a variable? Now the only way I found is run the program step by step, is there another way? Best regards, David ____________________________________________________________________________________ Need a vacation? Get great deals to amazing places on Yahoo! Travel. http://travel.yahoo.com/ From gambas.fr at ...626... Tue Oct 16 15:58:28 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 16 Oct 2007 15:58:28 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710161438.19750.rgx@...17...> References: <200710152157.20794.gambas.fr@...626...> <200710152219.48240.gambas@...1...> <200710161438.19750.rgx@...17...> Message-ID: <6324a42a0710160658x40755a45p6cf64c3c6e249ccd@...627...> yes, read the first message of these topic 2007/10/16, RalfGesellensetter : > > Am Montag 15 Oktober 2007 22:19 schrieb Benoit Minisini: > > "#!/usr/bin/env gbr2" -> "#!/usr/bin/env gbs2" > > huh? Am I missing anything? > > ls /usr/bin/gb* > /usr/bin/gba2 /usr/bin/gbc2 /usr/bin/gbi2 /usr/bin/gbr2 /usr/bin/gbx2 > > > env gbs2 > env: gbs2: No such file or directory > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas.fr at ...626... Tue Oct 16 16:07:25 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 16 Oct 2007 16:07:25 +0200 Subject: [Gambas-user] A little thing to play with gambas In-Reply-To: <200710161346.52486.gambas@...1...> References: <200710152157.20794.gambas.fr@...626...> <7259b5ae0710160035s704b6bfck128c3d5148db0c86@...627...> <1192525569.5413.1.camel@...40...> <200710161346.52486.gambas@...1...> Message-ID: <6324a42a0710160707v62417d57pb35cbff10f759390@...627...> 2007/10/16, Benoit Minisini : > > On mardi 16 octobre 2007, Charlie Reinl wrote: > > Am Dienstag, den 16.10.2007, 09:35 +0200 schrieb Daniel Campos: > > > > I proposed the '.g' extension. This is short, and I don't think it > is > > > > used by anybody. > > > > > > Are you sure? > > > > > > http://filext.com/file-extension/g > > > > and whats about .g2 .g > > > > Charlie > > > > The version of gambas is in the interpreter name (#!/usr/bin/gbs2). > > I think we can take ".g" safely. There is no risk of confusion with ANTLR > files. > > Regards, > > -- > Benoit Minisini Why not .gs ? (for gambas script)... PS: i love the ANTLR synthaxe diagram visualizator: http://www.antlr.org/works/screenshots/ambiguouspath.jpg ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From cclark at ...1783... Tue Oct 16 16:10:48 2007 From: cclark at ...1783... (Colin Clark) Date: Tue, 16 Oct 2007 15:10:48 +0100 Subject: [Gambas-user] Debugger: Watch variable In-Reply-To: <200710091604.19639.gambas@...1...> References: <13022691.post@...1379...> <200710051337.26957.steven@...1652...> <470B887C.20207@...1783...> <200710091604.19639.gambas@...1...> Message-ID: <4714C668.8080005@...1783...> Benoit Minisini wrote: > On mardi 09 octobre 2007, Colin Clark wrote: > >> Steven Lobbezoo wrote: >> >>> Le vendredi 5 octobre 2007 01:08, Benoit Minisini a ?crit : >>> >>>> On jeudi 04 octobre 2007, Colin Clark wrote: >>>> >>>>> Benoit Minisini wrote: >>>>> >>>>>> On jeudi 04 octobre 2007, Colin Clark wrote: >>>>>> >>>>>>> Benoit Minisini wrote: >>>>>>> >>>>>>>> On mercredi 03 octobre 2007, Colin Clark wrote: >>>>>>>> >>>>>>>>> I'm using the 1.9.51 version of Gambas. >>>>>>>>> >>>>> Colin Clark >>>>> >>>> It should not... Strange... Which KDE style do you use? >>>> >>> I have the same (since I installed Suse 10.2). I donnot use KDE, but work >>> with gnome. KDE is installed however. >>> >>> Steven >>> >>> ------------------------------------------------------------------------- >>> This SF.net email is sponsored by: Splunk Inc. >>> Still grepping through log files to find problems? Stop. >>> Now Search log events and configuration files using AJAX and a browser. >>> Download your FREE copy of Splunk now >> http://get.splunk.com/ >>> _______________________________________________ >>> Gambas-user mailing list >>> Gambas-user at lists.sourceforge.net >>> https://lists.sourceforge.net/lists/listinfo/gambas-user >>> >> Hello Steven >> >> When I use this feature the cursor flickers, and so do other items on >> the desktop, so I assume something is taking the focus away from that >> window. >> I don't know how to find where the problem is, so as a work-around I use >> a MessageBox instead of the Balloon. >> >> The change is in : >> >> gambas2-1.9.90/app/src/gambas2/FDebugInfo.class >> >> And the change is: >> >> PRIVATE SUB ShowAsBalloon(sMsg AS String) >> >> DIM hIcon AS Picture >> >> sMsg = Replace(sMsg, "\t", "\n") >> sMsg = Replace(sMsg, " ", " ") >> sMsg = Replace(sMsg, "&", "&") >> sMsg = Replace(sMsg, "<", "<") >> sMsg = Replace(sMsg, ">", ">") >> >> IF Left(sMsg) = "!" THEN >> sMsg = Mid$(sMsg, 2) >> hIcon = Picture["icon:/32/error"] >> ELSE >> hIcon = Picture["icon:/32/info"] >> ENDIF >> >> 'Balloon(sMsg, objForm, hIcon, Mouse.ScreenX - objForm.ScreenX, >> Mouse.ScreenY - objForm.ScreenY) >> ' Balloon(sMsg, Design.BalloonControl, hIcon, Design.BalloonX, >> Design.BalloonY) >> 'Use a MessageBox instead >> Message.Info(sMsg) >> >> END >> >> >> Colin Clark >> >> > > It seems to be a problem with the window-manager. I will try with Gnome & > Metacity if it happens the same thing. Matacity is known to not respect all > the freedesktop window-manager specifications. > > Regards, > > Hello Benoit I do not know if this information is of any help, however..... I have just installed Xubuntu 7.04 on a laptop. With whatever the default desktop environment is (Xfce ?) the same behaviour as with Gnome is shown. Colin Clark From david_villalobos_c at ...43... Tue Oct 16 16:15:09 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 16 Oct 2007 07:15:09 -0700 (PDT) Subject: [Gambas-user] Workspace on Gambas 1.9.90 Message-ID: <694417.76407.qm@...1781...> Hi all, I have Gambas 1.9.90 isntalled on Mandriva 2007.1, use qt. I make a small application tha use the WorkSpace of gb.form.mdi to embbed some forms, when I close a window the event Form_Close() was executed (on gambas 1.9.50) but now it fails. Can someone help me? I want to know if this is an error or not? Many thanks David ____________________________________________________________________________________ Be a better Heartthrob. Get better relationship answers from someone who knows. Yahoo! Answers - Check it out. http://answers.yahoo.com/dir/?link=list&sid=396545433 From david_villalobos_c at ...43... Tue Oct 16 16:23:01 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 16 Oct 2007 07:23:01 -0700 (PDT) Subject: [Gambas-user] DataView in gb.db.form Message-ID: <326841.40377.qm@...1658...> Hi all, I think I find a bug in the DataView in gb.db.form the property Headers do not show them, only if vertical or horizantal is setted, I mean if both are setted they are not shown. I try to show them on Gambas 1.9.90 with Mandriva 2007.1 Can someone try to reproduce the error? I want to know if it is correct. Regards. David ____________________________________________________________________________________ Need a vacation? Get great deals to amazing places on Yahoo! Travel. http://travel.yahoo.com/ From gambas at ...1... Tue Oct 16 16:55:38 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 16 Oct 2007 16:55:38 +0200 Subject: [Gambas-user] Workspace on Gambas 1.9.90 In-Reply-To: <694417.76407.qm@...1781...> References: <694417.76407.qm@...1781...> Message-ID: <200710161655.38406.gambas@...1...> On mardi 16 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > I have Gambas 1.9.90 isntalled on Mandriva 2007.1, use qt. > > I make a small application tha use the WorkSpace of gb.form.mdi to > embbed some forms, when I close a window the event Form_Close() was > executed (on gambas 1.9.50) but now it fails. Can someone help me? I want > to know if this is an error or not? > > Many thanks > > David > That seems to work there. You must provide me a project that fails as you described. Regards, -- Benoit Minisini From gnu.linux at ...18... Tue Oct 16 19:52:45 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Tue, 16 Oct 2007 19:52:45 +0200 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071015225656.M45248@...951...> References: <20071015202839.173740@...18...> <20071015225656.M45248@...951...> Message-ID: <20071016175245.51740@...18...> Hi Fernando, to ship the sweatshirt alternatively the t-shirt from germany to canada will cost 8 Euro. If you are still interested, i can send you some artworks. and if you like a artwork, i will order it and then send it to you to canada. best regards, frank. -------- Original-Nachricht -------- > Datum: Mon, 15 Oct 2007 17:59:26 -0500 > Von: "nando" > An: mailing list for gambas users > Betreff: Re: [Gambas-user] how do you like this shirt? > That's wonderful! > I would like to have these available for sale here in Canada. > How can I get your artwork? fees, royalties, etc? > -Fernando > > > ---------- Original Message ----------- > From: gnu.linux at ...18... > To: gambas-user at lists.sourceforge.net > Sent: Mon, 15 Oct 2007 22:28:39 +0200 > Subject: [Gambas-user] how do you like this shirt? > > > Hi gambas-friends, > > > > how do you like this shirt, without a slogan, but with the address of > the gambas- > > project? > > > > Best Regards, > > Frank. > > -- > > GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. > > Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail > ------- End of Original Message ------- > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Psssst! Schon vom neuen GMX MultiMessenger geh?rt? Der kanns mit allen: http://www.gmx.net/de/go/multimessenger From gambas.fr at ...626... Tue Oct 16 23:07:16 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 16 Oct 2007 23:07:16 +0200 Subject: [Gambas-user] New Version of gbs2 Message-ID: <200710162307.16939.gambas.fr@...626...> Hi to all, This is a quite finished version for gbs2 - New the commentaries are removed to prevent errors - Some information options have been added (--Help, --version) If you have more ideas... tell me them. Regards, Fabien Bodard -------------- next part -------------- A non-text attachment was scrubbed... Name: gbs2-0.0.32.tar.gz Type: application/x-tgz Size: 7449 bytes Desc: not available URL: From gnu.linux at ...18... Wed Oct 17 02:34:49 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Wed, 17 Oct 2007 02:34:49 +0200 Subject: [Gambas-user] gambas programming distribution Message-ID: <20071017003449.46860@...18...> hi gambas-friends, i want to know from you if it makes any sense to create a "gambas programming distribution". i thought about a basic small distribution based on debian linux with the following programs: - gambas2-suite - xfce - java - firefox - the gimp - archivmanager - calculator - mousepad (texteditor) - (your suggestion) just a programming linux. if someone is interested i can start creating this distro at the weekend. best regards, frank. -- Psssst! Schon vom neuen GMX MultiMessenger geh?rt? Der kanns mit allen: http://www.gmx.net/de/go/multimessenger From amurphy at ...1634... Wed Oct 17 02:52:58 2007 From: amurphy at ...1634... (Allen Murphy) Date: Tue, 16 Oct 2007 20:52:58 -0400 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017003449.46860@...18...> References: <20071017003449.46860@...18...> Message-ID: <1192582378.5793.3.camel@...1715...> Frank, I think this is a great idea. Allen On Wed, 2007-10-17 at 02:34 +0200, gnu.linux at ...18... wrote: > hi gambas-friends, > > i want to know from you if it makes any sense to create a "gambas programming distribution". > i thought about a basic small distribution based on debian linux with the following programs: > > - gambas2-suite > - xfce > - java > - firefox > - the gimp > - archivmanager > - calculator > - mousepad (texteditor) > - (your suggestion) > > just a programming linux. > if someone is interested i can start creating this distro at the weekend. > > best regards, > frank. From dcamposf at ...626... Wed Oct 17 02:54:01 2007 From: dcamposf at ...626... (Daniel Campos) Date: Wed, 17 Oct 2007 02:54:01 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017003449.46860@...18...> References: <20071017003449.46860@...18...> Message-ID: <7259b5ae0710161754m69076dedu170e568bc90055d3@...627...> Hi: Why java? Daniel 2007/10/17, gnu.linux at ...18... : > hi gambas-friends, > > i want to know from you if it makes any sense to create a "gambas programming distribution". > i thought about a basic small distribution based on debian linux with the following programs: > > - gambas2-suite > - xfce > - java > - firefox > - the gimp > - archivmanager > - calculator > - mousepad (texteditor) > - (your suggestion) > > just a programming linux. > if someone is interested i can start creating this distro at the weekend. > > best regards, > frank. > -- > Psssst! Schon vom neuen GMX MultiMessenger geh?rt? > Der kanns mit allen: http://www.gmx.net/de/go/multimessenger > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From amurphy at ...1634... Wed Oct 17 03:15:29 2007 From: amurphy at ...1634... (Allen Murphy) Date: Tue, 16 Oct 2007 21:15:29 -0400 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017003449.46860@...18...> References: <20071017003449.46860@...18...> Message-ID: <1192583729.5793.16.camel@...1715...> One addition could be Gambas 1.0.19. That way the distro can run any Gambas applications. On Wed, 2007-10-17 at 02:34 +0200, gnu.linux at ...18... wrote: > hi gambas-friends, > > i want to know from you if it makes any sense to create a "gambas programming distribution". > i thought about a basic small distribution based on debian linux with the following programs: > > - gambas2-suite > - xfce > - java > - firefox > - the gimp > - archivmanager > - calculator > - mousepad (texteditor) > - (your suggestion) > > just a programming linux. > if someone is interested i can start creating this distro at the weekend. > > best regards, > frank. From sourceforge-raindog2 at ...94... Wed Oct 17 04:57:37 2007 From: sourceforge-raindog2 at ...94... (Rob) Date: Tue, 16 Oct 2007 22:57:37 -0400 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017003449.46860@...18...> References: <20071017003449.46860@...18...> Message-ID: <200710162257.37057.sourceforge-raindog2@...94...> On Tuesday 16 October 2007 20:34, gnu.linux at ...18... wrote: > i want to know from you if it makes any sense to create a "gambas > programming distribution". i thought about a basic small > distribution based on debian linux with the following programs: It sounds like a neat idea, as long as it's a live CD as well so curious VB users can check it out. With xfce and a minimal collection of packages it sounds like you meant it to be one. Rob From timothy.marshal-nichols at ...247... Wed Oct 17 08:30:06 2007 From: timothy.marshal-nichols at ...247... (timothy) Date: Wed, 17 Oct 2007 07:30:06 +0100 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017003449.46860@...18...> Message-ID: <000901c81087$2c7ba830$6401a8c0@...1587...> > -----Original Message----- > From: gambas-user-bounces at lists.sourceforge.net > [mailto:gambas-user-bounces at lists.sourceforge.net] On Behalf > Of gnu.linux at ...18... > Sent: Wednesday, 17 October 2007 01:35 AM > To: gambas-user at lists.sourceforge.net > Subject: [Gambas-user] gambas programming distribution > > > hi gambas-friends, > > i want to know from you if it makes any sense to create a > "gambas programming distribution". i thought about a basic > small distribution based on debian linux with the following programs: > > - gambas2-suite > - xfce > - java > - firefox > - the gimp > - archivmanager > - calculator > - mousepad (texteditor) > - (your suggestion) > > just a programming linux. > if someone is interested i can start creating this distro at > the weekend. > > best regards, > frank. > -- As Alan said Gambas 1.0.19. It would be useful to have MySQL so the database examples work. (If it was a live CD it would be useful for it to need *NO* setup). And at least SQLite 2 and 3 (Version 2 is used by Gambas 1.0.19). Thanks 8-{)} Timothy Marshal-Nichols From gambas at ...1... Wed Oct 17 11:41:58 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 17 Oct 2007 11:41:58 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017003449.46860@...18...> References: <20071017003449.46860@...18...> Message-ID: <200710171141.58295.gambas@...1...> On mercredi 17 octobre 2007, gnu.linux at ...18... wrote: > hi gambas-friends, > > i want to know from you if it makes any sense to create a "gambas > programming distribution". i thought about a basic small distribution based > on debian linux with the following programs: > > - gambas2-suite > - xfce > - java > - firefox > - the gimp > - archivmanager > - calculator > - mousepad (texteditor) > - (your suggestion) > > just a programming linux. > if someone is interested i can start creating this distro at the weekend. > > best regards, > frank. You should try to put as many gambas & gambas2 components as possible, with all their libraries they depend on (database clients, SDL, OpenGL, curl, GTK+, QT...). And as Daniel asked, why java ? :-) -- Benoit Minisini From faasse at ...1252... Wed Oct 17 11:59:52 2007 From: faasse at ...1252... (p.r. faasse) Date: Wed, 17 Oct 2007 11:59:52 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <200710171141.58295.gambas@...1...> References: <20071017003449.46860@...18...> <200710171141.58295.gambas@...1...> Message-ID: <200710171159.52923.faasse@...1252...> On Wednesday 17 October 2007 11:41, Benoit Minisini wrote: > On mercredi 17 octobre 2007, gnu.linux at ...18... wrote: > > hi gambas-friends, > > > > i want to know from you if it makes any sense to create a "gambas > > programming distribution". i thought about a basic small distribution > > based on debian linux with the following programs: > > > > - gambas2-suite > > - xfce > > - java > > - firefox > > - the gimp > > - archivmanager > > - calculator > > - mousepad (texteditor) > > - (your suggestion) > > > > just a programming linux. > > if someone is interested i can start creating this distro at the weekend. > > > > best regards, > > frank. > > You should try to put as many gambas & gambas2 components as possible, with > all their libraries they depend on (database clients, SDL, OpenGL, curl, > GTK+, QT...). > > And as Daniel asked, why java ? :-) In the 'chapter' of why... A gambas-programming distro you mention... Just as a suggestion/thought experiment: go 'all the way': jetisson all but that which is needed to program gambas(2)... That would probably result in a small footprint. With a little luck small enough to fit on an USB stick/live-like system. Everything you put on your distro will require attention and maintenance... If you want to focus upon gambas, i'd respectfully suggest (but no more than suggest..) you indeed do so ;-) kind regards, Peter From david_villalobos_c at ...43... Wed Oct 17 14:09:56 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 17 Oct 2007 05:09:56 -0700 (PDT) Subject: [Gambas-user] Workspace on Gambas 1.9.90 Message-ID: <661223.21947.qm@...1656...> Hi, here is anexample. I can see the Close() event run, but the windows still open ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Tuesday, October 16, 2007 8:55:38 AM Subject: Re: [Gambas-user] Workspace on Gambas 1.9.90 On mardi 16 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > I have Gambas 1.9.90 isntalled on Mandriva 2007.1, use qt. > > I make a small application tha use the WorkSpace of gb.form.mdi to > embbed some forms, when I close a window the event Form_Close() was > executed (on gambas 1.9.50) but now it fails. Can someone help me? I want > to know if this is an error or not? > > Many thanks > > David > That seems to work there. You must provide me a project that fails as you described. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Need a vacation? Get great deals to amazing places on Yahoo! Travel. http://travel.yahoo.com/ From david_villalobos_c at ...43... Wed Oct 17 14:11:15 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 17 Oct 2007 05:11:15 -0700 (PDT) Subject: [Gambas-user] Workspace on Gambas 1.9.90 Message-ID: <41108.67861.qm@...1667...> Sorry, I forgot yo attach the file Hi, here is anexample. I can see the Close() event run, but the windows still open ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Tuesday, October 16, 2007 8:55:38 AM Subject: Re: [Gambas-user] Workspace on Gambas 1.9.90 On mardi 16 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > I have Gambas 1.9.90 isntalled on Mandriva 2007.1, use qt. > > I make a small application tha use the WorkSpace of gb.form.mdi to > embbed some forms, when I close a window the event Form_Close() was > executed (on gambas 1.9.50) but now it fails. Can someone help me? I want > to know if this is an error or not? > > Many thanks > > David > That seems to work there. You must provide me a project that fails as you described. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Need a vacation? Get great deals to amazing places on Yahoo! Travel. http://travel.yahoo.com/ ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Moody friends. Drama queens. Your life? Nope! - their life, your story. Play Sims Stories at Yahoo! Games. http://sims.yahoo.com/ -------------- next part -------------- A non-text attachment was scrubbed... Name: Error.tar.gz Type: application/gzip Size: 5986 bytes Desc: not available URL: From david_villalobos_c at ...43... Wed Oct 17 14:23:04 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 17 Oct 2007 05:23:04 -0700 (PDT) Subject: [Gambas-user] gambas programming distribution Message-ID: <814684.16849.qm@...1716...> Hi... As some of you said, I think we should add all (or almost all) the components and its requeriments. I will add Quanta (HTML editor). Some gambas's reports are created in HTML format and some other components use HTML too, so, I think a HTML editor will be usefull ----- Original Message ---- From: p.r. faasse To: mailing list for gambas users Sent: Wednesday, October 17, 2007 3:59:52 AM Subject: Re: [Gambas-user] gambas programming distribution On Wednesday 17 October 2007 11:41, Benoit Minisini wrote: > On mercredi 17 octobre 2007, gnu.linux at ...18... wrote: > > hi gambas-friends, > > > > i want to know from you if it makes any sense to create a "gambas > > programming distribution". i thought about a basic small distribution > > based on debian linux with the following programs: > > > > - gambas2-suite > > - xfce > > - java > > - firefox > > - the gimp > > - archivmanager > > - calculator > > - mousepad (texteditor) > > - (your suggestion) > > > > just a programming linux. > > if someone is interested i can start creating this distro at the weekend. > > > > best regards, > > frank. > > You should try to put as many gambas & gambas2 components as possible, with > all their libraries they depend on (database clients, SDL, OpenGL, curl, > GTK+, QT...). > > And as Daniel asked, why java ? :-) In the 'chapter' of why... A gambas-programming distro you mention... Just as a suggestion/thought experiment: go 'all the way': jetisson all but that which is needed to program gambas(2)... That would probably result in a small footprint. With a little luck small enough to fit on an USB stick/live-like system. Everything you put on your distro will require attention and maintenance... If you want to focus upon gambas, i'd respectfully suggest (but no more than suggest..) you indeed do so ;-) kind regards, Peter ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user ____________________________________________________________________________________ Check out the hottest 2008 models today at Yahoo! Autos. http://autos.yahoo.com/new_cars.html From ronstk at ...239... Wed Oct 17 15:46:56 2007 From: ronstk at ...239... (ron) Date: Wed, 17 Oct 2007 15:46:56 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017003449.46860@...18...> References: <20071017003449.46860@...18...> Message-ID: <200710171546.56320.ronstk@...239...> On Wednesday 17 October 2007 02:34, gnu.linux at ...18... wrote: > hi gambas-friends, > > i want to know from you if it makes any sense to create a "gambas programming distribution". > i thought about a basic small distribution based on debian linux with the following programs: > > - gambas2-suite > - xfce > - java > - firefox > - the gimp > - archivmanager > - calculator > - mousepad (texteditor) > - (your suggestion) What about the gtk(+) and kdebase(qt) libs ? > > just a programming linux. > if someone is interested i can start creating this distro at the weekend. > > best regards, > frank. Just a idea, use ./configure -C --prefix=/opt/gambas for 1.0.19 and use ./configure -C --prefix=/opt/gambas2 for 1.9.90 Just do not forget the gambas directories to set free for users instead root :) This way the people can clearly see what is involved by gambas. All the other stuff as mysql, sqlite etc as standard in debian done. Side point of using /opt/gambas is the development of trial programs can be done also in the /opt/gambas tree and by a final install the user can find the trial project(s) for copy at a more logic place. After all it is a optional package in real life as what /opt is for. Anyway your idea to do this is great :) Ron PS Quanta does kde/qt basic parts already ? Can just a simple small gnome app (mousepad or gedit) do the same for gtk basic stuff? From gambas.fr at ...626... Wed Oct 17 16:26:32 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 17 Oct 2007 16:26:32 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <200710171546.56320.ronstk@...239...> References: <20071017003449.46860@...18...> <200710171546.56320.ronstk@...239...> Message-ID: <6324a42a0710170726pc84d680jf515ce4f8d4ba180@...627...> 2007/10/17, ron : > > On Wednesday 17 October 2007 02:34, gnu.linux at ...18... wrote: > > hi gambas-friends, > > > > i want to know from you if it makes any sense to create a "gambas > programming distribution". > > i thought about a basic small distribution based on debian linux with > the following programs: > > > > - gambas2-suite > > - xfce > > - java > > - firefox > > - the gimp > > - archivmanager > > - calculator > > - mousepad (texteditor) > > - (your suggestion) > > What about the gtk(+) and kdebase(qt) libs ? > > > > > just a programming linux. > > if someone is interested i can start creating this distro at the > weekend. > > > > best regards, > > frank. > > Just a idea, > > use ./configure -C --prefix=/opt/gambas for 1.0.19 > and > use ./configure -C --prefix=/opt/gambas2 for 1.9.90 > > Just do not forget the gambas directories to set free for users instead > root :) > > This way the people can clearly see what is involved by gambas. > All the other stuff as mysql, sqlite etc as standard in debian done. > > Side point of using /opt/gambas is the development of trial programs > can be done also in the /opt/gambas tree and by a final install > the user can find the trial project(s) for copy at a more logic place. > > After all it is a optional package in real life as what /opt is for. > > Anyway your idea to do this is great :) > > Ron > > PS > Quanta does kde/qt basic parts already ? > Can just a simple small gnome app (mousepad or gedit) do the same for gtk > basic stuff? or kate :-) ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gnu.linux at ...18... Wed Oct 17 19:10:25 2007 From: gnu.linux at ...18... (gnu.linux at ...18...) Date: Wed, 17 Oct 2007 19:10:25 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <6324a42a0710170726pc84d680jf515ce4f8d4ba180@...627...> References: <20071017003449.46860@...18...> <200710171546.56320.ronstk@...239...> <6324a42a0710170726pc84d680jf515ce4f8d4ba180@...627...> Message-ID: <20071017171025.51750@...18...> Hi gambas-friends, at the weekend i will create a gambas-distro :) and try to attend all your suggestions. Today i created the suitable desktop background. best regards, frank. -------- Original-Nachricht -------- > Datum: Wed, 17 Oct 2007 16:26:32 +0200 > Von: "Fabien Bodard" > An: "mailing list for gambas users" > Betreff: Re: [Gambas-user] gambas programming distribution > 2007/10/17, ron : > > > > On Wednesday 17 October 2007 02:34, gnu.linux at ...18... wrote: > > > hi gambas-friends, > > > > > > i want to know from you if it makes any sense to create a "gambas > > programming distribution". > > > i thought about a basic small distribution based on debian linux with > > the following programs: > > > > > > - gambas2-suite > > > - xfce > > > - java > > > - firefox > > > - the gimp > > > - archivmanager > > > - calculator > > > - mousepad (texteditor) > > > - (your suggestion) > > > > What about the gtk(+) and kdebase(qt) libs ? > > > > > > > > just a programming linux. > > > if someone is interested i can start creating this distro at the > > weekend. > > > > > > best regards, > > > frank. > > > > Just a idea, > > > > use ./configure -C --prefix=/opt/gambas for 1.0.19 > > and > > use ./configure -C --prefix=/opt/gambas2 for 1.9.90 > > > > Just do not forget the gambas directories to set free for users instead > > root :) > > > > This way the people can clearly see what is involved by gambas. > > All the other stuff as mysql, sqlite etc as standard in debian done. > > > > Side point of using /opt/gambas is the development of trial programs > > can be done also in the /opt/gambas tree and by a final install > > the user can find the trial project(s) for copy at a more logic place. > > > > After all it is a optional package in real life as what /opt is for. > > > > Anyway your idea to do this is great :) > > > > Ron > > > > PS > > Quanta does kde/qt basic parts already ? > > Can just a simple small gnome app (mousepad or gedit) do the same for > gtk > > basic stuff? > > > or kate :-) > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal f?r Modem und ISDN: http://www.gmx.net/de/go/smartsurfer From rgx at ...17... Wed Oct 17 20:53:43 2007 From: rgx at ...17... (RalfGesellensetter) Date: Wed, 17 Oct 2007 20:53:43 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017171025.51750@...18...> References: <20071017003449.46860@...18...> <6324a42a0710170726pc84d680jf515ce4f8d4ba180@...627...> <20071017171025.51750@...18...> Message-ID: <200710172053.43666.rgx@...17...> Am Mittwoch, 17. Oktober 2007 19:10:25 schrieb gnu.linux at ...18...: > at the weekend i will create a gambas-distro Hi frank, nice approach. It would be great to have a live CD with GAMBAS included. As for installable distros, I can't see the sense of yet another one. As a live CD, it might be needful to mount existing media (which can happen niceley with hald under KDE, don't know as for other desktop engines). IceWM seems easier to use compared to XFCE. But maybe I err. Regards Ralf From rgx at ...17... Wed Oct 17 21:00:22 2007 From: rgx at ...17... (RalfGesellensetter) Date: Wed, 17 Oct 2007 21:00:22 +0200 Subject: [Gambas-user] Q: Turtle Graphic with Gambas Message-ID: <200710172100.23453.rgx@...17...> Dear list, introducing pupils to Programming by means of Gambas is a nice matter. It is easy to make characters move - time controlled! As for coordinates, expecially younger kids have problems. This is the reason, why LOGO is used in primary school - and above - and even Java tutorials introduced turtle-graph elements to conquer this obstacle. It shouldn't be to hard to create a Turtle module for Gambas - but maybe it is already there? For those who have not one clue what this is about: Basic draw instructions would be: [move] forward X [turn] right | left X So you'll draw a square by saying: forward 100 left 90 forward 100 left 90 forward 100 left 90 forward 100 Regards Ralf From rgx at ...17... Wed Oct 17 21:03:41 2007 From: rgx at ...17... (RalfGesellensetter) Date: Wed, 17 Oct 2007 21:03:41 +0200 Subject: [Gambas-user] Q: Online help Message-ID: <200710172103.41371.rgx@...17...> Excuse my ignorance, but what key needs to be pressed in order to get context help for a selected keyword? Pressing F1 takes me to /usr/share/gambas2/help/tree/index.html whatever word I mark. Example: I highlight 'Collection' and want to read about it? Regards Ralf From o.s.p at ...69... Wed Oct 17 21:08:38 2007 From: o.s.p at ...69... (o.s.p) Date: Wed, 17 Oct 2007 21:08:38 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <1192582378.5793.3.camel@...1715...> References: <20071017003449.46860@...18...> <1192582378.5793.3.camel@...1715...> Message-ID: <47165DB6.7030700@...69...> very good! but i would be handy a complete envoirment accessible from my working system; something like a chroot enviorment or a package for klik (ps: i'm not a linux guru :) bye > Frank, > > I think this is a great idea. > > Allen > > On Wed, 2007-10-17 at 02:34 +0200, gnu.linux at ...18... wrote: > > >> hi gambas-friends, >> >> i want to know from you if it makes any sense to create a "gambas programming distribution". >> i thought about a basic small distribution based on debian linux with the following programs: >> >> - gambas2-suite >> - xfce >> - java >> - firefox >> - the gimp >> - archivmanager >> - calculator >> - mousepad (texteditor) >> - (your suggestion) >> >> just a programming linux. >> if someone is interested i can start creating this distro at the weekend. >> >> best regards, >> frank. >> > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > . > > From nando_f at ...951... Wed Oct 17 22:17:44 2007 From: nando_f at ...951... (nando) Date: Wed, 17 Oct 2007 15:17:44 -0500 Subject: [Gambas-user] how do you like this shirt? In-Reply-To: <20071016175245.51740@...18...> References: <20071015202839.173740@...18...> <20071015225656.M45248@...951...> <20071016175245.51740@...18...> Message-ID: <20071017201720.M77676@...951...> Yes please. Give me a mailing address so I can send you money. ---------- Original Message ----------- From: gnu.linux at ...18... To: nando_f at ...951..., mailing list for gambas users Sent: Tue, 16 Oct 2007 19:52:45 +0200 Subject: Re: [Gambas-user] how do you like this shirt? > Hi Fernando, > > to ship the sweatshirt alternatively the t-shirt from germany to canada will > cost 8 Euro. If you are still interested, i can send you some artworks. and if > you like a artwork, i will order it and then send it to you to canada. > > best regards, > frank. > -------- Original-Nachricht -------- > > Datum: Mon, 15 Oct 2007 17:59:26 -0500 > > Von: "nando" > > An: mailing list for gambas users > > Betreff: Re: [Gambas-user] how do you like this shirt? > > > That's wonderful! > > I would like to have these available for sale here in Canada. > > How can I get your artwork? fees, royalties, etc? > > -Fernando > > > > > > ---------- Original Message ----------- > > From: gnu.linux at ...18... > > To: gambas-user at lists.sourceforge.net > > Sent: Mon, 15 Oct 2007 22:28:39 +0200 > > Subject: [Gambas-user] how do you like this shirt? > > > > > Hi gambas-friends, > > > > > > how do you like this shirt, without a slogan, but with the address of > > the gambas- > > > project? > > > > > > Best Regards, > > > Frank. > > > -- > > > GMX FreeMail: 1 GB Postfach, 5 E-Mail-Adressen, 10 Free SMS. > > > Alle Infos und kostenlose Anmeldung: http://www.gmx.net/de/go/freemail > > ------- End of Original Message ------- > > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > -- > Psssst! Schon vom neuen GMX MultiMessenger geh?rt? > Der kanns mit allen: http://www.gmx.net/de/go/multimessenger > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user ------- End of Original Message ------- From gambas.fr at ...626... Wed Oct 17 23:00:43 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 17 Oct 2007 23:00:43 +0200 Subject: [Gambas-user] New version of gbs again :) Message-ID: <200710172300.43518.gambas.fr@...626...> This time it is better (with Benoit suggest), The Keywords have a #in the beginning like C++ preprocessor words so #USE #CLASS & #END CLASS #INCLUDE Now the executable is stored in a cache named "script-cache" in the standard temporary file folder of gambas. Now i don't make bad use of the instr function and prefers the LIKE operator Now if you put a comment in a special line it while cause horrible things.... Enjoy it, Fabien Bodard One vote for the .g extention. -------------- next part -------------- #!/usr/bin/env gbs2 #USE gb.qt #INCLUDE inc.g PUBLIC SUB Main() CTest.Test END #CLASS CTest STATIC Public sub Test() 'Dim hForm as New frmTest as "Form" frmTest.Show END Public sub Form_Hide() Message("You have closed me") End #END CLASS -------------- next part -------------- #USE gb.qt #CLASS frmTest INHERITS Form Private hForm as Form Public Sub _New() Dim txtlbl as TextLabel txtlbl = new TextLabel(ME) ME.Arrangement = arrange.fill txtLbl.Text = "Incredible!!! " END #END CLASS -------------- next part -------------- A non-text attachment was scrubbed... Name: gbs2-0.0.38.tar.gz Type: application/x-tgz Size: 7323 bytes Desc: not available URL: From gambas at ...1... Thu Oct 18 00:46:43 2007 From: gambas at ...1... (Benoit Minisini) Date: Thu, 18 Oct 2007 00:46:43 +0200 Subject: [Gambas-user] Q: Online help In-Reply-To: <200710172103.41371.rgx@...17...> References: <200710172103.41371.rgx@...17...> Message-ID: <200710180046.43167.gambas@...1...> On mercredi 17 octobre 2007, RalfGesellensetter wrote: > Excuse my ignorance, > > but what key needs to be pressed in order to get context help for a > selected keyword? Pressing F1 takes me to > /usr/share/gambas2/help/tree/index.html whatever word I mark. > > Example: I highlight 'Collection' and want to read about it? > > Regards > Ralf > F2 is the magic key. You don't have to select the symbol. Just put the cursor in the symbol, and F2 will open the help page on it, or bring you to the definition of the symbol if it is defined in the project. In the last case, SHIFT-F2 will bring you back to the initial cursor position. I know, this is not documented... Maybe I should add an entry in the editor menu. Regards, -- Benoit Minisini From ronstk at ...239... Thu Oct 18 01:01:18 2007 From: ronstk at ...239... (ron) Date: Thu, 18 Oct 2007 01:01:18 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <6324a42a0710170726pc84d680jf515ce4f8d4ba180@...627...> References: <20071017003449.46860@...18...> <200710171546.56320.ronstk@...239...> <6324a42a0710170726pc84d680jf515ce4f8d4ba180@...627...> Message-ID: <200710180101.18572.ronstk@...239...> On Wednesday 17 October 2007 16:26, Fabien Bodard wrote: > 2007/10/17, ron : > > > > On Wednesday 17 October 2007 02:34, gnu.linux at ...18... wrote: > > > hi gambas-friends, > > > > > > i want to know from you if it makes any sense to create a "gambas > > programming distribution". > > > i thought about a basic small distribution based on debian linux with > > the following programs: > > > > > > - gambas2-suite > > > - xfce > > > - java > > > - firefox > > > - the gimp > > > - archivmanager > > > - calculator > > > - mousepad (texteditor) > > > - (your suggestion) > > > > What about the gtk(+) and kdebase(qt) libs ? > > > > > > > > just a programming linux. > > > if someone is interested i can start creating this distro at the > > weekend. > > > > > > best regards, > > > frank. > > > > Just a idea, > > > > use ./configure -C --prefix=/opt/gambas for 1.0.19 > > and > > use ./configure -C --prefix=/opt/gambas2 for 1.9.90 > > > > Just do not forget the gambas directories to set free for users instead > > root :) > > > > This way the people can clearly see what is involved by gambas. > > All the other stuff as mysql, sqlite etc as standard in debian done. > > > > Side point of using /opt/gambas is the development of trial programs > > can be done also in the /opt/gambas tree and by a final install > > the user can find the trial project(s) for copy at a more logic place. > > > > After all it is a optional package in real life as what /opt is for. > > > > Anyway your idea to do this is great :) > > > > Ron > > > > PS > > Quanta does kde/qt basic parts already ? > > Can just a simple small gnome app (mousepad or gedit) do the same for gtk > > basic stuff? > > > or kate :-) > Yes would my favorite too for editing but that whas not the goal. Quanta needs the kdebase libs as far I know. this forces the qt part must included. Kate needs these too but in the gamabs IDE there is already a programming editor. Quata is for HTML pages editing. Gedit purpose was to force the gtk libraries would included, what quata does for qt. This way the gb.qt and gb.kde are usefull used by gambas and another standalone application so testing both graphic environments is posible. When xfc uses gtk then this does not need gedit of course. :) Ron From rolf.frogs at ...221... Thu Oct 18 09:28:49 2007 From: rolf.frogs at ...221... (Rolf Schmidt) Date: Thu, 18 Oct 2007 09:28:49 +0200 Subject: [Gambas-user] gambas programming distribution In-Reply-To: <20071017171025.51750@...18...> References: <20071017003449.46860@...18...> <6324a42a0710170726pc84d680jf515ce4f8d4ba180@...627...> <20071017171025.51750@...18...> Message-ID: <200710180928.52378.rolf.frogs@...221...> Hi Frank, > at the weekend i will create a gambas-distro :) and try to attend all your > suggestions. Today i created the suitable desktop background. Your idea sounds great. What I am missing in the suggestions, is the possibility to show some of the other excellent features of gambas - beneath its visual programming aproach. The features I find exciting are the possibility to write database and desktop independend programms. So I think a distribution should show this as well. So, in my opinion, the distri should have mysql, postgresql and sqlite (and perhaps some example to show how easy the dbms could be changed) and both desktop environments (kde and gnome) to show that one can wrote programs which may run in both environments. Of course the distri should have the pdf-versions of the gambas book(s), the documentation wiki, a webbrowser and perhaps gimp for some fancy work and an editor. This could be a good promo distri for gambas, showing most of its great features. Rolf -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part. URL: From dcamposf at ...626... Thu Oct 18 11:26:32 2007 From: dcamposf at ...626... (Daniel Campos) Date: Thu, 18 Oct 2007 11:26:32 +0200 Subject: [Gambas-user] Little gb.gui demo Message-ID: <7259b5ae0710180226g5f6f9eacvd8841b5e69d5dd04@...627...> Hi: Here's a little demo of gb.gui component (gb.gtk/gb.qt switching): http://azores.linex.org/gambas-other/gtk-qt.ogg Daniel From rgx at ...17... Thu Oct 18 15:29:32 2007 From: rgx at ...17... (RalfGesellensetter) Date: Thu, 18 Oct 2007 15:29:32 +0200 Subject: [Gambas-user] Q: Online help In-Reply-To: <200710180046.43167.gambas@...1...> References: <200710172103.41371.rgx@...17...> <200710180046.43167.gambas@...1...> Message-ID: <200710181529.34961.rgx@...17...> Am Donnerstag 18 Oktober 2007 00:46 schrieb Benoit Minisini: > I know, this is not documented... Maybe I should add an entry in the > editor menu. Hi, actually I must have tried F2 - because it had worked before. I just had forgotten what key I used - hence your idea of adding a line to the ?-Menu or a symbol to the task bar (? in a blue circle, maybe) or even an entry in the context menu (right click in the editor). Another idea, if I dype Draw. the combobox displays all valid competions (luckily all marked with different types of dots). Maby it could be helpful to have a grouping here (functions, properties, ... + HELP). Just a thought. As it is, it is a pitty that so few people know of the nice feature F2. Kind regards Ralf From gambas at ...1... Fri Oct 19 09:42:51 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 19 Oct 2007 09:42:51 +0200 Subject: [Gambas-user] Workspace on Gambas 1.9.90 In-Reply-To: <41108.67861.qm@...1667...> References: <41108.67861.qm@...1667...> Message-ID: <200710190942.51891.gambas@...1...> On mercredi 17 octobre 2007, David Villalobos Cambronero wrote: > Sorry, I forgot yo attach the file > > > Hi, here is anexample. > > I can see the Close() event run, but the windows still open > I have understood that the Close event didn't run! Now I see... This bug should be fixed in the last revision (757). Regards, -- Benoit Minisini From gambas at ...1... Fri Oct 19 09:49:52 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 19 Oct 2007 09:49:52 +0200 Subject: [Gambas-user] DataView in gb.db.form In-Reply-To: <326841.40377.qm@...1658...> References: <326841.40377.qm@...1658...> Message-ID: <200710190949.52942.gambas@...1...> On mardi 16 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > I think I find a bug in the DataView in gb.db.form the property Headers > do not show them, only if vertical or horizantal is setted, I mean if both > are setted they are not shown. > > I try to show them on Gambas 1.9.90 with Mandriva 2007.1 > > Can someone try to reproduce the error? I want to know if it is > correct. > > Regards. > > David > Do you have a sample code of your problem? What you describe is not really clear. Regards, -- Benoit Minisini From rgx at ...17... Fri Oct 19 11:17:56 2007 From: rgx at ...17... (rgx at ...17...) Date: Fri, 19 Oct 2007 11:17:56 +0200 Subject: [Gambas-user] Repair upgraded project version (Help!) Message-ID: <20071019091756.114140@...18...> Dear list, ?yesterday, I prepared a Gambas project for my class, using version 1.9.49? (Debian Sarge Backports). This is the most recent versions, my pupils can use. ?Today I opened this version on the teachers' PC (Debian Edu Etch) with version 1.9.90. Saving it, makes this project unusable for my pupils. I don't have a backup, so I tried changing .project file and so on - but it seems not to be trivial to make the former Gambas accept? the project again. ?Any hints / tweaks for this? ?Cheers Ralf? ? -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal f?r Modem und ISDN: http://www.gmx.net/de/go/smartsurfer From gambas.fr at ...626... Fri Oct 19 11:36:45 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Fri, 19 Oct 2007 11:36:45 +0200 Subject: [Gambas-user] Repair upgraded project version (Help!) In-Reply-To: <20071019091756.114140@...18...> References: <20071019091756.114140@...18...> Message-ID: <200710191136.46139.gambas.fr@...626...> Le Friday 19 October 2007 11:17:56 rgx at ...17..., vous avez ?crit?: > Dear list, > > ?yesterday, I prepared a Gambas project for my class, using version > 1.9.49? > > (Debian Sarge Backports). This is the most recent versions, my pupils can > use. > > ?Today I opened this version on the teachers' PC (Debian Edu Etch) with > version 1.9.90. > > Saving it, makes this project unusable for my pupils. I don't have a > backup, so I tried > > changing .project file and so on - but it seems not to be trivial to make > the former Gambas accept? > > the project again. > > ?Any hints / tweaks for this? > > ?Cheers > > Ralf? > > ? send me the project... mabe i can do something Are you sure you have all the libs installed ? in the puplis computer ? what version of gambas do you use on you own machine ? Fabien From fredrik_hansson at ...1788... Fri Oct 19 12:00:51 2007 From: fredrik_hansson at ...1788... (Fredrik Hansson) Date: Fri, 19 Oct 2007 12:00:51 +0200 Subject: [Gambas-user] Gambas doesn't start after upgrading to Ubuntu's Gambas2 In-Reply-To: References: Message-ID: <47188053.7050505@...1788...> Hi, Originally I had both Gambas 1 and 1.9.49 installed parallell. 1. I upgraded from Ubuntu 7.04 to Ubuntu 7.10 using built-in upgrade. Everything (else) works fine now. 2. I uninstalled Gambas using Ubuntu's Add/remove tool. 3. I installed Gambas2 using Ubuntu's Add/Remove. Now, Gambas2 refuses to start. a) No message clicking the icon in the program list. b) Message trying to start from terminal: fredrik at ...1789...:~$ gambas2 ERROR: #27: Cannot load component 'gb.form.dialog': cannot find library file So, something's missing... or? What should I do? Regards, Fredrik Hansson From fabio.colinelli at ...1790... Fri Oct 19 13:29:20 2007 From: fabio.colinelli at ...1790... (fabio.colinelli at ...1790...) Date: Fri, 19 Oct 2007 13:29:20 +0200 Subject: [Gambas-user] Gambas-user Digest, Vol 17, Issue 27 In-Reply-To: References: Message-ID: From jredrejo at ...626... Fri Oct 19 13:54:04 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Fri, 19 Oct 2007 13:54:04 +0200 Subject: [Gambas-user] Gambas doesn't start after upgrading to Ubuntu's Gambas2 In-Reply-To: <47188053.7050505@...1788...> References: <47188053.7050505@...1788...> Message-ID: <8eb28a500710190454q1ae5559y373d33a815a104eb@...627...> It's quite obvious that Ubuntu packages are broken after your upgrade and gambas2-gb-form package doesn't exist or just doesn't work. You should pass this information to Ubuntu bug tracking system and wait for them to fix it. You can also use Debian instead ;-) Cheers 2007/10/19, Fredrik Hansson : > > Hi, > > Originally I had both Gambas 1 and 1.9.49 installed parallell. > > 1. I upgraded from Ubuntu 7.04 to Ubuntu 7.10 using built-in upgrade. > Everything (else) works fine now. > 2. I uninstalled Gambas using Ubuntu's Add/remove tool. > 3. I installed Gambas2 using Ubuntu's Add/Remove. > > Now, Gambas2 refuses to start. > a) No message clicking the icon in the program list. > b) Message trying to start from terminal: > > fredrik at ...1789...:~$ gambas2 > ERROR: #27: Cannot load component 'gb.form.dialog': cannot find library > file > > So, something's missing... or? > What should I do? > > Regards, > Fredrik Hansson > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From rohnny at ...1248... Fri Oct 19 16:32:43 2007 From: rohnny at ...1248... (R. Stormo) Date: Fri, 19 Oct 2007 07:32:43 -0700 (PDT) Subject: [Gambas-user] Gambas doesn't start after upgrading to Ubuntu's Gambas2 In-Reply-To: <47188053.7050505@...1788...> References: <47188053.7050505@...1788...> Message-ID: <13295674.post@...1379...> Fredrik Hansson-3 wrote: > > Hi, > > Originally I had both Gambas 1 and 1.9.49 installed parallell. > > 1. I upgraded from Ubuntu 7.04 to Ubuntu 7.10 using built-in upgrade. > Everything (else) works fine now. > 2. I uninstalled Gambas using Ubuntu's Add/remove tool. > 3. I installed Gambas2 using Ubuntu's Add/Remove. > > Now, Gambas2 refuses to start. > a) No message clicking the icon in the program list. > b) Message trying to start from terminal: > > fredrik at ...1789...:~$ gambas2 > ERROR: #27: Cannot load component 'gb.form.dialog': cannot find library > file > > So, something's missing... or? > What should I do? > > Regards, > Fredrik Hansson > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Have the same problem on a newly installed Ubuntu on a new pc. After reconf-all, configure, make and install O get the error. ERROR: #27: Cannot load component 'gb.form.dialog': cannot find library file Some know what library file is missing? -- View this message in context: http://www.nabble.com/Gambas-doesn%27t-start-after-upgrading-to-Ubuntu%27s-Gambas2-tf4652178.html#a13295674 Sent from the gambas-user mailing list archive at Nabble.com. From david_villalobos_c at ...43... Fri Oct 19 17:16:49 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Fri, 19 Oct 2007 08:16:49 -0700 (PDT) Subject: [Gambas-user] Workspace on Gambas 1.9.90 Message-ID: <377281.64664.qm@...1668...> Great!!! Many tks ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Friday, October 19, 2007 1:42:51 AM Subject: Re: [Gambas-user] Workspace on Gambas 1.9.90 On mercredi 17 octobre 2007, David Villalobos Cambronero wrote: > Sorry, I forgot yo attach the file > > > Hi, here is anexample. > > I can see the Close() event run, but the windows still open > I have understood that the Close event didn't run! Now I see... This bug should be fixed in the last revision (757). Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gambas at ...1... Fri Oct 19 21:31:15 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 19 Oct 2007 21:31:15 +0200 Subject: [Gambas-user] Repair upgraded project version (Help!) In-Reply-To: <20071019091756.114140@...18...> References: <20071019091756.114140@...18...> Message-ID: <200710192131.15894.gambas@...1...> On vendredi 19 octobre 2007, rgx at ...17... wrote: > Dear list, > > ?yesterday, I prepared a Gambas project for my class, using version > 1.9.49? > > (Debian Sarge Backports). This is the most recent versions, my pupils can > use. > > ?Today I opened this version on the teachers' PC (Debian Edu Etch) with > version 1.9.90. > > Saving it, makes this project unusable for my pupils. I don't have a > backup, so I tried > > changing .project file and so on - but it seems not to be trivial to make > the former Gambas accept? > > the project again. > > ?Any hints / tweaks for this? > > ?Cheers > > Ralf? > > ? You can try "Update all forms" in the "Tools" menu. It will upgrade your forms to the 1.9.90 syntax. Maybe it will help. Regards, -- Benoit Minisini From rgx at ...17... Fri Oct 19 22:20:45 2007 From: rgx at ...17... (RalfGesellensetter) Date: Fri, 19 Oct 2007 22:20:45 +0200 Subject: [Gambas-user] Repair upgraded project version (Help!) In-Reply-To: <200710192131.15894.gambas@...1...> References: <20071019091756.114140@...18...> <200710192131.15894.gambas@...1...> Message-ID: <200710192220.45814.rgx@...17...> Am Freitag, 19. Oktober 2007 21:31:15 schrieb Benoit Minisini: > You can try "Update all forms" in the "Tools" menu. It will upgrade your > forms to the 1.9.90 syntax. Maybe it will help. Sorry, wrong direction: I already - mistakenly - upgraded to 1.9.90, but still need to work on with 1.9.47. Just changing the version in .project from 2 to 1 didn't help. Regarde Ralf From rohnny at ...1248... Sun Oct 21 09:30:55 2007 From: rohnny at ...1248... (R. Stormo) Date: Sun, 21 Oct 2007 00:30:55 -0700 (PDT) Subject: [Gambas-user] Gutsy problem gb.form.dialog Message-ID: <13326739.post@...1379...> Have a problem after installed a fresh copy of gutsy and compiled svn gambas. ERROR: #27: Cannot load component 'gb.form.dialog': cannot find library file when I tried to start gambas So by fiddling a little. I installed 1.9.49 from my repertory, gambas started. So I open my project and included the gb.form to my project, it do work again :). Looks like something changed very much after .49. So i someone have any idea what needed to get gambas work from svn again please let us know. Gambas is compiling ok without errors. Regards Rohnny My Gambas Community http//gambasforum.tk -- View this message in context: http://www.nabble.com/Gutsy-problem-gb.form.dialog-tf4665232.html#a13326739 Sent from the gambas-user mailing list archive at Nabble.com. From gambas at ...1... Sun Oct 21 12:35:19 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 21 Oct 2007 12:35:19 +0200 Subject: [Gambas-user] Gutsy problem gb.form.dialog In-Reply-To: <13326739.post@...1379...> References: <13326739.post@...1379...> Message-ID: <200710211235.19844.gambas@...1...> On dimanche 21 octobre 2007, R. Stormo wrote: > Have a problem after installed a fresh copy of gutsy and compiled svn > gambas. > > ERROR: #27: Cannot load component 'gb.form.dialog': cannot find library > file when I tried to start gambas > > So by fiddling a little. I installed 1.9.49 from my repertory, gambas > started. So I open my project and included the gb.form to my project, it do > work again :). Looks like something changed very much after .49. > > So i someone have any idea what needed to get gambas work from svn again > please let us know. > Gambas is compiling ok without errors. > > > Regards Rohnny > > My Gambas Community http//gambasforum.tk Can you send me the full output of the compilation process ('./configure', 'make' and 'make install')? -- Benoit Minisini From rgx at ...17... Sun Oct 21 14:47:35 2007 From: rgx at ...17... (RalfGesellensetter) Date: Sun, 21 Oct 2007 14:47:35 +0200 Subject: [Gambas-user] Repair upgraded project version (Solved) In-Reply-To: <200710191136.46139.gambas.fr@...626...> References: <20071019091756.114140@...18...> <200710191136.46139.gambas.fr@...626...> Message-ID: <200710211447.36402.rgx@...17...> Am Freitag 19 Oktober 2007 schrieb Fabien Bodard: > send me the project... mabe i can do something Dear Fabien, dear list In a quite dirty way, I solved my problem by upgrading from gambas 1.9.47 to 1.9.51: 1st I had to download gambas2*9.51*.deb from http://apt.linex.org/linex/gambas/stable/ 2nd I ran dpkg -i *.deb But this didn't work as expected: ... dpkg: Dependency problems prevent configuration of gambas2-gb-info: gambas2-gb-info depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. ... dpkg: Dependency problems prevent configuration of gambas2-runtime: gambas2-runtime depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. Leaving all as it is lets us use 1.9.51 (unconfigured, but working) - and this version is able to open the project saved with 1.9.90! Below (roughly re-translated) Output of the installation. Maybe anybody could tell, why a sarge-Package needs a libc6 that is not in Sarge nor in Sarge backports. Regards Ralf. # dpkg -i *.deb (Reading Database ... 239711 Files and Directories installed.) Preparing replacement of gambas2-dev 1.9.47-1 (by gambas2-dev_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-dev ... Preparing replacement of gambas2-doc 1.9.47-1 (by gambas2-doc_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-doc ... Selecting new package gambas2-gb-chart. Unpacking gambas2-gb-chart (aus gambas2-gb-chart_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-compress. Unpacking gambas2-gb-compress (aus gambas2-gb-compress_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-compress-bzlib2. Unpacking gambas2-gb-compress-bzlib2 (aus gambas2-gb-compress-bzlib2_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-compress-zlib. Unpacking gambas2-gb-compress-zlib (aus gambas2-gb-compress-zlib_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-crypt. Unpacking gambas2-gb-crypt (aus gambas2-gb-crypt_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-db 1.9.47-1 (by gambas2-gb-db_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-db ... Preparing replacement of gambas2-gb-db-firebird 1.9.47-1 (by gambas2-gb-db-firebird_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-db-firebird ... Preparing replacement of gambas2-gb-db-form 1.9.47-1 (by gambas2-gb-db-form_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-db-form ... Selecting new package gambas2-gb-db-mysql. Unpacking gambas2-gb-db-mysql (aus gambas2-gb-db-mysql_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-db-odbc. Unpacking gambas2-gb-db-odbc (aus gambas2-gb-db-odbc_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-db-postgresql. Unpacking gambas2-gb-db-postgresql (aus gambas2-gb-db-postgresql_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-db-sqlite 1.9.47-1 (by gambas2-gb-db-sqlite_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-db-sqlite ... Selecting new package gambas2-gb-db-sqlite2. Unpacking gambas2-gb-db-sqlite2 (aus gambas2-gb-db-sqlite2_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-desktop. Unpacking gambas2-gb-desktop (aus gambas2-gb-desktop_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-form 1.9.47-1 (by gambas2-gb-form_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-form ... Selecting new package gambas2-gb-form-dialog. Unpacking gambas2-gb-form-dialog (aus gambas2-gb-form-dialog_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-form-mdi 1.9.47-1 (by gambas2-gb-form-mdi_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-form-mdi ... Selecting new package gambas2-gb-gtk. Unpacking gambas2-gb-gtk (aus gambas2-gb-gtk_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-gtk-ext. Unpacking gambas2-gb-gtk-ext (aus gambas2-gb-gtk-ext_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-gtk-svg. Unpacking gambas2-gb-gtk-svg (aus gambas2-gb-gtk-svg_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-gui. Unpacking gambas2-gb-gui (aus gambas2-gb-gui_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-image 1.9.47-1 (by gambas2-gb-image_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-image ... Preparing replacement of gambas2-gb-info 1.9.47-1 (by gambas2-gb-info_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-info ... Selecting new package gambas2-gb-ldap. Unpacking gambas2-gb-ldap (aus gambas2-gb-ldap_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-net. Unpacking gambas2-gb-net (aus gambas2-gb-net_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-net-curl. Unpacking gambas2-gb-net-curl (aus gambas2-gb-net-curl_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-net-smtp. Unpacking gambas2-gb-net-smtp (aus gambas2-gb-net-smtp_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-opengl. Unpacking gambas2-gb-opengl (aus gambas2-gb-opengl_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-pcre 1.9.47-1 (by gambas2-gb-pcre_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-pcre ... Selecting new package gambas2-gb-pdf. Unpacking gambas2-gb-pdf (aus gambas2-gb-pdf_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-qt 1.9.47-1 (by gambas2-gb-qt_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-qt ... Preparing replacement of gambas2-gb-qt-ext 1.9.47-1 (by gambas2-gb-qt-ext_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-qt-ext ... Selecting new package gambas2-gb-qt-kde. Unpacking gambas2-gb-qt-kde (aus gambas2-gb-qt-kde_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-qt-kde-html. Unpacking gambas2-gb-qt-kde-html (aus gambas2-gb-qt-kde-html_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-qt-opengl. Unpacking gambas2-gb-qt-opengl (aus gambas2-gb-qt-opengl_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-report. Unpacking gambas2-gb-report (aus gambas2-gb-report_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-sdl. Unpacking gambas2-gb-sdl (aus gambas2-gb-sdl_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-gb-settings 1.9.47-1 (by gambas2-gb-settings_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-gb-settings ... Selecting new package gambas2-gb-v4l. Unpacking gambas2-gb-v4l (aus gambas2-gb-v4l_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-vb. Unpacking gambas2-gb-vb (aus gambas2-gb-vb_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-web. Unpacking gambas2-gb-web (aus gambas2-gb-web_1.9.51-1~etch1_i386.deb) ... Selecting new package gambas2-gb-xml. Unpacking gambas2-gb-xml (aus gambas2-gb-xml_1.9.51-1~etch1_i386.deb) ... Preparing replacement of gambas2-ide 1.9.47-1 (by gambas2-ide_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-ide ... Preparing replacement of gambas2-runtime 1.9.47-1 (by gambas2-runtime_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-runtime ... dpkg: Dependency problems prevent configuration of gambas2-dev: gambas2-dev depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-dev (--install): Dependency problems - leaving unconfigured Richte gambas2-doc ein (1.9.51-1~etch1) ... dpkg: Dependency problems prevent configuration of gambas2-gb-compress: gambas2-gb-compress depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-compress (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-compress-bzlib2: gambas2-gb-compress-bzlib2 depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-compress-bzlib2 depends on gambas2-gb-compress (>= 1.9.51-1~etch1); but: Package gambas2-gb-compress provided, not yet configured. dpkg: Error while processing gambas2-gb-compress-bzlib2 (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-compress-zlib: gambas2-gb-compress-zlib depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-compress-zlib depends on gambas2-gb-compress (>= 1.9.51-1~etch1); but: Package gambas2-gb-compress provided, not yet configured. dpkg: Error while processing gambas2-gb-compress-zlib (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-crypt: gambas2-gb-crypt depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-crypt (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db: gambas2-gb-db depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-db (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db-firebird: gambas2-gb-db-firebird depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-db-firebird depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-db-firebird depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-db-firebird depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-db-firebird (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db-form: gambas2-gb-db-form depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-db-form (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db-mysql: gambas2-gb-db-mysql depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-db-mysql depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-db-mysql (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db-odbc: gambas2-gb-db-odbc depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-db-odbc depends on unixodbc (>= 2.2.11-1); but: Version of unixodbc on this system is 2.2.4-11. gambas2-gb-db-odbc depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-db-odbc (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db-postgresql: gambas2-gb-db-postgresql depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-db-postgresql depends on libpq4 (>= 8.1.4); but: Package libpq4 provided, ist nicht installiert. gambas2-gb-db-postgresql depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-db-postgresql (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db-sqlite: gambas2-gb-db-sqlite depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-db-sqlite depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-db-sqlite depends on libsqlite3-0 (>= 3.3.8); but: Package libsqlite3-0 provided, ist nicht installiert. gambas2-gb-db-sqlite depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-db-sqlite depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-db-sqlite (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-db-sqlite2: gambas2-gb-db-sqlite2 depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-db-sqlite2 depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-db-sqlite2 depends on libsqlite0 (>= 2.8.17); but: Version of libsqlite0 on this system is 2.8.16-1. gambas2-gb-db-sqlite2 depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-db-sqlite2 depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-db-sqlite2 (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-desktop: gambas2-gb-desktop depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-desktop (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-gtk: gambas2-gb-gtk depends on libatk1.0-0 (>= 1.12.2); but: Version of libatk1.0-0 on this system is 1.8.0-4. gambas2-gb-gtk depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-gtk depends on libcairo2 (>= 1.2.4); but: Package libcairo2 provided, ist nicht installiert. gambas2-gb-gtk depends on libfontconfig1 (>= 2.4.0); but: Version of libfontconfig1 on this system is 2.3.1-2. gambas2-gb-gtk depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-gtk depends on libglib2.0-0 (>= 2.12.0); but: Version of libglib2.0-0 on this system is 2.6.4-1. gambas2-gb-gtk depends on libgtk2.0-0 (>= 2.10.12-3); but: Version of libgtk2.0-0 on this system is 2.6.4-3.2. gambas2-gb-gtk depends on libpango1.0-0 (>= 1.14.8); but: Version of libpango1.0-0 on this system is 1.8.1-1. gambas2-gb-gtk depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-gtk depends on libxfixes3 (>= 1:4.0.1); but: Package libxfixes3 provided, ist nicht installiert. dpkg: Error while processing gambas2-gb-gtk (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-gtk-ext: gambas2-gb-gtk-ext depends on libatk1.0-0 (>= 1.12.2); but: Version of libatk1.0-0 on this system is 1.8.0-4. gambas2-gb-gtk-ext depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-gtk-ext depends on libcairo2 (>= 1.2.4); but: Package libcairo2 provided, ist nicht installiert. gambas2-gb-gtk-ext depends on libfontconfig1 (>= 2.4.0); but: Version of libfontconfig1 on this system is 2.3.1-2. gambas2-gb-gtk-ext depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-gtk-ext depends on libglib2.0-0 (>= 2.12.0); but: Version of libglib2.0-0 on this system is 2.6.4-1. gambas2-gb-gtk-ext depends on libgtk2.0-0 (>= 2.10.12-3); but: Version of libgtk2.0-0 on this system is 2.6.4-3.2. gambas2-gb-gtk-ext depends on libpango1.0-0 (>= 1.14.8); but: Version of libpango1.0-0 on this system is 1.8.1-1. gambas2-gb-gtk-ext depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-gtk-ext depends on libxfixes3 (>= 1:4.0.1); but: Package libxfixes3 provided, ist nicht installiert. gambas2-gb-gtk-ext depends on gambas2-gb-gtk (>= 1.9.51-1~etch1); but: Package gambas2-gb-gtk provided, not yet configured. dpkg: Error while processing gambas2-gb-gtk-ext (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-gtk-svg: gambas2-gb-gtk-svg depends on libatk1.0-0 (>= 1.12.2); but: Version of libatk1.0-0 on this system is 1.8.0-4. gambas2-gb-gtk-svg depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-gtk-svg depends on libcairo2 (>= 1.2.4); but: Package libcairo2 provided, ist nicht installiert. gambas2-gb-gtk-svg depends on libfontconfig1 (>= 2.4.0); but: Version of libfontconfig1 on this system is 2.3.1-2. gambas2-gb-gtk-svg depends on libglib2.0-0 (>= 2.12.0); but: Version of libglib2.0-0 on this system is 2.6.4-1. gambas2-gb-gtk-svg depends on libgtk2.0-0 (>= 2.10.12-3); but: Version of libgtk2.0-0 on this system is 2.6.4-3.2. gambas2-gb-gtk-svg depends on libpango1.0-0 (>= 1.14.8); but: Version of libpango1.0-0 on this system is 1.8.1-1. gambas2-gb-gtk-svg depends on librsvg2-2 (>= 2.16.1); but: Version of librsvg2-2 on this system is 2.8.1-3. gambas2-gb-gtk-svg depends on libxfixes3 (>= 1:4.0.1); but: Package libxfixes3 provided, ist nicht installiert. dpkg: Error while processing gambas2-gb-gtk-svg (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-gui: gambas2-gb-gui depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-gui (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-image: gambas2-gb-image depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-image depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-image depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. dpkg: Error while processing gambas2-gb-image (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-ldap: gambas2-gb-ldap depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-ldap (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-net: gambas2-gb-net depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-net (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-net-curl: gambas2-gb-net-curl depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-net-curl depends on libcurl3 (>= 7.15.5-1); but: Version of libcurl3 on this system is 7.13.2-2sarge5. gambas2-gb-net-curl depends on libidn11 (>= 0.5.18); but: Version of libidn11 on this system is 0.5.13-1.0. gambas2-gb-net-curl depends on libssl0.9.8 (>= 0.9.8c-1); but: Package libssl0.9.8 provided, ist nicht installiert. gambas2-gb-net-curl depends on gambas2-gb-net (>= 1.9.51-1~etch1); but: Package gambas2-gb-net provided, not yet configured. dpkg: Error while processing gambas2-gb-net-curl (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-net-smtp: gambas2-gb-net-smtp depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-net-smtp depends on libglib2.0-0 (>= 2.12.0); but: Version of libglib2.0-0 on this system is 2.6.4-1. gambas2-gb-net-smtp depends on gambas2-gb-net (>= 1.9.51-1~etch1); but: Package gambas2-gb-net provided, not yet configured. dpkg: Error while processing gambas2-gb-net-smtp (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-opengl: gambas2-gb-opengl depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-opengl (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-pcre: gambas2-gb-pcre depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-pcre (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-pdf: gambas2-gb-pdf depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-pdf depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-pdf depends on libpoppler0c2 (>= 0.4.2); but: Package libpoppler0c2 provided, ist nicht installiert. gambas2-gb-pdf depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-pdf depends on libpoppler-glib1; but: Package libpoppler-glib1 provided, ist nicht installiert. dpkg: Error while processing gambas2-gb-pdf (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-qt: gambas2-gb-qt depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-qt depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-qt depends on libqt3-mt (>= 3:3.3.7); but: Package libqt3-mt provided, ist nicht installiert. gambas2-gb-qt depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. dpkg: Error while processing gambas2-gb-qt (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-qt-ext: gambas2-gb-qt-ext depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-qt-ext depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-qt-ext depends on libqt3-mt (>= 3:3.3.7); but: Package libqt3-mt provided, ist nicht installiert. gambas2-gb-qt-ext depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-qt-ext depends on gambas2-gb-qt (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt provided, not yet configured. dpkg: Error while processing gambas2-gb-qt-ext (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-qt-kde: gambas2-gb-qt-kde depends on kdelibs4c2a (>= 4:3.5.5-1); but: Package kdelibs4c2a provided, ist nicht installiert. gambas2-gb-qt-kde depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-qt-kde depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-qt-kde depends on libqt3-mt (>= 3:3.3.7); but: Package libqt3-mt provided, ist nicht installiert. gambas2-gb-qt-kde depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-qt-kde depends on gambas2-gb-qt (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt provided, not yet configured. dpkg: Error while processing gambas2-gb-qt-kde (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-qt-kde-html: gambas2-gb-qt-kde-html depends on kdelibs4c2a (>= 4:3.5.5-1); but: Package kdelibs4c2a provided, ist nicht installiert. gambas2-gb-qt-kde-html depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-qt-kde-html depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-qt-kde-html depends on libqt3-mt (>= 3:3.3.7); but: Package libqt3-mt provided, ist nicht installiert. gambas2-gb-qt-kde-html depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-qt-kde-html depends on gambas2-gb-qt (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt provided, not yet configured. gambas2-gb-qt-kde-html depends on gambas2-gb-qt-kde (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt-kde provided, not yet configured. dpkg: Error while processing gambas2-gb-qt-kde-html (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-qt-opengl: gambas2-gb-qt-opengl depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-qt-opengl depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-qt-opengl depends on libqt3-mt (>= 3:3.3.7); but: Package libqt3-mt provided, ist nicht installiert. gambas2-gb-qt-opengl depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. gambas2-gb-qt-opengl depends on gambas2-gb-qt (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt provided, not yet configured. dpkg: Error while processing gambas2-gb-qt-opengl (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-report: gambas2-gb-report depends on gambas2-gb-qt (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt provided, not yet configured. gambas2-gb-report depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. dpkg: Error while processing gambas2-gb-report (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-sdl: gambas2-gb-sdl depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-sdl depends on libgcc1 (>= 1:4.1.1-12); but: Version of libgcc1 on this system is 1:3.4.3-13sarge1. gambas2-gb-sdl depends on libsdl-image1.2 (>= 1.2.5); but: Version of libsdl-image1.2 on this system is 1.2.4-1. gambas2-gb-sdl depends on libsdl1.2debian (>= 1.2.10-1); but: Version of libsdl1.2debian on this system is 1.2.7+1.2.8cvs20041007-4.1. gambas2-gb-sdl depends on libstdc++6 (>= 4.1.1-12); but: Version of libstdc++6 on this system is 3.4.3-13sarge1. dpkg: Error while processing gambas2-gb-sdl (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-v4l: gambas2-gb-v4l depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-v4l depends on libpng12-0 (>= 1.2.13-4); but: Version of libpng12-0 on this system is 1.2.8rel-1. dpkg: Error while processing gambas2-gb-v4l (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-vb: gambas2-gb-vb depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-gb-vb (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-xml: gambas2-gb-xml depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. gambas2-gb-xml depends on libxml2 (>= 2.6.27); but: Version of libxml2 on this system is 2.6.16-7. gambas2-gb-xml depends on libxslt1.1 (>= 1.1.18); but: Version of libxslt1.1 on this system is 1.1.12-8. dpkg: Error while processing gambas2-gb-xml (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-ide: gambas2-ide depends on gambas2-dev (>= 1.9.51-1~etch1); but: Package gambas2-dev provided, not yet configured. gambas2-ide depends on gambas2-gb-db (>= 1.9.51-1~etch1); but: Package gambas2-gb-db provided, not yet configured. gambas2-ide depends on gambas2-gb-qt (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt provided, not yet configured. gambas2-ide depends on gambas2-gb-qt-ext (>= 1.9.51-1~etch1); but: Package gambas2-gb-qt-ext provided, not yet configured. dpkg: Error while processing gambas2-ide (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-runtime: gambas2-runtime depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-runtime (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-chart: gambas2-gb-chart depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. gambas2-gb-chart depends on gambas2-gb-gui (>= 1.9.51-1~etch1); but: Package gambas2-gb-gui provided, not yet configured. dpkg: Error while processing gambas2-gb-chart (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-form: gambas2-gb-form depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. gambas2-gb-form depends on gambas2-gb-gui (>= 1.9.51-1~etch1); but: Package gambas2-gb-gui provided, not yet configured. dpkg: Error while processing gambas2-gb-form (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-form-dialog: gambas2-gb-form-dialog depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. gambas2-gb-form-dialog depends on gambas2-gb-form (>= 1.9.51-1~etch1); but: Package gambas2-gb-form provided, not yet configured. dpkg: Error while processing gambas2-gb-form-dialog (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-form-mdi: gambas2-gb-form-mdi depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. gambas2-gb-form-mdi depends on gambas2-gb-form (>= 1.9.51-1~etch1); but: Package gambas2-gb-form provided, not yet configured. dpkg: Error while processing gambas2-gb-form-mdi (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-info: gambas2-gb-info depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. dpkg: Error while processing gambas2-gb-info (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-settings: gambas2-gb-settings depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. dpkg: Error while processing gambas2-gb-settings (--install): Dependency problems - leaving unconfigured dpkg: Dependency problems prevent configuration of gambas2-gb-web: gambas2-gb-web depends on gambas2-runtime (>= 1.9.49); but: Package gambas2-runtime provided, not yet configured. dpkg: Error while processing gambas2-gb-web (--install): Dependency problems - leaving unconfigured Error while processing: gambas2-dev gambas2-gb-compress gambas2-gb-compress-bzlib2 gambas2-gb-compress-zlib gambas2-gb-crypt gambas2-gb-db gambas2-gb-db-firebird gambas2-gb-db-form gambas2-gb-db-mysql gambas2-gb-db-odbc gambas2-gb-db-postgresql gambas2-gb-db-sqlite gambas2-gb-db-sqlite2 gambas2-gb-desktop gambas2-gb-gtk gambas2-gb-gtk-ext gambas2-gb-gtk-svg gambas2-gb-gui gambas2-gb-image gambas2-gb-ldap gambas2-gb-net gambas2-gb-net-curl gambas2-gb-net-smtp gambas2-gb-opengl gambas2-gb-pcre gambas2-gb-pdf gambas2-gb-qt gambas2-gb-qt-ext gambas2-gb-qt-kde gambas2-gb-qt-kde-html gambas2-gb-qt-opengl gambas2-gb-report gambas2-gb-sdl gambas2-gb-v4l gambas2-gb-vb gambas2-gb-xml gambas2-ide gambas2-runtime gambas2-gb-chart gambas2-gb-form gambas2-gb-form-dialog gambas2-gb-form-mdi gambas2-gb-info gambas2-gb-settings gambas2-gb-web ltspserver:/tmp/gamb51# dpkg -i gambas2-runtime_1.9.51-1~etch1_i386.deb (Reading Database ... 240468 Files und Verzeichnisse sind derzeit installiert.) Preparing replacement of gambas2-runtime 1.9.51-1~etch1 (by gambas2-runtime_1.9.51-1~etch1_i386.deb) ... Unpacking Replacement for gambas2-runtime ... dpkg: Dependency problems prevent configuration of gambas2-runtime: gambas2-runtime depends on libc6 (>= 2.3.6-6); but: Version of libc6 on this system is 2.3.2.ds1-22sarge6. dpkg: Error while processing gambas2-runtime (--install): Dependency problems - leaving unconfigured Error while processing: gambas2-runtime ltspserver:/tmp/gamb51# apt-cache policy libc6 libc6: Installiert:2.3.2.ds1-22sarge6 Possible packages:2.3.2.ds1-22sarge6 Versions-Tabelle: *** 2.3.2.ds1-22sarge6 0 500 http://ftp.skolelinux.no sarge/main Packages 100 /var/lib/dpkg/status ltspserver:/tmp/gamb51# apt-cache policy gambas2-runtime gambas2-runtime: Installiert:1.9.51-1~etch1 Possible packages:1.9.51-1~etch1 Versions-Tabelle: *** 1.9.51-1~etch1 0 100 /var/lib/dpkg/status From jredrejo at ...626... Sun Oct 21 16:06:13 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Sun, 21 Oct 2007 16:06:13 +0200 Subject: [Gambas-user] Repair upgraded project version (Solved) In-Reply-To: <200710211447.36402.rgx@...17...> References: <20071019091756.114140@...18...> <200710191136.46139.gambas.fr@...626...> <200710211447.36402.rgx@...17...> Message-ID: <8eb28a500710210706m57acc833k41db1b50e566ec03@...627...> 2007/10/21, RalfGesellensetter : > > Am Freitag 19 Oktober 2007 schrieb Fabien Bodard: > > send me the project... mabe i can do something > > > Dear Fabien, dear list > > In a quite dirty way, I solved my problem > by upgrading from gambas 1.9.47 to 1.9.51: > > 1st I had to download gambas2*9.51*.deb from > http://apt.linex.org/linex/gambas/stable/ > > 2nd I ran dpkg -i *.deb > But this didn't work as expected: > > ... > dpkg: Dependency problems prevent configuration of gambas2-gb-info: > gambas2-gb-info depends on gambas2-runtime (>= 1.9.49); but: > Package gambas2-runtime provided, not yet configured. > ... > dpkg: Dependency problems prevent configuration of gambas2-runtime: > gambas2-runtime depends on libc6 (>= 2.3.6-6); but: > Version of libc6 on this system is 2.3.2.ds1-22sarge6. > > Leaving all as it is lets us use 1.9.51 (unconfigured, but working) - > and this version is able to open the project saved with 1.9.90! > > Below (roughly re-translated) Output of the installation. > Maybe anybody could tell, why a sarge-Package needs a libc6 that is not > in Sarge nor in Sarge backports. > > Regards > It's quite easy: stable in Debian means etch since some months ago, not Sarge. So http://apt.linex.org/linex/gambas/stable/ is to be used in Debian stable= Debian etch. >From http://gambas.sourceforge.net/download.html: " Last version of gambas packages for Debian stable (or etch) are always available using apt-get, adding this line to the /etc/apt/sources.list file" It's already imposible compile gambas2 in Sarge. If you want to try, there are packages with Sarge libc6 at http://apt.linex.org/linex2006/dists/cl/gambas/ because Linex 2006 still has Sarge as its base, but you'll need backports for many libraries (plopper, gtk, qt, kde, etc.) to install them in Sarge. Those backports are also available at the same repository. Those packages are built for LinEx, and can not assure they'll work on other Debian derivated distributions. So, for general gambas & Debian users I can't continue providing gambas packages for Sarge and that's why the text at http://gambas.sourceforge.net/download.html was changed some months ago. Best regards. Jos? L. From rohnny at ...1248... Sun Oct 21 18:46:43 2007 From: rohnny at ...1248... (R. Stormo) Date: Sun, 21 Oct 2007 09:46:43 -0700 (PDT) Subject: [Gambas-user] Gutsy problem gb.form.dialog In-Reply-To: <13326739.post@...1379...> References: <13326739.post@...1379...> Message-ID: <13330841.post@...1379...> R. Stormo wrote: > > Have a problem after installed a fresh copy of gutsy and compiled svn > gambas. > > ERROR: #27: Cannot load component 'gb.form.dialog': cannot find library > file when I tried to start gambas > > So by fiddling a little. I installed 1.9.49 from my repertory, gambas > started. So I open my project and included the gb.form to my project, it > do work again :). Looks like something changed very much after .49. > > So i someone have any idea what needed to get gambas work from svn again > please let us know. > Gambas is compiling ok without errors. > > > Regards Rohnny > > My Gambas Community http//gambasforum.tk > > As request from Benoit I uninstalled the .49 version. Uninstalled svn version, installed the svn version again, and now everything was ok. What went wrong first time I installed the svn version I don't know. But is very happy know. Regards Rohnny My Gambas Community http//gambasforum.tk -- View this message in context: http://www.nabble.com/Gutsy-problem-gb.form.dialog-tf4665232.html#a13330841 Sent from the gambas-user mailing list archive at Nabble.com. From gareth at ...1689... Mon Oct 22 11:07:27 2007 From: gareth at ...1689... (Gareth Bult) Date: Mon, 22 Oct 2007 10:07:27 +0100 (BST) Subject: [Gambas-user] Re; Blob database object and SVN Message-ID: <21281852.25241193044047592.JavaMail.root@...1708...> Hi Folks, I'm still treading water as a result of issue # 28. http://gambasrad.org/bugtrak/gambas-bug-tracker/28 This is repeatable in all of my pre-existing Database applications. Blob object read in as NULL variables, i.e. BLOB's don't work anymore. (MySQL driver, SVN) It broke ~ 24th Sep or just before .. I've just been through a sample now and checked it again in detail .. Don't know if it's related but the picture database doesn't work either .. (produces an empty window with a splitter in it) My Sample; resultSet = $remote.Exec("SELECT id,stamp,image FROM camera_&1 WHERE id=&2", $number, $slider.Value) Sample; resultSet.Count = 1 resultSet!id = 12721535 resultSet!stamp = "2007-10-22 09:59:47" resultSet!image = NULL When I look at the DB; mysql> select id,stamp,length(image) from camera_1 where id = "12721535"; +----------+---------------------+---------------+ | id | stamp | length(image) | +----------+---------------------+---------------+ | 12721535 | 2007-10-22 09:59:47 | 15031 | +----------+---------------------+---------------+ Help! -- Managing Director, Encryptec Limited Tel: 0845 25 77033, Mob: 07853 305393 Email: gareth at ...1689... Statements made are at all times subject to Encryptec's Terms and Conditions of Business, which are available upon request. From gambas at ...1... Mon Oct 22 11:33:11 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 22 Oct 2007 11:33:11 +0200 Subject: [Gambas-user] Re; Blob database object and SVN In-Reply-To: <21281852.25241193044047592.JavaMail.root@...1708...> References: <21281852.25241193044047592.JavaMail.root@...1708...> Message-ID: <200710221133.11414.gambas@...1...> On lundi 22 octobre 2007, Gareth Bult wrote: > Hi Folks, > > I'm still treading water as a result of issue # 28. > http://gambasrad.org/bugtrak/gambas-bug-tracker/28 > > This is repeatable in all of my pre-existing Database applications. > Blob object read in as NULL variables, i.e. BLOB's don't work anymore. > (MySQL driver, SVN) > > It broke ~ 24th Sep or just before .. I've just been through a sample now > and checked it again in detail .. Don't know if it's related but the > picture database doesn't work either .. (produces an empty window with a > splitter in it) > > My Sample; > > resultSet = $remote.Exec("SELECT id,stamp,image FROM camera_&1 WHERE > id=&2", $number, $slider.Value) > > Sample; > resultSet.Count = 1 > resultSet!id = 12721535 > resultSet!stamp = "2007-10-22 09:59:47" > resultSet!image = NULL > > When I look at the DB; > mysql> select id,stamp,length(image) from camera_1 where id = "12721535"; > +----------+---------------------+---------------+ > > | id | stamp | length(image) | > > +----------+---------------------+---------------+ > > | 12721535 | 2007-10-22 09:59:47 | 15031 | > > +----------+---------------------+---------------+ > > Help! The problem is that the PictureDatabase example works correctly on my computer, with a MySQL database: I can add and remove pictures without any problems, except if the picture is too big (i.e. bigger than than the greatest allowed request). I need the version of your MySQL server. A sample code that does not work would be cool too. Finally, I need that you answer the questions I asked you about this bug on the bugtracker ticket. Regards, -- Benoit Minisini From gareth at ...1689... Mon Oct 22 11:56:22 2007 From: gareth at ...1689... (Gareth Bult) Date: Mon, 22 Oct 2007 10:56:22 +0100 (BST) Subject: [Gambas-user] Re; Blob database object and SVN In-Reply-To: <200710221133.11414.gambas@...1...> Message-ID: <18556227.25591193046982771.JavaMail.root@...1708...> Sorry, As the state was still saying "unconfirmed" I wasn't expecting to see any requests for more info. Ticket now updated. MySQL Server is; "Server version: 5.0.32-Debian_2 Debian etch distribution" I've added a code sample, output, MySQL query and a complete DB to the ticket. hth Gareth. -- Managing Director, Encryptec Limited Tel: 0845 25 77033, Mob: 07853 305393 Email: gareth at ...1689... Statements made are at all times subject to Encryptec's Terms and Conditions of Business, which are available upon request. ----- Original Message ----- From: "Benoit Minisini" To: "mailing list for gambas users" Sent: Monday, October 22, 2007 10:33:11 AM (GMT) Europe/London Subject: Re: [Gambas-user] Re; Blob database object and SVN On lundi 22 octobre 2007, Gareth Bult wrote: > Hi Folks, > > I'm still treading water as a result of issue # 28. > http://gambasrad.org/bugtrak/gambas-bug-tracker/28 > > This is repeatable in all of my pre-existing Database applications. > Blob object read in as NULL variables, i.e. BLOB's don't work anymore. > (MySQL driver, SVN) > > It broke ~ 24th Sep or just before .. I've just been through a sample now > and checked it again in detail .. Don't know if it's related but the > picture database doesn't work either .. (produces an empty window with a > splitter in it) > > My Sample; > > resultSet = $remote.Exec("SELECT id,stamp,image FROM camera_&1 WHERE > id=&2", $number, $slider.Value) > > Sample; > resultSet.Count = 1 > resultSet!id = 12721535 > resultSet!stamp = "2007-10-22 09:59:47" > resultSet!image = NULL > > When I look at the DB; > mysql> select id,stamp,length(image) from camera_1 where id = "12721535"; > +----------+---------------------+---------------+ > > | id | stamp | length(image) | > > +----------+---------------------+---------------+ > > | 12721535 | 2007-10-22 09:59:47 | 15031 | > > +----------+---------------------+---------------+ > > Help! The problem is that the PictureDatabase example works correctly on my computer, with a MySQL database: I can add and remove pictures without any problems, except if the picture is too big (i.e. bigger than than the greatest allowed request). I need the version of your MySQL server. A sample code that does not work would be cool too. Finally, I need that you answer the questions I asked you about this bug on the bugtracker ticket. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From david_villalobos_c at ...43... Mon Oct 22 14:25:21 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Mon, 22 Oct 2007 05:25:21 -0700 (PDT) Subject: [Gambas-user] DataView in gb.db.form Message-ID: <499695.80583.qm@...1670...> Hi, sorry to be late... attached is the example, it uses the database created by the example included in Gambas 1.9.90 To explain better the problem is: If the property Headers has the value "Both", that means tha both headers should be displayed, but the are not. Only if you set the value to "Vertical" or "Horizaontal", the vertical or horizontal header is shown. ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Friday, October 19, 2007 1:49:52 AM Subject: Re: [Gambas-user] DataView in gb.db.form On mardi 16 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > I think I find a bug in the DataView in gb.db.form the property Headers > do not show them, only if vertical or horizantal is setted, I mean if both > are setted they are not shown. > > I try to show them on Gambas 1.9.90 with Mandriva 2007.1 > > Can someone try to reproduce the error? I want to know if it is > correct. > > Regards. > > David > Do you have a sample code of your problem? What you describe is not really clear. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -------------- next part -------------- A non-text attachment was scrubbed... Name: Error.tar.gz Type: application/gzip Size: 5390 bytes Desc: not available URL: From ct1egh at ...626... Mon Oct 22 23:14:43 2007 From: ct1egh at ...626... (=?ISO-8859-1?B?QW50825pbw==?= Pereira) Date: Mon, 22 Oct 2007 22:14:43 +0100 Subject: [Gambas-user] DataControl Message-ID: <20071022221443.6dae466e@...1779...> Hi list members, I put a DataControl inside a form and set the field name but nothing appears at run time. Is that a bug or my mistake ? Regards, Ant?nio Pereira From gambas at ...1... Mon Oct 22 23:31:19 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 22 Oct 2007 23:31:19 +0200 Subject: [Gambas-user] DataView in gb.db.form In-Reply-To: <499695.80583.qm@...1670...> References: <499695.80583.qm@...1670...> Message-ID: <200710222331.19583.gambas@...1...> On lundi 22 octobre 2007, David Villalobos Cambronero wrote: > Hi, sorry to be late... > > attached is the example, it uses the database created by the example > included in Gambas 1.9.90 > > To explain better the problem is: > > If the property Headers has the value "Both", that means tha both > headers should be displayed, but the are not. Only if you set the value to > "Vertical" or "Horizaontal", the vertical or horizontal header is shown. > OK, I see. It will be fixed in a next revision. Regards, -- Benoit Minisini From gambas.fr at ...626... Mon Oct 22 23:46:10 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Mon, 22 Oct 2007 23:46:10 +0200 Subject: [Gambas-user] DataControl In-Reply-To: <20071022221443.6dae466e@...1779...> References: <20071022221443.6dae466e@...1779...> Message-ID: <200710222346.11144.gambas.fr@...626...> Le Monday 22 October 2007 23:14:43 Ant?nio Pereira, vous avez ?crit?: > Hi list members, > > I put a DataControl inside a form and set the field name but nothing > appears at run time. Is that a bug or my mistake ? > > Regards, > yes many first in a main module: private hcon as new connection Public sub Main() hcon.type="mysql" hcon.login="root" hcon.password="" hcon.host="localhost" hcont.name="mydb" MyForm.show End then in 'MyForm' add a datasource component (it's a container) set the 'table' property field try to add a data browser( for the begining) set the fields concerned in properties set the module as main, run > Ant?nio Pereira > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Tue Oct 23 20:51:47 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 23 Oct 2007 20:51:47 +0200 Subject: [Gambas-user] Article for the first release candidate of Gambas 2 Message-ID: <200710232051.47160.gambas@...1...> I'm currently writing an article for the first release candidate of Gambas 2. The draft is available on the wiki at http://gambasdoc.org/help/doc/release Everyone is welcome for reading it, making suggestions or fixing mistakes! Thanks in advance. Regards, -- Benoit Minisini From gambas at ...1... Tue Oct 23 20:53:42 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 23 Oct 2007 20:53:42 +0200 Subject: [Gambas-user] Article for the first release candidate of Gambas 2 In-Reply-To: <200710232051.47160.gambas@...1...> References: <200710232051.47160.gambas@...1...> Message-ID: <200710232053.42512.gambas@...1...> On mardi 23 octobre 2007, Benoit Minisini wrote: > I'm currently writing an article for the first release candidate of Gambas > 2. > > The draft is available on the wiki at http://gambasdoc.org/help/doc/release > > Everyone is welcome for reading it, making suggestions or fixing mistakes! > > Thanks in advance. > > Regards, Just a remark: this article should not be too long, as it is intended for news sites. So I tried to be concise... -- Benoit Minisini From rohnny at ...1248... Tue Oct 23 21:03:01 2007 From: rohnny at ...1248... (R. Stormo) Date: Tue, 23 Oct 2007 12:03:01 -0700 (PDT) Subject: [Gambas-user] Database manager Message-ID: <13371092.post@...1379...> Can't seem to open any windows in he database manager anymore, svn version 771. It do ask for password, Then I select sqlite3 as new server, all my tables and users are showing. But when I click on one table nothing happens. Is this a known thing or it is just me.? Regards Rohnny My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Database-manager-tf4679582.html#a13371092 Sent from the gambas-user mailing list archive at Nabble.com. From jh_starcom at ...103... Wed Oct 24 05:26:13 2007 From: jh_starcom at ...103... (Jun Hay) Date: Wed, 24 Oct 2007 10:26:13 +0700 Subject: [Gambas-user] Printing in gambas ? In-Reply-To: References: Message-ID: <471EBB55.1080505@...103...> I have been create a report, but i don't know how to print it. Please give me some script to print text file (with e.g source code), and HTML (when i view it with Web Browser in gambas). I'm from Indonesia, so my English Languange is not good enough. But I'm very need your help... Thank You so much....:) From leonardo at ...1237... Wed Oct 24 11:01:32 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Wed, 24 Oct 2007 11:01:32 +0200 Subject: [Gambas-user] Printing in gambas ? In-Reply-To: <471EBB55.1080505@...103...> References: <471EBB55.1080505@...103...> Message-ID: <471F09EC.40709@...1237...> Jun Hay ha scritto: > I have been create a report, but i don't know how to print it. > Please give me some script to print text file (with e.g source code), > and HTML (when i view it with Web Browser in gambas). > > I'm from Indonesia, so my English Languange is not good enough. But I'm > very need your help... > Thank You so much....:) > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > To print a report one easy way is to create a Printer object refered to a .ps file (i.e. filename.ps) draw into it using the Draw function and than use the bash command "lpr filename.ps" via the Shell command (or, if you want a preview before to print, call the bash commands kghostview for KDE). -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From ct1egh at ...626... Wed Oct 24 18:59:32 2007 From: ct1egh at ...626... (=?ISO-8859-1?B?QW50825pbw==?= Pereira) Date: Wed, 24 Oct 2007 17:59:32 +0100 Subject: [Gambas-user] DataControl In-Reply-To: <200710222346.11144.gambas.fr@...626...> References: <20071022221443.6dae466e@...1779...> <200710222346.11144.gambas.fr@...626...> Message-ID: <20071024175932.72c10786@...1779...> Hi list members, Thanks for tips on gb.db.form but have the same problem: the DataControl is not visible at run time (even after the Fabien Bodard tip). Did anybody experiment the same problem ? Or will it be that it keeps on being my mistake ? Regards, Ant?nio Pereira Em Mon, 22 Oct 2007 23:46:10 +0200 Fabien Bodard escreveu: > Le Monday 22 October 2007 23:14:43 Ant?nio Pereira, vous avez ?crit?: > > Hi list members, > > > > I put a DataControl inside a form and set the field name but nothing > > appears at run time. Is that a bug or my mistake ? > > > > Regards, > > > > yes > many > > > first in a main module: > > private hcon as new connection > Public sub Main() > > hcon.type="mysql" > hcon.login="root" > hcon.password="" > hcon.host="localhost" > hcont.name="mydb" > > MyForm.show > > End > > > then in 'MyForm' > > add a datasource component (it's a container) > > set the 'table' property field > > try to add a data browser( for the begining) > set the fields concerned in properties > > set the module as main, > > run > > > > > > > Ant?nio Pereira > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a > > browser. Download your FREE copy of Splunk now >> > > http://get.splunk.com/ > > _______________________________________________ Gambas-user mailing > > list Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a > browser. Download your FREE copy of Splunk now >> > http://get.splunk.com/ _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Wed Oct 24 19:05:42 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 24 Oct 2007 19:05:42 +0200 Subject: [Gambas-user] DataControl In-Reply-To: <20071024175932.72c10786@...1779...> References: <20071022221443.6dae466e@...1779...> <200710222346.11144.gambas.fr@...626...> <20071024175932.72c10786@...1779...> Message-ID: <200710241905.43022.gambas@...1...> On mercredi 24 octobre 2007, Ant?nio Pereira wrote: > Hi list members, > > Thanks for tips on gb.db.form but have the same problem: the > DataControl is not visible at run time (even after the Fabien Bodard > tip). > Did anybody experiment the same problem ? Or will it be that it keeps on > being my mistake ? > > Regards, > > Ant?nio Pereira > Did you look at the Database example? There is a form that use data bounds controls. At the moment, it seems to not work with gb.gtk, but it works with gb.qt. Regards, -- Benoit Minisini From david_villalobos_c at ...43... Wed Oct 24 19:31:15 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 24 Oct 2007 10:31:15 -0700 (PDT) Subject: [Gambas-user] DataControl Message-ID: <684252.93954.qm@...1782...> Hi, You say that put a DataControl and set the field, that's the way it has to be, remember that you need to use a DataSource (it is used as a containaer) and put inside the DataControl, so the the datasource has tha table's name and datacontrol the field. I don't know if you use the datasource, it is just a comment. You can find more information at: http://gambasdoc.org/help/comp/gb.db.form best regards ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Wednesday, October 24, 2007 11:05:42 AM Subject: Re: [Gambas-user] DataControl On mercredi 24 octobre 2007, Ant?nio Pereira wrote: > Hi list members, > > Thanks for tips on gb.db.form but have the same problem: the > DataControl is not visible at run time (even after the Fabien Bodard > tip). > Did anybody experiment the same problem ? Or will it be that it keeps on > being my mistake ? > > Regards, > > Ant?nio Pereira > Did you look at the Database example? There is a form that use data bounds controls. At the moment, it seems to not work with gb.gtk, but it works with gb.qt. Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From david_villalobos_c at ...43... Wed Oct 24 19:57:16 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 24 Oct 2007 10:57:16 -0700 (PDT) Subject: [Gambas-user] gb.db (Charset) Message-ID: <228838.46106.qm@...1716...> Hi all, One of these days I realised somethig interesting. I use MySQL version 6.0, and I create my databases manually, I mean, I don't use gambas-database-manager for that. All my databases uses UTF-8, but when I see the values in the connection, the property Charset has the value "latin1", this property has to be UTF-8, right? I haven't any problem with this, but to me, it seems a bug. By the way I use Mandriva 2007.1 and Gambas 1.9.90. Regards David __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From david_villalobos_c at ...43... Wed Oct 24 20:01:49 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 24 Oct 2007 11:01:49 -0700 (PDT) Subject: [Gambas-user] Get erros codes in gb.db Message-ID: <359663.38777.qm@...1668...> Hi all, (again) How can I get the error code (not the error message) if somethig with the database fails. I mean, if somethig goes bad, Gambas prints a message that explain the error, I don't need the message, I need the code. Is it possible to get the errors codes? and How? Regards. David __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gambas at ...1... Wed Oct 24 20:06:22 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 24 Oct 2007 20:06:22 +0200 Subject: [Gambas-user] Get erros codes in gb.db In-Reply-To: <359663.38777.qm@...1668...> References: <359663.38777.qm@...1668...> Message-ID: <200710242006.22468.gambas@...1...> On mercredi 24 octobre 2007, David Villalobos Cambronero wrote: > Hi all, (again) > > How can I get the error code (not the error message) if somethig with > the database fails. I mean, if somethig goes bad, Gambas prints a message > that explain the error, I don't need the message, I need the code. > > Is it possible to get the errors codes? and How? > Regards. > > David > Ha ha! DB.Error will return the integer error code returned by the database backend. Not all can return one, But mySQL does. Well... check to be sure... Regards, -- Benoit Minisini From gambas at ...1... Wed Oct 24 20:11:55 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 24 Oct 2007 20:11:55 +0200 Subject: [Gambas-user] gb.db (Charset) In-Reply-To: <228838.46106.qm@...1716...> References: <228838.46106.qm@...1716...> Message-ID: <200710242011.55681.gambas@...1...> On mercredi 24 octobre 2007, David Villalobos Cambronero wrote: > Hi all, > > One of these days I realised somethig interesting. I use MySQL version > 6.0, and I create my databases manually, I mean, I don't use > gambas-database-manager for that. All my databases uses UTF-8, but when I > see the values in the connection, the property Charset has the value > "latin1", this property has to be UTF-8, right? > > I haven't any problem with this, but to me, it seems a bug. By the way > I use Mandriva 2007.1 and Gambas 1.9.90. > > Regards > > David > Right, I noticed the same problem with MySQL 5 on Mandriva 2008. I think that the database client tells by default to the server that it want "latin1", even if the server uses UTF-8! But I must investigate to understand what happens really. Regards, -- Benoit Minisini From gambas at ...1... Wed Oct 24 20:19:29 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 24 Oct 2007 20:19:29 +0200 Subject: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS Message-ID: <200710242019.29538.gambas@...1...> Did you notice that, when you announce that you want to make a release candidate of a software developed for almost two years: * Suddenly people start to find many bugs everywhere. * At the same time, your boss tells you that you have to redevelop an essential piece of software for your client and that must be ready before the end of the month. * Otherwise, you just want to put on a theatre play, and it is a nightmare to find four interested people at the same time and same place, so you have a bad sleep. I sometimes hear a big dark red daemon laughing behind me... -- Benoit Minisini From dcamposf at ...626... Wed Oct 24 20:23:51 2007 From: dcamposf at ...626... (Daniel Campos) Date: Wed, 24 Oct 2007 20:23:51 +0200 Subject: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS In-Reply-To: <200710242019.29538.gambas@...1...> References: <200710242019.29538.gambas@...1...> Message-ID: <7259b5ae0710241123n7eda46d1o3c7325ab699e5395@...627...> I agree, I think time must really be divided in quantums, as things at work are not continuous but divided in idle periods followed by storms of bunchs of people asking you to do many different things... 2007/10/24, Benoit Minisini : > Did you notice that, when you announce that you want to make a release > candidate of a software developed for almost two years: > > * Suddenly people start to find many bugs everywhere. > > * At the same time, your boss tells you that you have to redevelop an > essential piece of software for your client and that must be ready before the > end of the month. > > * Otherwise, you just want to put on a theatre play, and it is a nightmare to > find four interested people at the same time and same place, so you have a > bad sleep. > > I sometimes hear a big dark red daemon laughing behind me... > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From ct1egh at ...626... Thu Oct 25 00:41:16 2007 From: ct1egh at ...626... (=?ISO-8859-1?B?QW50825pbw==?= Pereira) Date: Wed, 24 Oct 2007 23:41:16 +0100 Subject: [Gambas-user] DataControl In-Reply-To: <684252.93954.qm@...1782...> References: <684252.93954.qm@...1782...> Message-ID: <20071024234116.7c404162@...1779...> Hi, Yes, first I inserted a DataSource (linked to a table) and inside of him a DataControl (linked to a field), a DataCombo (linked to a table and a field), a DataBrowser and a DataView (both with columns). They all are filled out. The only one that is still invisible is the DataControl. If I put a Button with the command 'PRINT DataControl1.Value' at click event then I get the field value at console. It can be only a mistake of newbie :) Regards, Ant?nio Pereira Em Wed, 24 Oct 2007 10:31:15 -0700 (PDT) David Villalobos Cambronero escreveu: > Hi, > > You say that put a DataControl and set the field, that's the way > it has to be, remember that you need to use a DataSource (it is used > as a containaer) and put inside the DataControl, so the the > datasource has tha table's name and datacontrol the field. > > I don't know if you use the datasource, it is just a comment. You > can find more information at: > http://gambasdoc.org/help/comp/gb.db.form > > best regards > > > ----- Original Message ---- > From: Benoit Minisini > To: mailing list for gambas users > Sent: Wednesday, October 24, 2007 11:05:42 AM > Subject: Re: [Gambas-user] DataControl > > > On mercredi 24 octobre 2007, Ant?nio Pereira wrote: > > Hi list members, > > > > Thanks for tips on gb.db.form but have the same problem: the > > DataControl is not visible at run time (even after the Fabien Bodard > > tip). > > Did anybody experiment the same problem ? Or will it be that it > > keeps > on > > being my mistake ? > > > > Regards, > > > > Ant?nio Pereira > > > > Did you look at the Database example? There is a form that use data > bounds > controls. At the moment, it seems to not work with gb.gtk, but it > works with > gb.qt. > > Regards, > From jredrejo at ...626... Thu Oct 25 10:17:33 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Thu, 25 Oct 2007 10:17:33 +0200 Subject: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS In-Reply-To: <7259b5ae0710241123n7eda46d1o3c7325ab699e5395@...627...> References: <200710242019.29538.gambas@...1...> <7259b5ae0710241123n7eda46d1o3c7325ab699e5395@...627...> Message-ID: <8eb28a500710250117q352aba2bq8e4e07f3cffd20e6@...627...> Daniel, Beno?t : I think you should spend less time in front of a computer. If you begin to see daemons and talk about time quantums, something's beginning to go badly inside your minds... ;-) 2007/10/24, Daniel Campos : > > I agree, I think time must really be divided in quantums, as things at > work are not continuous but divided in idle periods followed by storms > of bunchs of people asking you to do many different things... > > > 2007/10/24, Benoit Minisini : > > Did you notice that, when you announce that you want to make a release > > candidate of a software developed for almost two years: > > > > * Suddenly people start to find many bugs everywhere. > > > > * At the same time, your boss tells you that you have to redevelop an > > essential piece of software for your client and that must be ready > before the > > end of the month. > > > > * Otherwise, you just want to put on a theatre play, and it is a > nightmare to > > find four interested people at the same time and same place, so you have > a > > bad sleep. > > > > I sometimes hear a big dark red daemon laughing behind me... > > > > -- > > Benoit Minisini > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From dcamposf at ...626... Thu Oct 25 10:36:00 2007 From: dcamposf at ...626... (Daniel Campos) Date: Thu, 25 Oct 2007 10:36:00 +0200 Subject: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS In-Reply-To: <8eb28a500710250117q352aba2bq8e4e07f3cffd20e6@...627...> References: <200710242019.29538.gambas@...1...> <7259b5ae0710241123n7eda46d1o3c7325ab699e5395@...627...> <8eb28a500710250117q352aba2bq8e4e07f3cffd20e6@...627...> Message-ID: <7259b5ae0710250136w7aca20f5vc941531c46bb5efe@...627...> > Daniel, Beno?t : I think you should spend less time in front of a computer. > If you begin to see daemons and talk about time quantums, something's > beginning to go badly inside your minds... ;-) I agree with you too :-) From david_villalobos_c at ...43... Thu Oct 25 14:15:18 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Thu, 25 Oct 2007 05:15:18 -0700 (PDT) Subject: [Gambas-user] Get erros codes in gb.db Message-ID: <126932.88225.qm@...1674...> Jejeje you are right, it was so easy. Thanks a lot David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Wednesday, October 24, 2007 12:06:22 PM Subject: Re: [Gambas-user] Get erros codes in gb.db On mercredi 24 octobre 2007, David Villalobos Cambronero wrote: > Hi all, (again) > > How can I get the error code (not the error message) if somethig with > the database fails. I mean, if somethig goes bad, Gambas prints a message > that explain the error, I don't need the message, I need the code. > > Is it possible to get the errors codes? and How? > Regards. > > David > Ha ha! DB.Error will return the integer error code returned by the database backend. Not all can return one, But mySQL does. Well... check to be sure... Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From david_villalobos_c at ...43... Thu Oct 25 15:59:25 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Thu, 25 Oct 2007 06:59:25 -0700 (PDT) Subject: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS Message-ID: <869789.7368.qm@...1670...> Calm I know that sometimes the universe conspires in opposition to our desires, but it is necessary to continue improve little by little, I believe that nobody will die if Gambas 2 is ready some days after the awaited date. Take it easy..... jejejejejejejejeje Life is too short to not enjoy it I know you (Jos?, Daniel and Beno?t) have a lot of work, if I can help you please let me know ;-) ----- Original Message ---- From: Jos? Luis Redrejo To: mailing list for gambas users Sent: Thursday, October 25, 2007 2:17:33 AM Subject: Re: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS Daniel, Beno?t : I think you should spend less time in front of a computer. If you begin to see daemons and talk about time quantums, something's beginning to go badly inside your minds... ;-) 2007/10/24, Daniel Campos : > > I agree, I think time must really be divided in quantums, as things at > work are not continuous but divided in idle periods followed by storms > of bunchs of people asking you to do many different things... > > > 2007/10/24, Benoit Minisini : > > Did you notice that, when you announce that you want to make a release > > candidate of a software developed for almost two years: > > > > * Suddenly people start to find many bugs everywhere. > > > > * At the same time, your boss tells you that you have to redevelop an > > essential piece of software for your client and that must be ready > before the > > end of the month. > > > > * Otherwise, you just want to put on a theatre play, and it is a > nightmare to > > find four interested people at the same time and same place, so you have > a > > bad sleep. > > > > I sometimes hear a big dark red daemon laughing behind me... > > > > -- > > Benoit Minisini > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From leonardo at ...1237... Fri Oct 26 11:11:24 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Fri, 26 Oct 2007 11:11:24 +0200 Subject: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS In-Reply-To: <200710242019.29538.gambas@...1...> References: <200710242019.29538.gambas@...1...> Message-ID: <4721AF3C.8090907@...1237...> Benoit Minisini ha scritto: > Did you notice that, when you announce that you want to make a release > candidate of a software developed for almost two years: > > * Suddenly people start to find many bugs everywhere. > > * At the same time, your boss tells you that you have to redevelop an > essential piece of software for your client and that must be ready before the > end of the month. > > * Otherwise, you just want to put on a theatre play, and it is a nightmare to > find four interested people at the same time and same place, so you have a > bad sleep. > > I sometimes hear a big dark red daemon laughing behind me... > Yesterday the new computer for the company where I work in is arrived... I built it and then I started to install OpenSUSE 10.3 on it.... After restart, it didn't configure the ethernet card.... no internet.... my boss was "veeery happy" of it.... So I had to to solve this problem and I called at home to inform my wife that I would come back at home later... She told me that my 2 little sons were destroying her patience and she was hoping that I would be back at home earlier... At the end of the story, I came back at home at midnight, with my wife that was waiting for me with a knife in the back the entering door.... It seems that when a thing goes wrong, all the world begins to go wrong for you!!! :-(((( -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From leonardo at ...1237... Fri Oct 26 11:15:09 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Fri, 26 Oct 2007 11:15:09 +0200 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence Message-ID: <4721B01D.5070309@...1237...> Some days ago I installed Ubuntu 7.10 on my laptop and tried to compile Gambas on it. When I ran Gambas IDE I got an horrible window with a very bad look... So I tried to open a project of mine and I got Gambas that seems to use KDE2!!! Windows decorations are terrific and all the applications have this look&feel. I tried to modify the look of the KDE applications with kcontrol (the panel control of KDE) but I didn't solve nothing.... Strange, because on previous Ubuntu 7.04 all things worked fine with this method. Any suggestions? Does anybody use Ubuntu 7.10 without problems? -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From tomas.eroles at ...277... Fri Oct 26 11:30:50 2007 From: tomas.eroles at ...277... (Tomas Eroles i Forner) Date: Fri, 26 Oct 2007 11:30:50 +0200 Subject: [Gambas-user] PHILOSOPHICAL REMARK ON LIFE AND ALL THOSE SORT OF THINGS In-Reply-To: <4721AF3C.8090907@...1237...> References: <200710242019.29538.gambas@...1...> <4721AF3C.8090907@...1237...> Message-ID: <1193391050.4165.8.camel@...1787...> Hi all Sorry for you, Leonardo. Buy some flowers, look for a baby sitter for your sons, and go dinner with you wife as soon as possible and good luck. Well, my history is not a joke, but it seems like that. I've been working in a Motor Home Company (around 150 workers) during last year. When I started, in September 2006, all was perfect, but when the Computer Department of the Company's Headquarters came to my company things started to change. I wanted to unify the 5 different databases, and they said they had a better system designed by them, useful, easy to use, and easy to mantain. After one year, they said me I have leave my job, because they cannot justify my job. Now they'are yet working with their "perfect" system, made in Excel. Regards El vie, 26-10-2007 a las 11:11 +0200, Leonardo Miliani escribi?: > Benoit Minisini ha scritto: > > Did you notice that, when you announce that you want to make a release > > candidate of a software developed for almost two years: > > > > * Suddenly people start to find many bugs everywhere. > > > > * At the same time, your boss tells you that you have to redevelop an > > essential piece of software for your client and that must be ready before the > > end of the month. > > > > * Otherwise, you just want to put on a theatre play, and it is a nightmare to > > find four interested people at the same time and same place, so you have a > > bad sleep. > > > > I sometimes hear a big dark red daemon laughing behind me... > > > > Yesterday the new computer for the company where I work in is arrived... > I built it and then I started to install OpenSUSE 10.3 on it.... > After restart, it didn't configure the ethernet card.... no internet.... > my boss was "veeery happy" of it.... So I had to to solve this problem > and I called at home to inform my wife that I would come back at home > later... She told me that my 2 little sons were destroying her patience > and she was hoping that I would be back at home earlier... > At the end of the story, I came back at home at midnight, with my wife > that was waiting for me with a knife in the back the entering door.... > > It seems that when a thing goes wrong, all the world begins to go wrong > for you!!! :-(((( > > From epileg at ...626... Fri Oct 26 11:46:55 2007 From: epileg at ...626... (=?ISO-8859-1?Q?Ep=EDleg?=) Date: Fri, 26 Oct 2007 11:46:55 +0200 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <4721B01D.5070309@...1237...> References: <4721B01D.5070309@...1237...> Message-ID: <4721B78F.8020107@...626...> En/na Leonardo Miliani ha escrit: > Some days ago I installed Ubuntu 7.10 on my laptop and tried to compile > Gambas on it. > When I ran Gambas IDE I got an horrible window with a very bad look... > So I tried to open a project of mine and I got Gambas that seems to use > KDE2!!! Windows decorations are terrific and all the applications have > this look&feel. > I tried to modify the look of the KDE applications with kcontrol (the > panel control of KDE) but I didn't solve nothing.... > Strange, because on previous Ubuntu 7.04 all things worked fine with > this method. > Any suggestions? Does anybody use Ubuntu 7.10 without problems? > I got the exactly same problem. One comment: only the gambas2 ide and the gambas2 kde programs has this visual/aspect problem. Others kde programs like kaffeine or kate looks good, as in ubuntu 7.04. One question: Do you have an ATI graphic card? Me yes. Users with an ATI card has this problem and others without an ATI one has NOT it. regards. Ep?leg. -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature URL: From jredrejo at ...626... Fri Oct 26 11:57:49 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Fri, 26 Oct 2007 11:57:49 +0200 Subject: [Gambas-user] Problems with some events Message-ID: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> Tested with versions 1.9.50 & 1.9.90 in Debian, with object FileView using form component: - with gb.gtk component, click event doesn't raise - with gb.qt component, drop event doesn't raise Regards. Jos? L. From gambas at ...1... Fri Oct 26 12:57:00 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 26 Oct 2007 12:57:00 +0200 Subject: [Gambas-user] Problems with some events In-Reply-To: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> References: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> Message-ID: <200710261257.00917.gambas@...1...> On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > Tested with versions 1.9.50 & 1.9.90 in Debian, with object FileView using > form component: > - with gb.gtk component, click event doesn't raise > - with gb.qt component, drop event doesn't raise > > Regards. > Jos? L. Please can you provide me more details, and especially a little project example that shows the problem? Thanks in advance. Regards, -- Benoit Minisini From gambas.fr at ...626... Fri Oct 26 12:57:35 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Fri, 26 Oct 2007 12:57:35 +0200 Subject: [Gambas-user] Problem with datacombo Message-ID: <6324a42a0710260357n4d9b27afy95d09d97d283eb5f@...627...> in a database i have : Table Produce idProd Prodname idFamilly idCategory idType Table Familly: idFamilly Name TableCategory idCategory Name idFamilly Table Type: idType Name idFamilly idCategory in a form i add a datasource linked to Produce table on it i add a data broswer with Table idprod, prodname then i add a panel with contain these datacontrol prodName and datacombo on Familly on Category on Type But i've a stack overflow :( Help ! Fabien From gambas at ...1... Fri Oct 26 13:06:26 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 26 Oct 2007 13:06:26 +0200 Subject: [Gambas-user] gb.db (Charset) In-Reply-To: <200710242011.55681.gambas@...1...> References: <228838.46106.qm@...1716...> <200710242011.55681.gambas@...1...> Message-ID: <200710261306.26221.gambas@...1...> On mercredi 24 octobre 2007, Benoit Minisini wrote: > On mercredi 24 octobre 2007, David Villalobos Cambronero wrote: > > Hi all, > > > > One of these days I realised somethig interesting. I use MySQL > > version 6.0, and I create my databases manually, I mean, I don't use > > gambas-database-manager for that. All my databases uses UTF-8, but when I > > see the values in the connection, the property Charset has the value > > "latin1", this property has to be UTF-8, right? > > > > I haven't any problem with this, but to me, it seems a bug. By the > > way I use Mandriva 2007.1 and Gambas 1.9.90. > > > > Regards > > > > David > > Right, I noticed the same problem with MySQL 5 on Mandriva 2008. > > I think that the database client tells by default to the server that it > want "latin1", even if the server uses UTF-8! > > But I must investigate to understand what happens really. > > Regards, Well, on Mandriva 2008 it seems that the mySQL server cannot be switched to "UTF-8", and that the client cannot change its character set to "UTF-8" (with the mySQL SQL command 'SET NAMES'). "UTF-8" is a unknown character set... So t seems logical that the client charset is "latin1". According to the documentation, when the client connect, it gets by default the default charset of the server, which should be UTF-8 in your case. So I don't see how you can get "latin1". What happens if you connect to your UTF-8 server with the mysql command? Do you have latin1 as default character set? What is the default charset of the OS ($LANG variable)? -- Benoit Minisini From gambas at ...1... Fri Oct 26 13:31:37 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 26 Oct 2007 13:31:37 +0200 Subject: [Gambas-user] gb.db (Charset) In-Reply-To: <200710261306.26221.gambas@...1...> References: <228838.46106.qm@...1716...> <200710242011.55681.gambas@...1...> <200710261306.26221.gambas@...1...> Message-ID: <200710261331.37734.gambas@...1...> On vendredi 26 octobre 2007, Benoit Minisini wrote: > On mercredi 24 octobre 2007, Benoit Minisini wrote: > > On mercredi 24 octobre 2007, David Villalobos Cambronero wrote: > > > Hi all, > > > > > > One of these days I realised somethig interesting. I use MySQL > > > version 6.0, and I create my databases manually, I mean, I don't use > > > gambas-database-manager for that. All my databases uses UTF-8, but when > > > I see the values in the connection, the property Charset has the value > > > "latin1", this property has to be UTF-8, right? > > > > > > I haven't any problem with this, but to me, it seems a bug. By the > > > way I use Mandriva 2007.1 and Gambas 1.9.90. > > > > > > Regards > > > > > > David > > > > Right, I noticed the same problem with MySQL 5 on Mandriva 2008. > > > > I think that the database client tells by default to the server that it > > want "latin1", even if the server uses UTF-8! > > > > But I must investigate to understand what happens really. > > > > Regards, > > Well, on Mandriva 2008 it seems that the mySQL server cannot be switched > to "UTF-8", and that the client cannot change its character set to "UTF-8" > (with the mySQL SQL command 'SET NAMES'). "UTF-8" is a unknown character > set... So t seems logical that the client charset is "latin1". > > According to the documentation, when the client connect, it gets by default > the default charset of the server, which should be UTF-8 in your case. So I > don't see how you can get "latin1". What happens if you connect to your > UTF-8 server with the mysql command? Do you have latin1 as default > character set? What is the default charset of the OS ($LANG variable)? Oops. I was wrong. It is just a matter of using "UTF8" and not "UTF-8". So weird... But apparently "latin1" is the default character set, even if my system is set to UTF-8. As for what value should have DB.Charset, it depends on your point of view: * You can keep the default. Note that DB.Charset is not the charset of the database, but the charset of the connection. Keeping the default is easier, as then the code does not depend on the database backend: it does nothing :-) * You can use the server database charset. * You can use the charset of the client OS. I find the last the more logical. After all, if the current charset of OS is "XYZ", you would like the database server to talk to you with the same charset. Note that changing the charset is not possible in all database backends, and is not supported by the database component at the moment. And that you can issue a MySQL SQL command if you really need a specific charset. Tell me what you think about that... Regards, -- Benoit Minisini From gambas at ...1... Fri Oct 26 13:33:11 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 26 Oct 2007 13:33:11 +0200 Subject: [Gambas-user] Problem with datacombo In-Reply-To: <6324a42a0710260357n4d9b27afy95d09d97d283eb5f@...627...> References: <6324a42a0710260357n4d9b27afy95d09d97d283eb5f@...627...> Message-ID: <200710261333.12063.gambas@...1...> On vendredi 26 octobre 2007, Fabien Bodard wrote: > in a database i have : > Table Produce > idProd > Prodname > idFamilly > idCategory > idType > > Table Familly: > idFamilly > Name > > TableCategory > > idCategory > Name > idFamilly > > Table Type: > idType > Name > idFamilly > idCategory > > > > in a form > i add a datasource linked to Produce table > on it i add a data broswer > > with Table idprod, prodname > > then i add a panel with contain these datacontrol > > prodName > and > datacombo > on Familly > on Category > on Type > > But i've a stack overflow :( > > > Help ! > > Fabien Please send the project, and a SQL dump of your database (with the metadata). Regards, -- Benoit Minisini From jredrejo at ...626... Fri Oct 26 14:28:02 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Fri, 26 Oct 2007 14:28:02 +0200 Subject: [Gambas-user] Problems with some events In-Reply-To: <200710261257.00917.gambas@...1...> References: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> <200710261257.00917.gambas@...1...> Message-ID: <8eb28a500710260528r3cbee6a4h8a5fb743d16b515e@...627...> 2007/10/26, Benoit Minisini : > > On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > > Tested with versions 1.9.50 & 1.9.90 in Debian, with object FileView > using > > form component: > > - with gb.gtk component, click event doesn't raise > > - with gb.qt component, drop event doesn't raise > > > > Regards. > > Jos? L. > > Please can you provide me more details, and especially a little project > example that shows the problem? > > Thanks in advance. > Sure, but it's quite simple, started a new project with only one form and a FileView object, and try to catch these events with breakpoints. Switch from qt to gtk components to check which are working. Attached is the example I used. Regards. -------------- next part -------------- A non-text attachment was scrubbed... Name: hhh.tar.gz Type: application/x-gzip Size: 4282 bytes Desc: not available URL: From david_villalobos_c at ...43... Fri Oct 26 14:33:22 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Fri, 26 Oct 2007 05:33:22 -0700 (PDT) Subject: [Gambas-user] gb.db (Charset) Message-ID: <428114.48862.qm@...1674...> Well, first that ofall, thank you very much for your information, now I have clear how the things work. In the first mail I believe that I forgot to mention that I have not had problems with the storage of special characters, only that seemed to me to be very strange that the charset was in latin1. My predetermined language is es_ES, and Spanish has many special characters, and the truth there does no seem to be a problem. I believe that is better to have clearly why things happen. Once again.... thanks David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Friday, October 26, 2007 5:31:37 AM Subject: Re: [Gambas-user] gb.db (Charset) On vendredi 26 octobre 2007, Benoit Minisini wrote: > On mercredi 24 octobre 2007, Benoit Minisini wrote: > > On mercredi 24 octobre 2007, David Villalobos Cambronero wrote: > > > Hi all, > > > > > > One of these days I realised somethig interesting. I use MySQL > > > version 6.0, and I create my databases manually, I mean, I don't use > > > gambas-database-manager for that. All my databases uses UTF-8, but when > > > I see the values in the connection, the property Charset has the value > > > "latin1", this property has to be UTF-8, right? > > > > > > I haven't any problem with this, but to me, it seems a bug. By the > > > way I use Mandriva 2007.1 and Gambas 1.9.90. > > > > > > Regards > > > > > > David > > > > Right, I noticed the same problem with MySQL 5 on Mandriva 2008. > > > > I think that the database client tells by default to the server that it > > want "latin1", even if the server uses UTF-8! > > > > But I must investigate to understand what happens really. > > > > Regards, > > Well, on Mandriva 2008 it seems that the mySQL server cannot be switched > to "UTF-8", and that the client cannot change its character set to "UTF-8" > (with the mySQL SQL command 'SET NAMES'). "UTF-8" is a unknown character > set... So t seems logical that the client charset is "latin1". > > According to the documentation, when the client connect, it gets by default > the default charset of the server, which should be UTF-8 in your case. So I > don't see how you can get "latin1". What happens if you connect to your > UTF-8 server with the mysql command? Do you have latin1 as default > character set? What is the default charset of the OS ($LANG variable)? Oops. I was wrong. It is just a matter of using "UTF8" and not "UTF-8". So weird... But apparently "latin1" is the default character set, even if my system is set to UTF-8. As for what value should have DB.Charset, it depends on your point of view: * You can keep the default. Note that DB.Charset is not the charset of the database, but the charset of the connection. Keeping the default is easier, as then the code does not depend on the database backend: it does nothing :-) * You can use the server database charset. * You can use the charset of the client OS. I find the last the more logical. After all, if the current charset of OS is "XYZ", you would like the database server to talk to you with the same charset. Note that changing the charset is not possible in all database backends, and is not supported by the database component at the moment. And that you can issue a MySQL SQL command if you really need a specific charset. Tell me what you think about that... Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gambas at ...1... Fri Oct 26 14:41:14 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 26 Oct 2007 14:41:14 +0200 Subject: [Gambas-user] gb.db (Charset) In-Reply-To: <428114.48862.qm@...1674...> References: <428114.48862.qm@...1674...> Message-ID: <200710261441.14614.gambas@...1...> On vendredi 26 octobre 2007, David Villalobos Cambronero wrote: > Well, first that ofall, thank you very much for your information, now I > have clear how the things work. > > In the first mail I believe that I forgot to mention that I have not had > problems with the storage of special characters, only that seemed to me to > be very strange that the charset was in latin1. > > My predetermined language is es_ES, and Spanish has many special > characters, and the truth there does no seem to be a problem. > > I believe that is better to have clearly why things happen. > > Once again.... thanks > > David > > Well, you only have problems when you want to sort strings inside the server, with SQL requests: then the server charset must match the charset used for encoding your strings. Apart from that, you can purely ignore the database charset, by always storing your strings from Gambas in UTF-8, and reading them by doing no conversion. This is the reason of the "use database charset" menu in the database manager pop-up menu. If this menu is checked, then the database manager will do charset conversion by using DB.Charset and System.Charset. If this menu is not checked, the database manager will not do any conversion at all, and you will see the strings as the database server send them to you. Regards, -- Benoit Minisini From ct1egh at ...626... Fri Oct 26 15:20:47 2007 From: ct1egh at ...626... (=?ISO-8859-1?B?QW50825pbw==?= Pereira) Date: Fri, 26 Oct 2007 14:20:47 +0100 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <4721B78F.8020107@...626...> References: <4721B01D.5070309@...1237...> <4721B78F.8020107@...626...> Message-ID: <20071026142047.00b1fafd@...1779...> Hi, I have the same problem on my laptop (Asus A7S with NVIDIA 8400M G) all programs looks nice except Gambas 1.9.90. At the moment I use Gutsy Gibbon 7.10 but I didn't try yet on Suse 10.3 to compare the look. If you have a way to resolve this problem many people thank you :) Regards, Ant?nio Pereira Em Fri, 26 Oct 2007 11:46:55 +0200 Ep?leg escreveu: > En/na Leonardo Miliani ha escrit: > > Some days ago I installed Ubuntu 7.10 on my laptop and tried to > > compile Gambas on it. > > When I ran Gambas IDE I got an horrible window with a very bad > > look... So I tried to open a project of mine and I got Gambas that > > seems to use KDE2!!! Windows decorations are terrific and all the > > applications have this look&feel. > > I tried to modify the look of the KDE applications with kcontrol > > (the panel control of KDE) but I didn't solve nothing.... > > Strange, because on previous Ubuntu 7.04 all things worked fine with > > this method. > > Any suggestions? Does anybody use Ubuntu 7.10 without problems? > > > > I got the exactly same problem. > > One comment: only the gambas2 ide and the gambas2 kde programs has > this visual/aspect problem. Others kde programs like kaffeine or kate > looks good, as in ubuntu 7.04. > > One question: Do you have an ATI graphic card? Me yes. > Users with an ATI card has this problem and others without an ATI one > has NOT it. > > regards. > Ep?leg. > From gambas at ...1... Fri Oct 26 15:28:32 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 26 Oct 2007 15:28:32 +0200 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <20071026142047.00b1fafd@...1779...> References: <4721B01D.5070309@...1237...> <4721B78F.8020107@...626...> <20071026142047.00b1fafd@...1779...> Message-ID: <200710261528.32319.gambas@...1...> On vendredi 26 octobre 2007, Ant?nio Pereira wrote: > Hi, > > I have the same problem on my laptop (Asus A7S with NVIDIA 8400M G) all > programs looks nice except Gambas 1.9.90. > At the moment I use Gutsy Gibbon 7.10 but I didn't try yet on Suse 10.3 > to compare the look. > If you have a way to resolve this problem many people thank you :) > > Regards, > > Ant?nio Pereira > Gambas is not a KDE application, it is a QT application. Normally, when you install the QT library on a system, a configuration file and a configuration program must come with it. This configuration file tells which font and which theme to use among other things. Maybe I'm wrong, but I think that Ubunty does not correctly install or fill this configuration file. The configuration program is 'qtconfig'. And the configuration file is "~/.qt/qtrc" on my Mandriva 2008. Check that you have them. Regards, -- Benoit Minisini From tomas.eroles at ...277... Fri Oct 26 15:34:34 2007 From: tomas.eroles at ...277... (Tomas Eroles i Forner) Date: Fri, 26 Oct 2007 15:34:34 +0200 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <20071026142047.00b1fafd@...1779...> References: <4721B01D.5070309@...1237...> <4721B78F.8020107@...626...> <20071026142047.00b1fafd@...1779...> Message-ID: <1193405674.4165.20.camel@...1787...> Hi all, hi Ant?nio If you want to try it, perfect, but I use SuSE 10.3 with a Nvidia 400 card. It works perfectly, not only Gambas, but also 3D effects, KDE and Gnome. hope help bye El vie, 26-10-2007 a las 14:20 +0100, Ant?nio Pereira escribi?: > Hi, > > I have the same problem on my laptop (Asus A7S with NVIDIA 8400M G) all > programs looks nice except Gambas 1.9.90. > At the moment I use Gutsy Gibbon 7.10 but I didn't try yet on Suse 10.3 > to compare the look. > If you have a way to resolve this problem many people thank you :) > > Regards, > > Ant?nio Pereira > > > Em Fri, 26 Oct 2007 11:46:55 +0200 Ep?leg escreveu: > > > En/na Leonardo Miliani ha escrit: > > > Some days ago I installed Ubuntu 7.10 on my laptop and tried to > > > compile Gambas on it. > > > When I ran Gambas IDE I got an horrible window with a very bad > > > look... So I tried to open a project of mine and I got Gambas that > > > seems to use KDE2!!! Windows decorations are terrific and all the > > > applications have this look&feel. > > > I tried to modify the look of the KDE applications with kcontrol > > > (the panel control of KDE) but I didn't solve nothing.... > > > Strange, because on previous Ubuntu 7.04 all things worked fine with > > > this method. > > > Any suggestions? Does anybody use Ubuntu 7.10 without problems? > > > > > > > I got the exactly same problem. > > > > One comment: only the gambas2 ide and the gambas2 kde programs has > > this visual/aspect problem. Others kde programs like kaffeine or kate > > looks good, as in ubuntu 7.04. > > > > One question: Do you have an ATI graphic card? Me yes. > > Users with an ATI card has this problem and others without an ATI one > > has NOT it. > > > > regards. > > Ep?leg. > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas.fr at ...626... Fri Oct 26 16:01:38 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Fri, 26 Oct 2007 16:01:38 +0200 Subject: [Gambas-user] Problem with datacombo In-Reply-To: <200710261333.12063.gambas@...1...> References: <6324a42a0710260357n4d9b27afy95d09d97d283eb5f@...627...> <200710261333.12063.gambas@...1...> Message-ID: <200710261601.39456.gambas.fr@...626...> Le Friday 26 October 2007 13:33:11 Benoit Minisini, vous avez ?crit?: > On vendredi 26 octobre 2007, Fabien Bodard wrote: > > in a database i have : > > Table Produce > > idProd > > Prodname > > idFamilly > > idCategory > > idType > > > > Table Familly: > > idFamilly > > Name > > > > TableCategory > > > > idCategory > > Name > > idFamilly > > > > Table Type: > > idType > > Name > > idFamilly > > idCategory > > > > > > > > in a form > > i add a datasource linked to Produce table > > on it i add a data broswer > > > > with Table idprod, prodname > > > > then i add a panel with contain these datacontrol > > > > prodName > > and > > datacombo > > on Familly > > on Category > > on Type > > > > But i've a stack overflow :( > > > > > > Help ! > > > > Fabien > > Please send the project, and a SQL dump of your database (with the > metadata). > > Regards, This is the project and the db dump... Another thing i've seen in the datacombo src, The datacombo can't use string reference to communicate with a table... product.familly = "alcool" i prefer use string index as integer one as it allow to securize the database... (one entry lost... the database can be read by eyes and corrected more quikly) Fabien -------------- next part -------------- -- MySQL dump 10.11 -- -- Host: localhost Database: Stock -- ------------------------------------------------------ -- Server version 5.0.45-Debian_1ubuntu3-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `Inventaire` -- DROP TABLE IF EXISTS `Inventaire`; CREATE TABLE `Inventaire` ( `id` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `Inventaire` -- LOCK TABLES `Inventaire` WRITE; /*!40000 ALTER TABLE `Inventaire` DISABLE KEYS */; /*!40000 ALTER TABLE `Inventaire` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categorie` -- DROP TABLE IF EXISTS `categorie`; CREATE TABLE `categorie` ( `idcategorie` bigint(20) unsigned NOT NULL auto_increment, `famille` varchar(10) default NULL, `categorie` varchar(10) default NULL, `note` text, PRIMARY KEY (`idcategorie`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `categorie` -- LOCK TABLES `categorie` WRITE; /*!40000 ALTER TABLE `categorie` DISABLE KEYS */; INSERT INTO `categorie` VALUES (1,'Alcool','Pineau',NULL); /*!40000 ALTER TABLE `categorie` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `famille` -- DROP TABLE IF EXISTS `famille`; CREATE TABLE `famille` ( `idfamille` bigint(20) unsigned NOT NULL auto_increment, `famille` varchar(10) default NULL, `note` text, PRIMARY KEY (`idfamille`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `famille` -- LOCK TABLES `famille` WRITE; /*!40000 ALTER TABLE `famille` DISABLE KEYS */; INSERT INTO `famille` VALUES (1,'alcool','Produits contenants de l\'alcool'); /*!40000 ALTER TABLE `famille` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `produit` -- DROP TABLE IF EXISTS `produit`; CREATE TABLE `produit` ( `id` bigint(20) unsigned NOT NULL auto_increment, `reference` varchar(10) default NULL, `nom` varchar(32) default NULL, `capacite` double default NULL, `idunite` int(11) default NULL, `idcategorie` varchar(10) default NULL, `idfamille` int(11) default NULL, `idtype` int(11) default NULL, `pub` int(11) default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=302 DEFAULT CHARSET=latin1; -- -- Dumping data for table `produit` -- LOCK TABLES `produit` WRITE; /*!40000 ALTER TABLE `produit` DISABLE KEYS */; INSERT INTO `produit` VALUES (1,'MIGN','Mignonnette PR',20,NULL,NULL,NULL,NULL,-1),(2,NULL,NULL,NULL,1,'1',1,1,NULL),(3,NULL,NULL,NULL,1,'1',1,1,NULL),(4,NULL,NULL,NULL,1,'1',1,1,NULL),(5,NULL,NULL,NULL,1,'1',1,1,NULL),(6,NULL,NULL,NULL,1,'1',1,1,NULL),(7,NULL,NULL,NULL,1,'1',1,1,NULL),(8,NULL,NULL,NULL,1,'1',1,1,NULL),(9,NULL,NULL,NULL,1,'1',1,1,NULL),(10,NULL,NULL,NULL,1,'1',1,1,NULL),(11,NULL,NULL,NULL,1,'1',1,1,NULL),(12,NULL,NULL,NULL,1,'1',1,1,NULL),(13,NULL,NULL,NULL,1,'1',1,1,NULL),(14,NULL,NULL,NULL,1,'1',1,1,NULL),(15,NULL,NULL,NULL,1,'1',1,1,NULL),(16,NULL,NULL,NULL,1,'1',1,1,NULL),(17,NULL,NULL,NULL,1,'1',1,1,NULL),(18,NULL,NULL,NULL,1,'1',1,1,NULL),(19,NULL,NULL,NULL,1,'1',1,1,NULL),(20,NULL,NULL,NULL,1,'1',1,1,NULL),(21,NULL,NULL,NULL,1,'1',1,1,NULL),(22,NULL,NULL,NULL,1,'1',1,1,NULL),(23,NULL,NULL,NULL,1,'1',1,1,NULL),(24,NULL,NULL,NULL,1,'1',1,1,NULL),(25,NULL,NULL,NULL,1,'1',1,1,NULL),(26,NULL,NULL,NULL,1,'1',1,1,NULL),(27,NULL,NULL,NULL,1,'1',1,1,NULL),(28,NULL,NULL,NULL,1,'1',1,1,NULL),(29,NULL,NULL,NULL,1,'1',1,1,NULL),(30,NULL,NULL,NULL,1,'1',1,1,NULL),(31,NULL,NULL,NULL,1,'1',1,1,NULL),(32,NULL,NULL,NULL,1,'1',1,1,NULL),(33,NULL,NULL,NULL,1,'1',1,1,NULL),(34,NULL,NULL,NULL,1,'1',1,1,NULL),(35,NULL,NULL,NULL,1,'1',1,1,NULL),(36,NULL,NULL,NULL,1,'1',1,1,NULL),(37,NULL,NULL,NULL,1,'1',1,1,NULL),(38,NULL,NULL,NULL,1,'1',1,1,NULL),(39,NULL,NULL,NULL,1,'1',1,1,NULL),(40,NULL,NULL,NULL,1,'1',1,1,NULL),(41,NULL,NULL,NULL,1,'1',1,1,NULL),(42,NULL,NULL,NULL,1,'1',1,1,NULL),(43,NULL,NULL,NULL,1,'1',1,1,NULL),(44,NULL,NULL,NULL,1,'1',1,1,NULL),(45,NULL,NULL,NULL,1,'1',1,1,NULL),(46,NULL,NULL,NULL,1,'1',1,1,NULL),(47,NULL,NULL,NULL,1,'1',1,1,NULL),(48,NULL,NULL,NULL,1,'1',1,1,NULL),(49,NULL,NULL,NULL,1,'1',1,1,NULL),(50,NULL,NULL,NULL,1,'1',1,1,NULL),(51,NULL,NULL,NULL,1,'1',1,1,NULL),(52,NULL,NULL,NULL,1,'1',1,1,NULL),(53,NULL,NULL,NULL,1,'1',1,1,NULL),(54,NULL,NULL,NULL,1,'1',1,1,NULL),(55,NULL,NULL,NULL,1,'1',1,1,NULL),(56,NULL,NULL,NULL,1,'1',1,1,NULL),(57,NULL,NULL,NULL,1,'1',1,1,NULL),(58,NULL,NULL,NULL,1,'1',1,1,NULL),(59,NULL,NULL,NULL,1,'1',1,1,NULL),(60,NULL,NULL,NULL,1,'1',1,1,NULL),(61,NULL,NULL,NULL,1,'1',1,1,NULL),(62,NULL,NULL,NULL,1,'1',1,1,NULL),(63,NULL,NULL,NULL,1,'1',1,1,NULL),(64,NULL,NULL,NULL,1,'1',1,1,NULL),(65,NULL,NULL,NULL,1,'1',1,1,NULL),(66,NULL,NULL,NULL,1,'1',1,1,NULL),(67,NULL,NULL,NULL,1,'1',1,1,NULL),(68,NULL,NULL,NULL,1,'1',1,1,NULL),(69,NULL,NULL,NULL,1,'1',1,1,NULL),(70,NULL,NULL,NULL,1,'1',1,1,NULL),(71,NULL,NULL,NULL,1,'1',1,1,NULL),(72,NULL,NULL,NULL,1,'1',1,1,NULL),(73,NULL,NULL,NULL,1,'1',1,1,NULL),(74,NULL,NULL,NULL,1,'1',1,1,NULL),(75,NULL,NULL,NULL,1,'1',1,1,NULL),(76,NULL,NULL,NULL,1,'1',1,1,NULL),(77,NULL,NULL,NULL,1,'1',1,1,NULL),(78,NULL,NULL,NULL,1,'1',1,1,NULL),(79,NULL,NULL,NULL,1,'1',1,1,NULL),(80,NULL,NULL,NULL,1,'1',1,1,NULL),(81,NULL,NULL,NULL,1,'1',1,1,NULL),(82,NULL,NULL,NULL,1,'1',1,1,NULL),(83,NULL,NULL,NULL,1,'1',1,1,NULL),(84,NULL,NULL,NULL,1,'1',1,1,NULL),(85,NULL,NULL,NULL,1,'1',1,1,NULL),(86,NULL,NULL,NULL,1,'1',1,1,NULL),(87,NULL,NULL,NULL,1,'1',1,1,NULL),(88,NULL,NULL,NULL,1,'1',1,1,NULL),(89,NULL,NULL,NULL,1,'1',1,1,NULL),(90,NULL,NULL,NULL,1,'1',1,1,NULL),(91,NULL,NULL,NULL,1,'1',1,1,NULL),(92,NULL,NULL,NULL,1,'1',1,1,NULL),(93,NULL,NULL,NULL,1,'1',1,1,NULL),(94,NULL,NULL,NULL,1,'1',1,1,NULL),(95,NULL,NULL,NULL,1,'1',1,1,NULL),(96,NULL,NULL,NULL,1,'1',1,1,NULL),(97,NULL,NULL,NULL,1,'1',1,1,NULL),(98,NULL,NULL,NULL,1,'1',1,1,NULL),(99,NULL,NULL,NULL,1,'1',1,1,NULL),(100,NULL,NULL,NULL,1,'1',1,1,NULL),(101,NULL,NULL,NULL,1,'1',1,1,NULL),(102,NULL,NULL,NULL,1,'1',1,1,NULL),(103,NULL,NULL,NULL,1,'1',1,1,NULL),(104,NULL,NULL,NULL,1,'1',1,1,NULL),(105,NULL,NULL,NULL,1,'1',1,1,NULL),(106,NULL,NULL,NULL,1,'1',1,1,NULL),(107,NULL,NULL,NULL,1,'1',1,1,NULL),(108,NULL,NULL,NULL,1,'1',1,1,NULL),(109,NULL,NULL,NULL,1,'1',1,1,NULL),(110,NULL,NULL,NULL,1,'1',1,1,NULL),(111,NULL,NULL,NULL,1,'1',1,1,NULL),(112,NULL,NULL,NULL,1,'1',1,1,NULL),(113,NULL,NULL,NULL,1,'1',1,1,NULL),(114,NULL,NULL,NULL,1,'1',1,1,NULL),(115,NULL,NULL,NULL,1,'1',1,1,NULL),(116,NULL,NULL,NULL,1,'1',1,1,NULL),(117,NULL,NULL,NULL,1,'1',1,1,NULL),(118,NULL,NULL,NULL,1,'1',1,1,NULL),(119,NULL,NULL,NULL,1,'1',1,1,NULL),(120,NULL,NULL,NULL,1,'1',1,1,NULL),(121,NULL,NULL,NULL,1,'1',1,1,NULL),(122,NULL,NULL,NULL,1,'1',1,1,NULL),(123,NULL,NULL,NULL,1,'1',1,1,NULL),(124,NULL,NULL,NULL,1,'1',1,1,NULL),(125,NULL,NULL,NULL,1,'1',1,1,NULL),(126,NULL,NULL,NULL,1,'1',1,1,NULL),(127,NULL,NULL,NULL,1,'1',1,1,NULL),(128,NULL,NULL,NULL,1,'1',1,1,NULL),(129,NULL,NULL,NULL,1,'1',1,1,NULL),(130,NULL,NULL,NULL,1,'1',1,1,NULL),(131,NULL,NULL,NULL,1,'1',1,1,NULL),(132,NULL,NULL,NULL,1,'1',1,1,NULL),(133,NULL,NULL,NULL,1,'1',1,1,NULL),(134,NULL,NULL,NULL,1,'1',1,1,NULL),(135,NULL,NULL,NULL,1,'1',1,1,NULL),(136,NULL,NULL,NULL,1,'1',1,1,NULL),(137,NULL,NULL,NULL,1,'1',1,1,NULL),(138,NULL,NULL,NULL,1,'1',1,1,NULL),(139,NULL,NULL,NULL,1,'1',1,1,NULL),(140,NULL,NULL,NULL,1,'1',1,1,NULL),(141,NULL,NULL,NULL,1,'1',1,1,NULL),(142,NULL,NULL,NULL,1,'1',1,1,NULL),(143,NULL,NULL,NULL,1,'1',1,1,NULL),(144,NULL,NULL,NULL,1,'1',1,1,NULL),(145,NULL,NULL,NULL,1,'1',1,1,NULL),(146,NULL,NULL,NULL,1,'1',1,1,NULL),(147,NULL,NULL,NULL,1,'1',1,1,NULL),(148,NULL,NULL,NULL,1,'1',1,1,NULL),(149,NULL,NULL,NULL,1,'1',1,1,NULL),(150,NULL,NULL,NULL,1,'1',1,1,NULL),(151,NULL,NULL,NULL,1,'1',1,1,NULL),(152,NULL,NULL,NULL,1,'1',1,1,NULL),(153,NULL,NULL,NULL,1,'1',1,1,NULL),(154,NULL,NULL,NULL,1,'1',1,1,NULL),(155,NULL,NULL,NULL,1,'1',1,1,NULL),(156,NULL,NULL,NULL,1,'1',1,1,NULL),(157,NULL,NULL,NULL,1,'1',1,1,NULL),(158,NULL,NULL,NULL,1,'1',1,1,NULL),(159,NULL,NULL,NULL,1,'1',1,1,NULL),(160,NULL,NULL,NULL,1,'1',1,1,NULL),(161,NULL,NULL,NULL,1,'1',1,1,NULL),(162,NULL,NULL,NULL,1,'1',1,1,NULL),(163,NULL,NULL,NULL,1,'1',1,1,NULL),(164,NULL,NULL,NULL,1,'1',1,1,NULL),(165,NULL,NULL,NULL,1,'1',1,1,NULL),(166,NULL,NULL,NULL,1,'1',1,1,NULL),(167,NULL,NULL,NULL,1,'1',1,1,NULL),(168,NULL,NULL,NULL,1,'1',1,1,NULL),(169,NULL,NULL,NULL,1,'1',1,1,NULL),(170,NULL,NULL,NULL,1,'1',1,1,NULL),(171,NULL,NULL,NULL,1,'1',1,1,NULL),(172,NULL,NULL,NULL,1,'1',1,1,NULL),(173,NULL,NULL,NULL,1,'1',1,1,NULL),(174,NULL,NULL,NULL,1,'1',1,1,NULL),(175,NULL,NULL,NULL,1,'1',1,1,NULL),(176,NULL,NULL,NULL,1,'1',1,1,NULL),(177,NULL,NULL,NULL,1,'1',1,1,NULL),(178,NULL,NULL,NULL,1,'1',1,1,NULL),(179,NULL,NULL,NULL,1,'1',1,1,NULL),(180,NULL,NULL,NULL,1,'1',1,1,NULL),(181,NULL,NULL,NULL,1,'1',1,1,NULL),(182,NULL,NULL,NULL,1,'1',1,1,NULL),(183,NULL,NULL,NULL,1,'1',1,1,NULL),(184,NULL,NULL,NULL,1,'1',1,1,NULL),(185,NULL,NULL,NULL,1,'1',1,1,NULL),(186,NULL,NULL,NULL,1,'1',1,1,NULL),(187,NULL,NULL,NULL,1,'1',1,1,NULL),(188,NULL,NULL,NULL,1,'1',1,1,NULL),(189,NULL,NULL,NULL,1,'1',1,1,NULL),(190,NULL,NULL,NULL,1,'1',1,1,NULL),(191,NULL,NULL,NULL,1,'1',1,1,NULL),(192,NULL,NULL,NULL,1,'1',1,1,NULL),(193,NULL,NULL,NULL,1,'1',1,1,NULL),(194,NULL,NULL,NULL,1,'1',1,1,NULL),(195,NULL,NULL,NULL,1,'1',1,1,NULL),(196,NULL,NULL,NULL,1,'1',1,1,NULL),(197,NULL,NULL,NULL,1,'1',1,1,NULL),(198,NULL,NULL,NULL,1,'1',1,1,NULL),(199,NULL,NULL,NULL,1,'1',1,1,NULL),(200,NULL,NULL,NULL,1,'1',1,1,NULL),(201,NULL,NULL,NULL,1,'1',1,1,NULL),(202,NULL,NULL,NULL,1,'1',1,1,NULL),(203,NULL,NULL,NULL,1,'1',1,1,NULL),(204,NULL,NULL,NULL,1,'1',1,1,NULL),(205,NULL,NULL,NULL,1,'1',1,1,NULL),(206,NULL,NULL,NULL,1,'1',1,1,NULL),(207,NULL,NULL,NULL,1,'1',1,1,NULL),(208,NULL,NULL,NULL,1,'1',1,1,NULL),(209,NULL,NULL,NULL,1,'1',1,1,NULL),(210,NULL,NULL,NULL,1,'1',1,1,NULL),(211,NULL,NULL,NULL,1,'1',1,1,NULL),(212,NULL,NULL,NULL,1,'1',1,1,NULL),(213,NULL,NULL,NULL,1,'1',1,1,NULL),(214,NULL,NULL,NULL,1,'1',1,1,NULL),(215,NULL,NULL,NULL,1,'1',1,1,NULL),(216,NULL,NULL,NULL,1,'1',1,1,NULL),(217,NULL,NULL,NULL,1,'1',1,1,NULL),(218,NULL,NULL,NULL,1,'1',1,1,NULL),(219,NULL,NULL,NULL,1,'1',1,1,NULL),(220,NULL,NULL,NULL,1,'1',1,1,NULL),(221,NULL,NULL,NULL,1,'1',1,1,NULL),(222,NULL,NULL,NULL,1,'1',1,1,NULL),(223,NULL,NULL,NULL,1,'1',1,1,NULL),(224,NULL,NULL,NULL,1,'1',1,1,NULL),(225,NULL,NULL,NULL,1,'1',1,1,NULL),(226,NULL,NULL,NULL,1,'1',1,1,NULL),(227,NULL,NULL,NULL,1,'1',1,1,NULL),(228,NULL,NULL,NULL,1,'1',1,1,NULL),(229,NULL,NULL,NULL,1,'1',1,1,NULL),(230,NULL,NULL,NULL,1,'1',1,1,NULL),(231,NULL,NULL,NULL,1,'1',1,1,NULL),(232,NULL,NULL,NULL,1,'1',1,1,NULL),(233,NULL,NULL,NULL,1,'1',1,1,NULL),(234,NULL,NULL,NULL,1,'1',1,1,NULL),(235,NULL,NULL,NULL,1,'1',1,1,NULL),(236,NULL,NULL,NULL,1,'1',1,1,NULL),(237,NULL,NULL,NULL,1,'1',1,1,NULL),(238,NULL,NULL,NULL,1,'1',1,1,NULL),(239,NULL,NULL,NULL,1,'1',1,1,NULL),(240,NULL,NULL,NULL,1,'1',1,1,NULL),(241,NULL,NULL,NULL,1,'1',1,1,NULL),(242,NULL,NULL,NULL,1,'1',1,1,NULL),(243,NULL,NULL,NULL,1,'1',1,1,NULL),(244,NULL,NULL,NULL,1,'1',1,1,NULL),(245,NULL,NULL,NULL,1,'1',1,1,NULL),(246,NULL,NULL,NULL,1,'1',1,1,NULL),(247,NULL,NULL,NULL,1,'1',1,1,NULL),(248,NULL,NULL,NULL,1,'1',1,1,NULL),(249,NULL,NULL,NULL,1,'1',1,1,NULL),(250,NULL,NULL,NULL,1,'1',1,1,NULL),(251,NULL,NULL,NULL,1,'1',1,1,NULL),(252,NULL,NULL,NULL,1,'1',1,1,NULL),(253,NULL,NULL,NULL,1,'1',1,1,NULL),(254,NULL,NULL,NULL,1,'1',1,1,NULL),(255,NULL,NULL,NULL,1,'1',1,1,NULL),(256,NULL,NULL,NULL,1,'1',1,1,NULL),(257,NULL,NULL,NULL,1,'1',1,1,NULL),(258,NULL,NULL,NULL,1,'1',1,1,NULL),(259,NULL,NULL,NULL,1,'1',1,1,NULL),(260,NULL,NULL,NULL,1,'1',1,1,NULL),(261,NULL,NULL,NULL,1,'1',1,1,NULL),(262,NULL,NULL,NULL,1,'1',1,1,NULL),(263,NULL,NULL,NULL,1,'1',1,1,NULL),(264,NULL,NULL,NULL,1,'1',1,1,NULL),(265,NULL,NULL,NULL,1,'1',1,1,NULL),(266,NULL,NULL,NULL,1,'1',1,1,NULL),(267,NULL,NULL,NULL,1,'1',1,1,NULL),(268,NULL,NULL,NULL,1,'1',1,1,NULL),(269,NULL,NULL,NULL,1,'1',1,1,NULL),(270,NULL,NULL,NULL,1,'1',1,1,NULL),(271,NULL,NULL,NULL,1,'1',1,1,NULL),(272,'','',NULL,1,'1',1,1,NULL),(273,'','',NULL,1,'1',1,1,NULL),(274,'','',NULL,1,'1',1,1,NULL),(275,'','',NULL,1,'1',1,1,NULL),(276,'','',NULL,1,'1',1,1,NULL),(277,'','',NULL,1,'1',1,1,NULL),(278,'','',NULL,1,'1',1,1,NULL),(279,'','',NULL,1,'1',1,1,NULL),(280,'','',NULL,1,'1',1,1,NULL),(281,'','',NULL,1,'1',1,1,NULL),(282,'','',NULL,1,'1',1,1,NULL),(283,'','',NULL,1,'1',1,1,NULL),(284,'','',NULL,1,'1',1,1,NULL),(285,'','',NULL,1,'1',1,1,NULL),(286,'','',NULL,1,'1',1,1,NULL),(287,'','',NULL,1,'1',1,1,NULL),(288,'','',NULL,1,'1',1,1,NULL),(289,'','',NULL,1,'1',1,1,NULL),(290,'','',NULL,1,'1',1,1,NULL),(291,'','',NULL,1,'1',1,1,NULL),(292,'','',NULL,1,'1',1,1,NULL),(293,'','',NULL,1,'1',1,1,NULL),(294,'','',NULL,1,'1',1,1,NULL),(295,'','',NULL,1,'1',1,1,NULL),(296,'','',NULL,1,'1',1,1,NULL),(297,'','',NULL,1,'1',1,1,NULL),(298,'','',NULL,1,'1',1,1,NULL),(299,'','',NULL,1,'1',1,1,NULL),(300,'','',NULL,1,'1',1,1,NULL),(301,'','',NULL,1,'1',1,1,NULL); /*!40000 ALTER TABLE `produit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `type` -- DROP TABLE IF EXISTS `type`; CREATE TABLE `type` ( `idtype` bigint(20) unsigned NOT NULL auto_increment, `type` varchar(10) default NULL, `famille` varchar(10) default NULL, `categorie` varchar(10) default NULL, `note` text, PRIMARY KEY (`idtype`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; -- -- Dumping data for table `type` -- LOCK TABLES `type` WRITE; /*!40000 ALTER TABLE `type` DISABLE KEYS */; INSERT INTO `type` VALUES (1,'PR','Alcool','Pineau',NULL); /*!40000 ALTER TABLE `type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `unite` -- DROP TABLE IF EXISTS `unite`; CREATE TABLE `unite` ( `idunite` bigint(20) unsigned NOT NULL auto_increment, `unite` varchar(3) default NULL, `label` varchar(12) default NULL, `coef` double default NULL, `pub` tinyint(1) default NULL, PRIMARY KEY (`idunite`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; -- -- Dumping data for table `unite` -- LOCK TABLES `unite` WRITE; /*!40000 ALTER TABLE `unite` DISABLE KEYS */; INSERT INTO `unite` VALUES (1,'ml','Millilitre',0.001,1),(2,'cl','Centilitre',0.01,1),(3,'dl','d??cilitre',0.1,0),(4,'l','Litre',1,1),(5,'dal','D??calitre',10,0),(6,'hl','Hectolitre',100,1),(7,'mg','Milligramme',0.001,0),(8,'cg','centigramme',0.01,0),(9,'dg','D??cigramme',0.1,0),(10,'g','Gramme',1,1),(11,'q','Quintal',100,0),(12,'t','Tonne',1000,0); /*!40000 ALTER TABLE `unite` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2007-10-26 13:56:58 -------------- next part -------------- A non-text attachment was scrubbed... Name: Stock-0.0.1.tar.gz Type: application/x-tgz Size: 5381 bytes Desc: not available URL: From gambas.fr at ...626... Fri Oct 26 16:23:03 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Fri, 26 Oct 2007 16:23:03 +0200 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <1193405674.4165.20.camel@...1787...> References: <4721B01D.5070309@...1237...> <20071026142047.00b1fafd@...1779...> <1193405674.4165.20.camel@...1787...> Message-ID: <200710261623.03589.gambas.fr@...626...> just install qtconfig Le Friday 26 October 2007 15:34:34 Tomas Eroles i Forner, vous avez ?crit?: > Hi all, hi Ant?nio > If you want to try it, perfect, but I use SuSE 10.3 with a Nvidia 400 > card. It works perfectly, not only Gambas, but also 3D effects, KDE and > Gnome. > > hope help > bye > > El vie, 26-10-2007 a las 14:20 +0100, Ant?nio Pereira escribi?: > > Hi, > > > > I have the same problem on my laptop (Asus A7S with NVIDIA 8400M G) all > > programs looks nice except Gambas 1.9.90. > > At the moment I use Gutsy Gibbon 7.10 but I didn't try yet on Suse 10.3 > > to compare the look. > > If you have a way to resolve this problem many people thank you :) > > > > Regards, > > > > Ant?nio Pereira > > > > Em Fri, 26 Oct 2007 11:46:55 +0200 Ep?leg escreveu: > > > En/na Leonardo Miliani ha escrit: > > > > Some days ago I installed Ubuntu 7.10 on my laptop and tried to > > > > compile Gambas on it. > > > > When I ran Gambas IDE I got an horrible window with a very bad > > > > look... So I tried to open a project of mine and I got Gambas that > > > > seems to use KDE2!!! Windows decorations are terrific and all the > > > > applications have this look&feel. > > > > I tried to modify the look of the KDE applications with kcontrol > > > > (the panel control of KDE) but I didn't solve nothing.... > > > > Strange, because on previous Ubuntu 7.04 all things worked fine with > > > > this method. > > > > Any suggestions? Does anybody use Ubuntu 7.10 without problems? > > > > > > I got the exactly same problem. > > > > > > One comment: only the gambas2 ide and the gambas2 kde programs has > > > this visual/aspect problem. Others kde programs like kaffeine or kate > > > looks good, as in ubuntu 7.04. > > > > > > One question: Do you have an ATI graphic card? Me yes. > > > Users with an ATI card has this problem and others without an ATI one > > > has NOT it. > > > > > > regards. > > > Ep?leg. > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Fri Oct 26 18:43:14 2007 From: gambas at ...1... (Benoit Minisini) Date: Fri, 26 Oct 2007 18:43:14 +0200 Subject: [Gambas-user] Problem with datacombo In-Reply-To: <200710261601.39456.gambas.fr@...626...> References: <6324a42a0710260357n4d9b27afy95d09d97d283eb5f@...627...> <200710261333.12063.gambas@...1...> <200710261601.39456.gambas.fr@...626...> Message-ID: <200710261843.14214.gambas@...1...> On vendredi 26 octobre 2007, Fabien Bodard wrote: > > This is the project and the db dump... Try the latest revision, it should work. > > Another thing i've seen in the datacombo src, The datacombo can't use > string reference to communicate with a table... > > product.familly = "alcool" i prefer use string index as integer one as it > allow to securize the database... (one entry lost... the database can be > read by eyes and corrected more quikly) > > Fabien I don't see what you are talking about. Try in french on my private e-mail! -- Benoit Minisini From epileg at ...626... Sat Oct 27 07:28:28 2007 From: epileg at ...626... (=?ISO-8859-1?Q?Ep=EDleg?=) Date: Sat, 27 Oct 2007 07:28:28 +0200 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <20071026142047.00b1fafd@...1779...> References: <4721B01D.5070309@...1237...> <4721B78F.8020107@...626...> <20071026142047.00b1fafd@...1779...> Message-ID: <4722CC7C.8020608@...626...> En/na Ant?nio Pereira ha escrit: > Hi, > > I have the same problem on my laptop (Asus A7S with NVIDIA 8400M G) all > programs looks nice except Gambas 1.9.90. > At the moment I use Gutsy Gibbon 7.10 but I didn't try yet on Suse 10.3 > to compare the look. > If you have a way to resolve this problem many people thank you :) > > Regards, > > Ant?nio Pereira Well, this bug is already in launchpad and it's in the way to be solved. https://bugs.launchpad.net/ubuntu/gutsy/+source/qt-x11-free/+bug/145709 regards, Ep?leg. > > > Em Fri, 26 Oct 2007 11:46:55 +0200 Ep?leg escreveu: > >> En/na Leonardo Miliani ha escrit: >>> Some days ago I installed Ubuntu 7.10 on my laptop and tried to >>> compile Gambas on it. >>> When I ran Gambas IDE I got an horrible window with a very bad >>> look... So I tried to open a project of mine and I got Gambas that >>> seems to use KDE2!!! Windows decorations are terrific and all the >>> applications have this look&feel. >>> I tried to modify the look of the KDE applications with kcontrol >>> (the panel control of KDE) but I didn't solve nothing.... >>> Strange, because on previous Ubuntu 7.04 all things worked fine with >>> this method. >>> Any suggestions? Does anybody use Ubuntu 7.10 without problems? >>> >> I got the exactly same problem. >> >> One comment: only the gambas2 ide and the gambas2 kde programs has >> this visual/aspect problem. Others kde programs like kaffeine or kate >> looks good, as in ubuntu 7.04. >> >> One question: Do you have an ATI graphic card? Me yes. >> Users with an ATI card has this problem and others without an ATI one >> has NOT it. >> >> regards. >> Ep?leg. >> > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > 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: signature.asc Type: application/pgp-signature Size: 189 bytes Desc: OpenPGP digital signature URL: From leonardo at ...1237... Sat Oct 27 12:01:04 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Sat, 27 Oct 2007 12:01:04 +0200 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <4721B01D.5070309@...1237...> References: <4721B01D.5070309@...1237...> Message-ID: <47230C60.5000909@...1237...> Leonardo Miliani ha scritto: > Some days ago I installed Ubuntu 7.10 on my laptop and tried to compile > Gambas on it. > When I ran Gambas IDE I got an horrible window with a very bad look... > So I tried to open a project of mine and I got Gambas that seems to use > KDE2!!! Windows decorations are terrific and all the applications have > this look&feel. > I tried to modify the look of the KDE applications with kcontrol (the > panel control of KDE) but I didn't solve nothing.... > Strange, because on previous Ubuntu 7.04 all things worked fine with > this method. > Any suggestions? Does anybody use Ubuntu 7.10 without problems? > I've found the solution by myself! It's easy. Let me explain.... In Ubuntu 7.04 you had just to install the kcontrol package with Symaptic or apt-get (and all its dependencies), open it via console, set the preferencies, close it and launch any KDE/Qt application that you would. But in Ubuntu 7.10 (I don't know if it depends from the fact that it has KDE 3.5.8 instead of 3.5.7 that is present in Ubuntu 7.04 or maybe for other factors) this is not enough. You have to install the kde-systemsettings too (and all the dependencies, of course). Then after the installation, open a terminal and launch kcontrol first (set here all your preferencies) and then also launch systemsettings and set the same preferencies another time! Only doing these 2 steps your KDE/Qt applications will look as you decided. If you try only with kcontrol or systemsetting, you won't have the preferencies saved in your system. I hope that this will be useful for other Ubuntu users. ;-) -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From tomas.eroles at ...277... Sat Oct 27 12:22:49 2007 From: tomas.eroles at ...277... (Tomas Eroles i Forner) Date: Sat, 27 Oct 2007 12:22:49 +0200 Subject: [Gambas-user] Ideas for developing Message-ID: <1193480569.4267.8.camel@...1787...> Hi all! As an idea, I believe it could be useful to add a small part in the IDE as a little help for propierties. I explain myself: sometimes is not easy to remember the properties or the real meaning of a control, and have to do some tests. For example, Background and Foreground properties are easy, but, what does it means the Tag property in a HSplit control? Then, my proposition is to put ballons or a small text on the bottom of list properties, for example, where to explain the meaning of a property. Background: Sets the color for the background of the control Expand: Sets if control expands its size when form is maximized Something like that. Bye From gambas at ...1... Sat Oct 27 12:41:06 2007 From: gambas at ...1... (Benoit Minisini) Date: Sat, 27 Oct 2007 12:41:06 +0200 Subject: [Gambas-user] Ideas for developing In-Reply-To: <1193480569.4267.8.camel@...1787...> References: <1193480569.4267.8.camel@...1787...> Message-ID: <200710271241.06697.gambas@...1...> On samedi 27 octobre 2007, Tomas Eroles i Forner wrote: > Hi all! > As an idea, I believe it could be useful to add a small part in the IDE > as a little help for propierties. > I explain myself: sometimes is not easy to remember the properties or > the real meaning of a control, and have to do some tests. For example, > Background and Foreground properties are easy, but, what does it means > the Tag property in a HSplit control? > Then, my proposition is to put ballons or a small text on the bottom of > list properties, for example, where to explain the meaning of a > property. > Background: Sets the color for the background of the control > Expand: Sets if control expands its size when form is maximized > > Something like that. > > Bye > This is a good idea, but who will write that? This is an huge job! And these help text must be translatable in any language. Concretely, to be easily translatable, they should be put directly inside the IDE, in a module, with translatable strings. This way: ' Module MPropertyHelp PUBLIC Help AS New Collection PUBLIC SUB _init() Help["Control.Background"] = ("Background color of the control") Help["Control.Foreground"] = ("Foreground color of the control") Help["Control.Tag"] = ("Put whatever you want in this property") Help["Control.Expand"] = ("Tells if the control should expand as much as possible inside its container, provided that the container Arrangement property is set.") ... Help["HSplit.Layout"] = ("List of each HSplit pane dimensions") ... END Many properties are inherited, so, for example, you just have to write Help["Control.Background"] for the Background property of all controls. Write this module, and I will make the balloon tooltips appears. :-) Regards, -- Benoit Minisini From henrique.ulbrich at ...626... Sat Oct 27 16:43:39 2007 From: henrique.ulbrich at ...626... (Henrique Cesar Ulbrich) Date: Sat, 27 Oct 2007 11:43:39 -0300 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <4721B01D.5070309@...1237...> References: <4721B01D.5070309@...1237...> Message-ID: <200710271143.39822.henrique.ulbrich@...626...> Historiadores acreditam que, em Sex 26 Out 2007, Leonardo Miliani disse: > Any suggestions? Does anybody use Ubuntu 7.10 without problems? You don't have to compile. Gambas 2 is part of the distribution. Just do an "apt-get install gambas2" -- Henrique Cesar Ulbrich henrique.ulbrich at ...626... 97 - Chuck Norris s? come duas coisas no caf? da manh?: Steven Segal e Vin Diesel. From tomas.eroles at ...277... Sat Oct 27 18:24:32 2007 From: tomas.eroles at ...277... (Tomas Eroles i Forner) Date: Sat, 27 Oct 2007 18:24:32 +0200 Subject: [Gambas-user] Ideas for developing In-Reply-To: <200710271241.06697.gambas@...1...> References: <1193480569.4267.8.camel@...1787...> <200710271241.06697.gambas@...1...> Message-ID: <1193502272.9940.11.camel@...1787...> El s?b, 27-10-2007 a las 12:41 +0200, Benoit Minisini escribi?: > On samedi 27 octobre 2007, Tomas Eroles i Forner wrote: > > Hi all! > > As an idea, I believe it could be useful to add a small part in the IDE > > as a little help for propierties. > > I explain myself: sometimes is not easy to remember the properties or > > the real meaning of a control, and have to do some tests. For example, > > Background and Foreground properties are easy, but, what does it means > > the Tag property in a HSplit control? > > Then, my proposition is to put ballons or a small text on the bottom of > > list properties, for example, where to explain the meaning of a > > property. > > Background: Sets the color for the background of the control > > Expand: Sets if control expands its size when form is maximized > > > > Something like that. > > > > Bye > > > > This is a good idea, but who will write that? This is an huge job! > > And these help text must be translatable in any language. > > Concretely, to be easily translatable, they should be put directly inside the > IDE, in a module, with translatable strings. This way: > > ' Module MPropertyHelp > > PUBLIC Help AS New Collection > > PUBLIC SUB _init() > > Help["Control.Background"] = ("Background color of the control") > Help["Control.Foreground"] = ("Foreground color of the control") > Help["Control.Tag"] = ("Put whatever you want in this property") > Help["Control.Expand"] = ("Tells if the control should expand as much as > possible inside its container, provided that the container Arrangement > property is set.") > ... > Help["HSplit.Layout"] = ("List of each HSplit pane dimensions") > ... > > END > > Many properties are inherited, so, for example, you just have to write > Help["Control.Background"] for the Background property of all controls. > > Write this module, and I will make the balloon tooltips appears. :-) > > Regards, > Hi again Is it possible to define a string property for each property of each control (HelpText) and put this text in this property? I think like this you don't need to create a new collection. Perhaps like this you'll have to define a small place in the screen, like a read only text which shows that text for each property. bye From gambas at ...1... Sun Oct 28 00:46:17 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 28 Oct 2007 00:46:17 +0200 Subject: [Gambas-user] Ideas for developing In-Reply-To: <1193502272.9940.11.camel@...1787...> References: <1193480569.4267.8.camel@...1787...> <200710271241.06697.gambas@...1...> <1193502272.9940.11.camel@...1787...> Message-ID: <200710280046.17716.gambas@...1...> On samedi 27 octobre 2007, Tomas Eroles i Forner wrote: > > Hi again > Is it possible to define a string property for each property of each > control (HelpText) and put this text in this property? > > I think like this you don't need to create a new collection. > > Perhaps like this you'll have to define a small place in the screen, > like a read only text which shows that text for each property. > > bye But how will you translate the help string? -- Benoit Minisini From rohnny at ...1248... Sun Oct 28 09:03:35 2007 From: rohnny at ...1248... (R. Stormo) Date: Sun, 28 Oct 2007 01:03:35 -0700 (PDT) Subject: [Gambas-user] Database manager In-Reply-To: <13371092.post@...1379...> References: <13371092.post@...1379...> Message-ID: <13451085.post@...1379...> R. Stormo wrote: > > Can't seem to open any windows in he database manager anymore, svn version > 771. > It do ask for password, Then I select sqlite3 as new server, all my tables > and users are showing. But when I click on one table nothing happens. Is > this a known thing or it is just me.? > > > Regards Rohnny > > My Gambas Community http://gambasforum.tk > Tried the latest svn (789) on another computer today. No luck on this computer either to edit table. Manage to create sqlite3 server, create database and table but when I tried to edit to add fields nothing happens. This was also on Ubuntu gutsy gibbon if that helps. My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Database-manager-tf4679582.html#a13451085 Sent from the gambas-user mailing list archive at Nabble.com. From jredrejo at ...626... Sun Oct 28 10:09:26 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Sun, 28 Oct 2007 10:09:26 +0100 Subject: [Gambas-user] Problems with some events In-Reply-To: <8eb28a500710260528r3cbee6a4h8a5fb743d16b515e@...627...> References: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> <200710261257.00917.gambas@...1...> <8eb28a500710260528r3cbee6a4h8a5fb743d16b515e@...627...> Message-ID: <8eb28a500710280209t70e29fbeuc63f24b2e968fb8a@...627...> Beno?t, can you reproduce the bug? I have also checked double-click event doesn't raise using gtk or qt. Even if I tested in different machines, they all used Debian in a gnome Desktop, so I would like to know if you can reproduce it to be sure it's not a Debian or gnome related bug. Regards. 2007/10/26, Jos? Luis Redrejo : > > > > 2007/10/26, Benoit Minisini : > > > > On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > > > Tested with versions 1.9.50 & 1.9.90 in Debian, with object FileView > > using > > > form component: > > > - with gb.gtk component, click event doesn't raise > > > - with gb.qt component, drop event doesn't raise > > > > > > Regards. > > > Jos? L. > > > > Please can you provide me more details, and especially a little project > > example that shows the problem? > > > > Thanks in advance. > > > > Sure, but it's quite simple, started a new project with only one form and > a FileView object, and try to catch these events with breakpoints. Switch > from qt to gtk components to check which are working. > Attached is the example I used. > > Regards. > > From rgx at ...17... Sun Oct 28 11:21:21 2007 From: rgx at ...17... (RalfGesellensetter) Date: Sun, 28 Oct 2007 11:21:21 +0100 Subject: [Gambas-user] Code Sharing Platform? Message-ID: <200710281121.21488.rgx@...17...> Dear list, Gambas is really very powerful - and I like the option to create source archives in order to share them. Now I wonder if there is any official platform for code (snippet) sharing? Googling a bit, I just encountered http://www.gambas-club.de/ (German) But I was rather addressing an international platform. Thank you Regards Ralf From rohnny at ...1248... Sun Oct 28 11:48:46 2007 From: rohnny at ...1248... (R. Stormo) Date: Sun, 28 Oct 2007 03:48:46 -0700 (PDT) Subject: [Gambas-user] Code Sharing Platform? In-Reply-To: <200710281121.21488.rgx@...17...> References: <200710281121.21488.rgx@...17...> Message-ID: <13452116.post@...1379...> RalfGesellensetter wrote: > > Dear list, > > Gambas is really very powerful - and I like the option to create source > archives in order to share them. > > Now I wonder if there is any official platform for code (snippet) > sharing? Googling a bit, I just encountered > > http://www.gambas-club.de/ (German) > > But I was rather addressing an international platform. > > Thank you > Regards > Ralf > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Hi. I have a code snippets area at http://gambasforum.tk, hopefully it can grow and give meaningful help to other. Regards Rohnny My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Code-Sharing-Platform--tf4706402.html#a13452116 Sent from the gambas-user mailing list archive at Nabble.com. From rospolosco at ...152... Sun Oct 28 11:55:27 2007 From: rospolosco at ...152... (Stefano Palmeri) Date: Sun, 28 Oct 2007 11:55:27 +0100 Subject: [Gambas-user] Code Sharing Platform? In-Reply-To: <200710281121.21488.rgx@...17...> References: <200710281121.21488.rgx@...17...> Message-ID: <200710281155.27580.rospolosco@...152...> Alle 11:21, domenica 28 ottobre 2007, RalfGesellensetter ha scritto: > Dear list, > > Gambas is really very powerful - and I like the option to create source > archives in order to share them. > > Now I wonder if there is any official platform for code (snippet) > sharing? Googling a bit, I just encountered > > http://www.gambas-club.de/ (German) > > But I was rather addressing an international platform. > > Thank you > Regards > Ralf > http://www.gambasforge.net/ is maintained by Fabien Bodard. Stefano > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas.fr at ...626... Sun Oct 28 13:20:26 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Sun, 28 Oct 2007 14:20:26 +0200 Subject: [Gambas-user] Code Sharing Platform? In-Reply-To: <200710281155.27580.rospolosco@...152...> References: <200710281121.21488.rgx@...17...> <200710281155.27580.rospolosco@...152...> Message-ID: <200710281320.27402.gambas.fr@...626...> And always maintained as i've not found any system that please me... I'm currently working on devellopping it in gambas and if i can gbs2 (script style) so any body can maintain it ! Regards, Fabien PS if there is many time i've not done anything it's just the fact i was waiting on gb2 official release for my server ... From gareth at ...1689... Sun Oct 28 14:42:06 2007 From: gareth at ...1689... (Gareth Bult) Date: Sun, 28 Oct 2007 13:42:06 +0000 (GMT) Subject: [Gambas-user] Code Sharing Platform? In-Reply-To: <200710281320.27402.gambas.fr@...626...> Message-ID: <3536250.32791193578926385.JavaMail.root@...1708...> You could always try; http://gambasrad.org/software .. again, anyone can add and maintain their own project in this area. .. it also allows for file storage, downloads, versioning, documentation, faq's and trackers .. ----- Original Message ----- From: "Fabien Bodard" To: "mailing list for gambas users" Sent: Sunday, October 28, 2007 12:20:26 PM (GMT) Europe/London Subject: Re: [Gambas-user] Code Sharing Platform? And always maintained as i've not found any system that please me... I'm currently working on devellopping it in gambas and if i can gbs2 (script style) so any body can maintain it ! Regards, Fabien PS if there is many time i've not done anything it's just the fact i was waiting on gb2 official release for my server ... ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas.fr at ...626... Sun Oct 28 14:55:31 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Sun, 28 Oct 2007 15:55:31 +0200 Subject: [Gambas-user] Code Sharing Platform? In-Reply-To: <3536250.32791193578926385.JavaMail.root@...1708...> References: <3536250.32791193578926385.JavaMail.root@...1708...> Message-ID: <200710281455.32038.gambas.fr@...626...> Le Sunday 28 October 2007 14:42:06 Gareth Bult, vous avez ?crit?: > You could always try; > > http://gambasrad.org/software > > .. again, anyone can add and maintain their own project in this area. > .. it also allows for file storage, downloads, versioning, documentation, > faq's and trackers .. yes but it's not good for simple code demo or tutorial... simple thing ! its good for official project and more... > > ----- Original Message ----- > From: "Fabien Bodard" > To: "mailing list for gambas users" > Sent: Sunday, October 28, 2007 12:20:26 PM (GMT) Europe/London > Subject: Re: [Gambas-user] Code Sharing Platform? > > And always maintained as i've not found any system that please me... > > I'm currently working on devellopping it in gambas and if i can gbs2 > (script style) so any body can maintain it ! > > Regards, > Fabien > > PS if there is many time i've not done anything it's just the fact i was > waiting on gb2 official release for my server ... > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gareth at ...1689... Sun Oct 28 15:12:08 2007 From: gareth at ...1689... (Gareth Bult) Date: Sun, 28 Oct 2007 14:12:08 +0000 (GMT) Subject: [Gambas-user] Code Sharing Platform? In-Reply-To: <200710281455.32038.gambas.fr@...626...> Message-ID: <32153588.32821193580728692.JavaMail.root@...1708...> Urm, why not ? Have you tried it ? -- Managing Director, Encryptec Limited Tel: 0845 25 77033, Mob: 07853 305393 Email: gareth at ...1689... Statements made are at all times subject to Encryptec's Terms and Conditions of Business, which are available upon request. ----- Original Message ----- From: "Fabien Bodard" To: "mailing list for gambas users" Sent: Sunday, October 28, 2007 1:55:31 PM (GMT) Europe/London Subject: Re: [Gambas-user] Code Sharing Platform? Le Sunday 28 October 2007 14:42:06 Gareth Bult, vous avez ?crit : > You could always try; > > http://gambasrad.org/software > > .. again, anyone can add and maintain their own project in this area. > .. it also allows for file storage, downloads, versioning, documentation, > faq's and trackers .. yes but it's not good for simple code demo or tutorial... simple thing ! its good for official project and more... > > ----- Original Message ----- > From: "Fabien Bodard" > To: "mailing list for gambas users" > Sent: Sunday, October 28, 2007 12:20:26 PM (GMT) Europe/London > Subject: Re: [Gambas-user] Code Sharing Platform? > > And always maintained as i've not found any system that please me... > > I'm currently working on devellopping it in gambas and if i can gbs2 > (script style) so any body can maintain it ! > > Regards, > Fabien > > PS if there is many time i've not done anything it's just the fact i was > waiting on gb2 official release for my server ... > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Sun Oct 28 16:05:35 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 28 Oct 2007 16:05:35 +0100 Subject: [Gambas-user] Problems with some events In-Reply-To: <8eb28a500710260528r3cbee6a4h8a5fb743d16b515e@...627...> References: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> <200710261257.00917.gambas@...1...> <8eb28a500710260528r3cbee6a4h8a5fb743d16b515e@...627...> Message-ID: <200710281605.36004.gambas@...1...> On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > 2007/10/26, Benoit Minisini : > > On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > > > Tested with versions 1.9.50 & 1.9.90 in Debian, with object FileView > > > > using > > > > > form component: > > > - with gb.gtk component, click event doesn't raise > > > - with gb.qt component, drop event doesn't raise > > > > > > Regards. > > > Jos? L. > > > > Please can you provide me more details, and especially a little project > > example that shows the problem? > > > > Thanks in advance. > > Sure, but it's quite simple, started a new project with only one form and a > FileView object, and try to catch these events with breakpoints. Switch > from qt to gtk components to check which are working. > Attached is the example I used. > > Regards. Apparently, GTK+ has no equivalent for Click event in IconView. I found a workaround, and you have the fix in the last revision. As for the Drop event, it should not raise in gb.gtk actually. For the same reason as Double click event should not raise too: FileView is not a real control, it is a container that embeds other controls. The DblClick, Drop, and other control events of FileView are for the container, not for the inner control. So you should not able to get them, as the inner controls recover the container completely. Regards, -- Benoit Minisini From gambas at ...1... Sun Oct 28 16:08:24 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 28 Oct 2007 16:08:24 +0100 Subject: [Gambas-user] Problems with some events In-Reply-To: <200710281605.36004.gambas@...1...> References: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> <8eb28a500710260528r3cbee6a4h8a5fb743d16b515e@...627...> <200710281605.36004.gambas@...1...> Message-ID: <200710281608.24681.gambas@...1...> On dimanche 28 octobre 2007, Benoit Minisini wrote: > On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > > 2007/10/26, Benoit Minisini : > > > On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > > > > Tested with versions 1.9.50 & 1.9.90 in Debian, with object FileView > > > > > > using > > > > > > > form component: > > > > - with gb.gtk component, click event doesn't raise > > > > - with gb.qt component, drop event doesn't raise > > > > > > > > Regards. > > > > Jos? L. > > > > > > Please can you provide me more details, and especially a little project > > > example that shows the problem? > > > > > > Thanks in advance. > > > > Sure, but it's quite simple, started a new project with only one form and > > a FileView object, and try to catch these events with breakpoints. Switch > > from qt to gtk components to check which are working. > > Attached is the example I used. > > > > Regards. > > Apparently, GTK+ has no equivalent for Click event in IconView. I found a > workaround, and you have the fix in the last revision. > > As for the Drop event, it should not raise in gb.gtk actually. For the same > reason as Double click event should not raise too: FileView is not a real > control, it is a container that embeds other controls. > > The DblClick, Drop, and other control events of FileView are for the > container, not for the inner control. So you should not able to get them, > as the inner controls recover the container completely. > > Regards, Moreover, there are other bugs in GTK+ IconView (like icon text being displayed right aligned for apparently no reason). It seems that this GTK+ widget is not completely terminated. Regards, -- Benoit Minisini From gambas.fr at ...626... Sun Oct 28 19:04:06 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Sun, 28 Oct 2007 20:04:06 +0200 Subject: [Gambas-user] Code Sharing Platform? In-Reply-To: <32153588.32821193580728692.JavaMail.root@...1708...> References: <32153588.32821193580728692.JavaMail.root@...1708...> Message-ID: <200710281904.07572.gambas.fr@...626...> Le Sunday 28 October 2007 15:12:08 Gareth Bult, vous avez ?crit?: > Urm, why not ? > > Have you tried it ? not this one but many others.... like this one ... they look like sourceforge... and purpose a not eyes candy project describe page style Too professionnal... maybe :) And we can't chage that as i've seen. In other part i really wan't to try to do that in gambas ... for the fun :) From epileg at ...626... Sun Oct 28 20:54:23 2007 From: epileg at ...626... (=?ISO-8859-1?Q?Ep=EDleg?=) Date: Sun, 28 Oct 2007 20:54:23 +0100 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <20071026142047.00b1fafd@...1779...> References: <4721B01D.5070309@...1237...> <4721B78F.8020107@...626...> <20071026142047.00b1fafd@...1779...> Message-ID: <4724E8EF.5040003@...626...> En/na Ant?nio Pereira ha escrit: > Hi, > > I have the same problem on my laptop (Asus A7S with NVIDIA 8400M G) all > programs looks nice except Gambas 1.9.90. > At the moment I use Gutsy Gibbon 7.10 but I didn't try yet on Suse 10.3 > to compare the look. > If you have a way to resolve this problem many people thank you :) > > Regards, > > Ant?nio Pereira Hello Ant?nio, To solve this problem. -Download these tree files in a folder: http://archive.ubuntu.com/ubuntu/pool/main/q/qt-x11-free/qt-x11-free_3.3.8really3.3.7-0ubuntu11.1.diff.gz http://archive.ubuntu.com/ubuntu/pool/main/q/qt-x11-free/qt-x11-free_3.3.8really3.3.7-0ubuntu11.1.dsc http://archive.ubuntu.com/ubuntu/pool/main/q/qt-x11-free/qt-x11-free_3.3.8really3.3.7.orig.tar.gz -Install (if not) 'dpkg-dev' -get into the folder and type: $ dpkg-source -x qt-x11-free_3.3.8really3.3.7-0ubuntu11.1.dsc $ cd qt-x11-free-3.3.8really3.3.7/ $ sudo dpkg-buildpackage -After compile, You'll get some .deb files. Just install the 'libqt3-mt_3.3.8really3.3.7-0ubuntu11.1_i386.deb' one. This worked on my system. Give me some feedback, thanks. Best regards, Ep?leg. From fredrik_hansson at ...1788... Mon Oct 29 10:20:51 2007 From: fredrik_hansson at ...1788... (Fredrik Hansson) Date: Mon, 29 Oct 2007 10:20:51 +0100 Subject: [Gambas-user] file extension and runtime Message-ID: <1193649651.7672.8.camel@...1789...> Hi, 1st: The only way I can get Gambas apps running is giving then the .exe extension, for example MyApp.exe - if I leave the default .gambas, I get a message when I doubleclick the file: "Project doesn't exist" and then Gambas programming environment starts! 2st: And I think this has something to do with the 1st - I cannot find Gambas runtime. Is it the file gbr2? I try to make my Ubuntu 7.10 open MyApp with /usr/locale/bin/gbr2, but nothing at all happens. regards, Fredrik (Gambas 1.9.90 on Ubuntu 7.10 i386 GNOME on AMD64) From fredrik_hansson at ...1788... Mon Oct 29 10:38:36 2007 From: fredrik_hansson at ...1788... (Fredrik Hansson) Date: Mon, 29 Oct 2007 10:38:36 +0100 Subject: [Gambas-user] SOLVED? extension and runtime Message-ID: <1193650716.8501.4.camel@...1789...> Ok, when I use .gambas it didn't work. But if I give the app another extension (not .exe), for example MyApp.skola I can make it run with gbr2, which I guess is the runtime (in /usr/local/bin). Seems as Linux (Ubuntu) wants an extension to connect to the runtime, because it doesn't work with no extension at all. /Fredrik From leonardo at ...1237... Mon Oct 29 11:11:46 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Mon, 29 Oct 2007 11:11:46 +0100 Subject: [Gambas-user] Ubunt 7.10 and Gambas appearence In-Reply-To: <200710271143.39822.henrique.ulbrich@...626...> References: <4721B01D.5070309@...1237...> <200710271143.39822.henrique.ulbrich@...626...> Message-ID: <4725B1E2.90900@...1237...> Henrique Cesar Ulbrich ha scritto: > Historiadores acreditam que, > em Sex 26 Out 2007, Leonardo Miliani disse: >> Any suggestions? Does anybody use Ubuntu 7.10 without problems? > > You don't have to compile. > > Gambas 2 is part of the distribution. > > Just do an "apt-get install gambas2" > Gambas2 in the official repos is at the version 1.9.49. Now there is the 1.9.90 out there ;-) -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From leonardo at ...1237... Mon Oct 29 11:15:23 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Mon, 29 Oct 2007 11:15:23 +0100 Subject: [Gambas-user] SOLVED? extension and runtime In-Reply-To: <1193650716.8501.4.camel@...1789...> References: <1193650716.8501.4.camel@...1789...> Message-ID: <4725B2BB.2050403@...1237...> Fredrik Hansson ha scritto: > Ok, when I use .gambas it didn't work. > But if I give the app another extension (not .exe), for example > MyApp.skola I can make it run with gbr2, which I guess is the runtime > (in /usr/local/bin). Seems as Linux (Ubuntu) wants an extension to > connect to the runtime, because it doesn't work with no extension at > all. > > /Fredrik > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > I have a similar problem with Ubuntu 7.10. I cannot launch a Gambas project with a default application even if I set to open it with gbg2... I created a project with .gambas extension and I right clicked on it choosing Properties. Then I tried to set gbr2 as default application to open .gambas file but when I click on the file I always get the error that the system doesn't know how to manage such files... -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From fredrik_hansson at ...1788... Mon Oct 29 15:14:13 2007 From: fredrik_hansson at ...1788... (Fredrik Hansson) Date: Mon, 29 Oct 2007 15:14:13 +0100 Subject: [Gambas-user] How do I manipulate binary files? Message-ID: <1193667253.9339.10.camel@...1789...> Hi, I would like to write chars (bytes) directly into an OpenOffice file. The file is a document, a template, and at specific places I want to put in the right letters. In that way my application can fill in a form made in OpenOffice automatically. An old trick that used to work in Windows... But here's the problem: I read byte by byte from the document file. I look for specific words there (by combining the last 4 bytes for example). I have put field markers in the document, like H#01, but I can't find them when I'm reading the bytes. Shouldn't 'H' have the code 72 and '#' the code 35 for example? Or is that old ASCII not used in Linux/OpenOffice? Or am I using the wrong method when I try to read the file? DIM b AS Byte DIM fil AS file fil = OPEN "document.odt" FOR READ WHILE NOT Eof(fil) READ #fil, b IF b = 72 THEN 'look for the letter H (etc) Anyone have a clue? /Fredrik From gambas at ...1... Mon Oct 29 15:21:44 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 29 Oct 2007 15:21:44 +0100 Subject: [Gambas-user] How do I manipulate binary files? In-Reply-To: <1193667253.9339.10.camel@...1789...> References: <1193667253.9339.10.camel@...1789...> Message-ID: <200710291521.44698.gambas@...1...> On lundi 29 octobre 2007, Fredrik Hansson wrote: > Hi, > > I would like to write chars (bytes) directly into an OpenOffice file. > The file is a document, a template, and at specific places I want to put > in the right letters. In that way my application can fill in a form made > in OpenOffice automatically. An old trick that used to work in > Windows... > > But here's the problem: I read byte by byte from the document file. > I look for specific words there (by combining the last 4 bytes for > example). > > I have put field markers in the document, like H#01, but I can't find > them when I'm reading the bytes. Shouldn't 'H' have the code 72 and '#' > the code 35 for example? Or is that old ASCII not used in > Linux/OpenOffice? Or am I using the wrong method when I try to read the > file? > > DIM b AS Byte > DIM fil AS file > fil = OPEN "document.odt" FOR READ > WHILE NOT Eof(fil) > READ #fil, b > IF b = 72 THEN 'look for the letter H > (etc) > > Anyone have a clue? > /Fredrik > > OpenOffice files are actually zip archives of UTF-8 XML text files (and binary files for images or other binary formats). So to do what you want, you should better unzip the *.odt file, and just replace your markups by the real values in the contents.xml file. Be careful with OpenOffice XML: strings are encoded in UTF-8, and some characters uses XML entities, like in HTML: << "e; >> instead of << ' >> for example. Moreover, newlines must be inserted with a special OpenOffice markup. I let you discover that by yourself :-) Once done, you just have to zip back all unzipped files, and you get a perfectly valid OpenOffice document. I use that for my job in a software written in Gambas that, among many other things, can generate OpenOffice documents and spreadsheets, that can be translated to PDF, Word and Excel too. Logically, after having done that, you will ask why people still use Word and Excel in a professional environment :-) Regards, -- Benoit Minisini From fredrik_hansson at ...1788... Mon Oct 29 16:12:53 2007 From: fredrik_hansson at ...1788... (Fredrik Hansson) Date: Mon, 29 Oct 2007 16:12:53 +0100 Subject: [Gambas-user] How do I write directly in the forum? Message-ID: <1193670773.11277.1.camel@...1789...> I wanted to edit directly in the forum - among other things say thanks for the help :) - but I get this message after having logged in: In order to access this section you must be logged in and have the proper credentials ??? /Fredrik From gareth at ...1689... Mon Oct 29 16:37:24 2007 From: gareth at ...1689... (Gareth Bult) Date: Mon, 29 Oct 2007 15:37:24 +0000 (GMT) Subject: [Gambas-user] Bug #35 on Issue tracker Message-ID: <13495563.34681193672244202.JavaMail.root@...1708...> http://gambasrad.org/bugtrak/gambas-bug-tracker/35 Don't know if this effect anyone else, but it looks like there may be a problem with user-written gambas components in the current SVN (?) -- Managing Director, Encryptec Limited Tel: 0845 25 77033, Mob: 07853 305393 Email: gareth at ...1689... Statements made are at all times subject to Encryptec's Terms and Conditions of Business, which are available upon request. From sourceforge-raindog2 at ...94... Mon Oct 29 16:46:56 2007 From: sourceforge-raindog2 at ...94... (Rob) Date: Mon, 29 Oct 2007 11:46:56 -0400 Subject: [Gambas-user] How do I manipulate binary files? In-Reply-To: <1193667253.9339.10.camel@...1789...> References: <1193667253.9339.10.camel@...1789...> Message-ID: <200710291146.56072.sourceforge-raindog2@...94...> On Monday 29 October 2007 10:14, Fredrik Hansson wrote: > I would like to write chars (bytes) directly into an OpenOffice > file. The file is a document, a template, and at specific places I OpenOffice files are actually ZIP files (more specifically, JAR files, meaning a ZIP file with a particular directory layout and a manifest) containing a bunch of XML files. I'm actually about a third of the way to a working gb.zip component (using libzip) which I'm writing just for this purpose. But I imagine the XML stuff will be the hard part. In the meantime, temporary directories are your best option. Rob From steven at ...1652... Mon Oct 29 17:12:15 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Mon, 29 Oct 2007 17:12:15 +0100 Subject: [Gambas-user] How do I manipulate binary files? In-Reply-To: <1193667253.9339.10.camel@...1789...> References: <1193667253.9339.10.camel@...1789...> Message-ID: <200710291712.15875.steven@...1652...> Maybe this gives you some ideas. For it works just fine to fill in forms under OO from gambas. Regards, Steven Le lundi 29 octobre 2007 15:14, Fredrik Hansson a ?crit?: > Hi, > > I would like to write chars (bytes) directly into an OpenOffice file. > The file is a document, a template, and at specific places I want to put > in the right letters. In that way my application can fill in a form made > in OpenOffice automatically. An old trick that used to work in > Windows... > > But here's the problem: I read byte by byte from the document file. > I look for specific words there (by combining the last 4 bytes for > example). > > I have put field markers in the document, like H#01, but I can't find > them when I'm reading the bytes. Shouldn't 'H' have the code 72 and '#' > the code 35 for example? Or is that old ASCII not used in > Linux/OpenOffice? Or am I using the wrong method when I try to read the > file? > > DIM b AS Byte > DIM fil AS file > fil = OPEN "document.odt" FOR READ > WHILE NOT Eof(fil) > READ #fil, b > IF b = 72 THEN 'look for the letter H > (etc) > > Anyone have a clue? > /Fredrik > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -------------- next part -------------- ' Gambas module file ' Here we handle all xfers to and from open office files ' we have to do unzip, replace and zip into a new file ' we have to replace text items and images ' we have to insert images (replace really) ' the structure of an Oofile (unzipped) is analysed and data is transferred ' the tags are of the form {{TagType:String}} ' where Tagtype = 'db:' use DbFieldType ' 'cu:' Currency ' 'im:' Image ' 'tb:' Use translate table ' 'fo:' Formule (use + - / etc. for numeric database fields, all Mysql expressions are ok) ' 'ft:' Formatted text (nl etc !) ' 'li:' Litteral (program variable) ' ' The Mtranslate table is as followes : ' FieldName (VarChar) = Name of the query field ' FieldVal (VarChar) = Value of the field to translate ' Replacement (VarChar) = What to print (can be one of the above enumerated types, or just a value) ' ' ' We call this as OOInsert( Input file name, Output filename, SQl query string, Images string array) -> returns TRUE or FALSE ' if OFile is empty, the IFile will be written over (if I can !) ' ' Attention on the string Images : its format is as follows : ' [0]: ftp command for connection or file name like in ' "ftp ftp://root:pliplaplo at ...1696..." ' or "localfile" & ' [1]: The location of the files as in ' "/home/steven/photos" ' or "/home/steven/{fieldname1}/test/{fieldname2}" where the vars {filednamex} are database field names ' from the query ' If a field in the databse, targeted for an image is a blob, we consider thats a transfert direct, ' otherwise, we will try to read the images from the location specified above, extenxded with the field contents ' as a file name ' ' All the other parms are in the document. ' In case of an image it's in the image-name field, followed by 2 numbers ' ie file_name01 - because OO can't have the same imagename twice (so, you have to put in a 'dummy' image) ' ' Attention : we presume someone opened a database db publicly ' ' now we do it RsA AS Result ' the result of the databse quiry (if there are more records, you'll have more forms filles) MYes AS String = "Oui" MNo AS String = "Non" sData AS String ' The input string of the XML file (the whole file) FNam AS String ' The name of the temporary (work) file MyDir AS String ' The working directory name OSql AS String ' The original Quiry asked for LImages AS String[] ' The command line for image transferts PUBLIC PhotoNum AS Integer = -1 ' last photo number used, in case of multi photos PUBLIC FUNCTION OOInsert(IFile AS String, OPTIONAL OFile AS String, Sql AS String, OPTIONAL Images AS String[]) AS Integer DIM ZipCmd AS String DIM Ctr AS Integer ' Main function, called from the outside ' IFile is the input openoffice text file name, OFile is the output target filename wanted ' here we do the main tasks, we will devide afterwards ' we presume that someone opened a database db RsA = db.Exec(Sql) IF NOT RsA.available THEN message.Error(" There must be something wrong in your SQL statement:\n" & Sql & "\nor your database is not open\nOr there is data missing (photos ?)", "ok") RETURN FALSE END IF IF NOT Access(IFile, gb.READ) THEN message.Error(" There must be something wrong in your Filename:\n" & IFile & "\nI cannot read it", "ok") RETURN FALSE END IF OSql = Sql ' save me, you never know ! ' first we will save the images command (if there is any) IF Images THEN LImages = Images END IF IF NOT OFile THEN OFile = IFile END IF FOR EACH RsA ' so we have our tools, lets try it ' we use unzip, since it knows how to handle directory structures RANDOMIZE FNam = Str(CInt(Rnd(100000000, 2000000000))) MyDir = USER.Home & "/" & FNam MKDIR MyDir ZipCmd = "unzip -d " & MyDir & " " & IFile ' lets do the unzip SHELL ZipCmd WAIT ' we have the structure unpacked now ' we have the following files to consider : ' content.xml = main content (text) with the tags ' ./Pictures directory with the images ' We start to read the content into a string sData = File.Load(MyDir & "/content.xml") sData = DoLine(sData) ' this is where the work is done File.Save(MyDir & "/content.xml", sData) ' that main file is updated, we presume allso that all interesting photos are replaced in the Pictures directory ' and now we re-compress all into an odt (zip) file SHELL "cd " & MyDir & ";zip -r " & FNam & ".odt *" WAIT ' ok, he's there now, lets move um and delete the working directory IF Ctr = 0 THEN SHELL "cp " & MYDir & "/" & FNam & ".odt " & OFile WAIT ELSE SHELL "cp " & MYDir & "/" & FNam & "_" & Str(Ctr) & ".odt " & OFile WAIT END IF SHELL "rm -rf " & MyDir ' we don't wait for this to end Ctr = Ctr + 1 NEXT RETURN TRUE 'CATCH ' Message.Error(Error.Text) ' SHELL "rm -rf " & MyDir ' try to clean up at least ' RETURN FALSE END PRIVATE FUNCTION DoLine(sData AS String) AS String DIM s, e AS Integer DIM Tmp AS String DIM Tag AS String[] ' we do the replace/find data Tmp = sData s = InStr(Tmp, "{{") WHILE s > 0 e = InStr(Tmp, "}}", s) Tag = Split(Mid(Tmp, s + 2, e - s - 2), ":") Tmp = Mid(Tmp, 1, s - 1) & DoField(Tag) & Mid(Tmp, e + 2) s = InStr(Tmp, "{{") WEND RETURN Tmp END PRIVATE FUNCTION DoField(Tag AS String[]) AS String DIM Rstr AS String ' the return string DIM tmp AS String DIM RsX AS Result DIM TTag AS String[] ' we have the field to translate in tag, lets analyse it ' 0 is the command, 1 the value Rstr = "--" ' just vin case, to avaoid null's comming out SELECT Tag[0] CASE "db" ' we take the field from the database, and try to print it as nice as possible SELECT RsA.Fields[Tag[1]].Type CASE db.Boolean IF RsA[Tag[1]] THEN Rstr = MYes ELSE Rstr = MNo END IF CASE db.integer TRY Rstr = Format$(RsA[Tag[1]], "(#.#)") CASE db.float TRY Rstr = Format$(RsA[Tag[1]], "($,#)") CASE db.date TRY Rstr = Format$(RsA[Tag[1]], "d mmm yyyy") CASE db.string Rstr = XMLCor(RsA[Tag[1]]) CASE db.serial Rstr = Str(RsA[Tag[1]]) CASE ELSE ' suppose this can be a blob or a string, w'll handle it as strings Rstr = XMLCor(RsA[Tag[1]]) END SELECT CASE "cu" ' currency "($,#.###)" TRY Rstr = Format$(Str(RsA[Tag[1]]), "($,#.###)") CASE "ft" ' formatted text Rstr = XMLCor(RsA[Tag[1]]) CASE "im" ' image DoPhotos(Tag) ' this is for the sequence number (2 pos) Rstr = Tag[1] CASE "li" ' Literal program variable Rstr = XMLCor(Eval(Tag[1])) ' message.Info(Mglobal.U_AgenNom) CASE "tb" ' translate table ' we read the table with Tag and value as the two keys RsX = db.Exec("Select * from MTranslate where FieldName = '" & Tag[1] & "' AND FieldVal = '" & Str(RsA[Tag[1]]) & "'") IF RsX.Available THEN RStr = XMLCor(Conv(RsX!Replacement, "ISO-8859-1", "UTF-8")) IF InStr(Rstr, ":") THEN RStr = DoField(Split(RStr, ":")) ' we go deeeeep here, lets take the risc ! END IF ELSE RStr = " " END IF CASE "fo" ' we have to calculate something ' we have a string with + - / * etc in it and field names ' we adapt the first query, to add this calculation (field names must be ok !) ' we presume that the first query is like 'Select blablabla' Tmp = "Select ( " & Replace$(Tag[1], "'", "'") & " ) as tmpnam2334, " & Mid(Osql, 7) TRY RsX = db.Exec(Tmp) IF RsX.available THEN Rstr = XMLCor(RsX!tmpnam2334) ELSE RStr = "" END IF CASE ELSE ' we just try to give back the field (like string) after translation for xml Rstr = XMLCor(RsA[Tag[1]]) END SELECT RETURN Rstr END PRIVATE SUB DoPhotos(Tage AS String[]) ' the problem is that there are more then one per document / record ' we will just do it as replacing existing images in their directory, without changing the xml ' the images in the xml files are as : href="Pictures/100000000000019D000001DC284D3F35.jpg" DIM s, e, b AS Integer DIM Tmp, Tmp2, FtpCom AS String DIM Tag2 AS String[] DIM hResultField AS ResultField DIM Tres AS Result DIM Tmp_fld AS String PhotoNum = PhotoNum + 1 Tmp = sData s = InStr(Tmp, "{{" & Tage[0] & ":" & Tage[1] & "}}") s = InStr(Tmp, "href=\"Pictures/", s) e = InStr(Tmp, " ", s) - 1 Tag2 = Split(Mid(Tmp, s + 15, e - s - 15), ".") ' we donnot change the text, we just move the picture in place ' the filename is in Tag[1] ' we read the photos table directly here Tres = db.Exec("Select * from Photos where prop_num = " & RsA!id & " AND sequence = " & PhotoNum) IF Tres.Available THEN ' ATTENTION ! we might have to change the file extension (png, gif, ...) Tmp_fld = Mid$(Tage[1], 1, Len(Tage[1]) - 2) IF Tres.Fields[Tmp_fld].Type = db.Blob THEN ' we have one direct ( a jpg, we will make) Tmp2 = Tres[Tmp_fld] ' write the photo to local file File.Save("'" & MyDir & "/Pictures/" & Tag2[0] & "." & Tag2[1] & "'", Tmp2) ELSE 'we have a filename ' we will have to call a public user module, that gives us the full filename and ' it has to indicate if it's local or via ftp (with user and keys and so on) IF LImages THEN ' we start with construction the file path IF LImages[1] THEN Tmp2 = LImages[1] ' the directory s = InStr(Tmp2, "{") IF s THEN ' we have some replace to do WHILE s > 0 e = InStr(Tmp2, "}") Tmp2 = Mid(Tmp2, 1, s - 1) & RsA[Mid(Tmp2, s + 1, e - s - 1)] & Mid(Tmp2, e + 1) s = InStr(Tmp2, "{") WEND END IF ' we might have to clean Tmp_fld, since it might contain paths ! Tmp = Tres[Tmp_fld] e = RInStr(Tmp, "/") IF e > 0 THEN ' I thought so ! Tmp = Mid(Tmp, e + 1) END IF Tmp2 = Tmp2 & "/" & Tmp ELSE Tmp2 = Tmp_fld END IF ' now we have the real file name in Tmp2 ' we go and do the move IF InStr(LImages[0], "ftp") > 0 THEN ' we have to construct a ftp command FtpCom = LImages[0] & Tmp2 & "' -o '" & MyDir & "/Pictures/" & Tag2[0] & "." & Tag2[1] & "'" SHELL FtpCom WAIT ' message.Info(FtpCom) ELSE ' it's a local file SHELL "cp -fp '" & Tmp2 & "' '" & MyDir & "/Pictures/" & Tag2[0] & "." & Tag2[1] & "'" END IF END IF END IF RETURN ELSE message.Info("C'est une fichier ancienne\nIl faut re-trier les photos !") END IF END PRIVATE FUNCTION XMLCor(Inp AS String) AS String DIM tmp AS String 'scan a string and prepare it for use with XML Tmp = Replace$(Inp, "'", "'") ' Apostrophes (') are NOT allowed Tmp = Replace$(Tmp, "\"", """) ' Double quotes neither Tmp = Replace$(Tmp, Chr$(9), " ") ' Horizontal tabs Tmp = Replace$(Tmp, Chr$(10), " ") ' Line feeds Tmp = Replace$(Tmp, Chr$(13), "") ' No carriage returns RETURN Tmp END From steven at ...1652... Mon Oct 29 17:16:41 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Mon, 29 Oct 2007 17:16:41 +0100 Subject: [Gambas-user] Gridview Message-ID: <200710291716.41984.steven@...1652...> Hi, I have a strange problem with a gridview, probably doing something wrong ;-( If i do GridView.Row = 167 on a grid view with 320 rows, the row stays invalid (-1). I cannot get it to change ???? Any ideas ? Steven ps : Latest trunk 2.0 and Suse 10.2 From leonardo at ...1237... Mon Oct 29 23:08:05 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Mon, 29 Oct 2007 23:08:05 +0100 Subject: [Gambas-user] Bug in the IDE editor Message-ID: <472659C5.6090601@...1237...> I think there is a bug in IDE editor of the last version of Gambas 1.9.90. Let me explain.... I worked a program that manipolates tables from an SQLite3 database and assign their values at some strings contained in a module... This is a part of the code: [...] StampeAuto.Targa.Add(Risultato!Targa) StampeAuto.Veicolo.Add(Risultato!Veicolo) StampeAuto.Chiave.Add(Risultato!Chiave) StampeAuto.Posto.Add(Risultato!Posto) StampeAuto.Piano.Add(Risultato!Piano) [...] The problem is that the first letter of the names of the tables in the database are in lower case and the first letter of the names of the strings contained in the module StampeAuto are in upper case instead. So, what happens? Gambas (as you can see in the example) set all the name of the tables after Risultato! in Upper case because it thinks that those names are the same variables of the name of the properties of the module... and the program doesn't work because it doesn't find nothing in the database (Linux discriminates from lower and upper case). If I set those names in lower case than Gambas set in lower case the name of the tables too and the program works, i.e.: StampeAuto.targa.Add(Risultato!targa) -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From gambas at ...1... Mon Oct 29 23:49:17 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 29 Oct 2007 23:49:17 +0100 Subject: [Gambas-user] Bug in the IDE editor In-Reply-To: <472659C5.6090601@...1237...> References: <472659C5.6090601@...1237...> Message-ID: <200710292349.17811.gambas@...1...> On lundi 29 octobre 2007, Leonardo Miliani wrote: > I think there is a bug in IDE editor of the last version of Gambas 1.9.90. > > Let me explain.... > I worked a program that manipolates tables from an SQLite3 database and > assign their values at some strings contained in a module... > This is a part of the code: > > [...] > StampeAuto.Targa.Add(Risultato!Targa) > StampeAuto.Veicolo.Add(Risultato!Veicolo) > StampeAuto.Chiave.Add(Risultato!Chiave) > StampeAuto.Posto.Add(Risultato!Posto) > StampeAuto.Piano.Add(Risultato!Piano) > [...] > > The problem is that the first letter of the names of the tables in the > database are in lower case and the first letter of the names of the > strings contained in the module StampeAuto are in upper case instead. > So, what happens? Gambas (as you can see in the example) set all the > name of the tables after Risultato! in Upper case because it thinks that > those names are the same variables of the name of the properties of the > module... and the program doesn't work because it doesn't find nothing > in the database (Linux discriminates from lower and upper case). > If I set those names in lower case than Gambas set in lower case the > name of the tables too and the program works, i.e.: > > StampeAuto.targa.Add(Risultato!targa) Yes, this is some sort of bug, but I think it was fixed recently. Otherwise, you have a workaround: StampeAuto.Targa.Add(Risultato["Targa"]) 'a!b' is just syntactic sugar for 'a["b"]', except that in the second case the compiler correctly stores "b" as a string, and not as an identifier. Regards, -- Benoit Minisini From gambas at ...1... Mon Oct 29 23:58:08 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 29 Oct 2007 23:58:08 +0100 Subject: [Gambas-user] Gridview In-Reply-To: <200710291716.41984.steven@...1652...> References: <200710291716.41984.steven@...1652...> Message-ID: <200710292358.08658.gambas@...1...> On lundi 29 octobre 2007, Steven Lobbezoo wrote: > Hi, > > I have a strange problem with a gridview, probably doing something wrong > ;-( > > If i do GridView.Row = 167 on a grid view with 320 rows, the row stays > invalid (-1). I cannot get it to change ???? > > Any ideas ? > > Steven > ps : Latest trunk 2.0 and Suse 10.2 > Can you provide some code? A project archive being the better. :-) -- Benoit Minisini From gambas at ...1... Mon Oct 29 23:59:20 2007 From: gambas at ...1... (Benoit Minisini) Date: Mon, 29 Oct 2007 23:59:20 +0100 Subject: [Gambas-user] Database manager In-Reply-To: <13451085.post@...1379...> References: <13371092.post@...1379...> <13451085.post@...1379...> Message-ID: <200710292359.20625.gambas@...1...> On dimanche 28 octobre 2007, R. Stormo wrote: > R. Stormo wrote: > > Can't seem to open any windows in he database manager anymore, svn > > version 771. > > It do ask for password, Then I select sqlite3 as new server, all my > > tables and users are showing. But when I click on one table nothing > > happens. Is this a known thing or it is just me.? > > > > > > Regards Rohnny > > > > My Gambas Community http://gambasforum.tk > > Tried the latest svn (789) on another computer today. No luck on this > computer either to edit table. > Manage to create sqlite3 server, create database and table but when I tried > to edit to add fields nothing happens. > This was also on Ubuntu gutsy gibbon if that helps. > > > My Gambas Community http://gambasforum.tk I have no problem with the database manager on sqlite3 database there when adding fields. Can you be more precise about what you are doing *exactly*? -- Benoit Minisini From rohnny at ...1248... Tue Oct 30 06:47:02 2007 From: rohnny at ...1248... (R. Stormo) Date: Mon, 29 Oct 2007 22:47:02 -0700 (PDT) Subject: [Gambas-user] Database manager In-Reply-To: <200710292359.20625.gambas@...1...> References: <13371092.post@...1379...> <13451085.post@...1379...> <200710292359.20625.gambas@...1...> Message-ID: <13482835.post@...1379...> Benoit Minisini wrote: > > On dimanche 28 octobre 2007, R. Stormo wrote: >> R. Stormo wrote: >> > Can't seem to open any windows in he database manager anymore, svn >> > version 771. >> > It do ask for password, Then I select sqlite3 as new server, all my >> > tables and users are showing. But when I click on one table nothing >> > happens. Is this a known thing or it is just me.? >> > >> > >> > Regards Rohnny >> > >> > My Gambas Community http://gambasforum.tk >> >> Tried the latest svn (789) on another computer today. No luck on this >> computer either to edit table. >> Manage to create sqlite3 server, create database and table but when I >> tried >> to edit to add fields nothing happens. >> This was also on Ubuntu gutsy gibbon if that helps. >> >> >> My Gambas Community http://gambasforum.tk > > I have no problem with the database manager on sqlite3 database there when > adding fields. Can you be more precise about what you are doing *exactly*? > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Hi Benoit. Create New Project Include database access Go to tool databasemanager password 12345678 Select new server, Selecting sqlite3 and homefolder Creating database Selecting the newdatabase Create table Now the problem come, Selecting Newtable, and choose edit Nothing happens. The only thing that works is delete Regards Rohnny My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Database-manager-tf4679582.html#a13482835 Sent from the gambas-user mailing list archive at Nabble.com. From leonardo at ...1237... Tue Oct 30 10:35:10 2007 From: leonardo at ...1237... (Leonardo Miliani) Date: Tue, 30 Oct 2007 10:35:10 +0100 Subject: [Gambas-user] Bug in the IDE editor In-Reply-To: <200710292349.17811.gambas@...1...> References: <472659C5.6090601@...1237...> <200710292349.17811.gambas@...1...> Message-ID: <4726FACE.90300@...1237...> Benoit Minisini ha scritto: > On lundi 29 octobre 2007, Leonardo Miliani wrote: >> I think there is a bug in IDE editor of the last version of Gambas 1.9.90. >> >> Let me explain.... >> I worked a program that manipolates tables from an SQLite3 database and >> assign their values at some strings contained in a module... >> This is a part of the code: >> >> [...] >> StampeAuto.Targa.Add(Risultato!Targa) >> StampeAuto.Veicolo.Add(Risultato!Veicolo) >> StampeAuto.Chiave.Add(Risultato!Chiave) >> StampeAuto.Posto.Add(Risultato!Posto) >> StampeAuto.Piano.Add(Risultato!Piano) >> [...] >> >> The problem is that the first letter of the names of the tables in the >> database are in lower case and the first letter of the names of the >> strings contained in the module StampeAuto are in upper case instead. >> So, what happens? Gambas (as you can see in the example) set all the >> name of the tables after Risultato! in Upper case because it thinks that >> those names are the same variables of the name of the properties of the >> module... and the program doesn't work because it doesn't find nothing >> in the database (Linux discriminates from lower and upper case). >> If I set those names in lower case than Gambas set in lower case the >> name of the tables too and the program works, i.e.: >> >> StampeAuto.targa.Add(Risultato!targa) > > Yes, this is some sort of bug, but I think it was fixed recently. > > Otherwise, you have a workaround: > > StampeAuto.Targa.Add(Risultato["Targa"]) > > 'a!b' is just syntactic sugar for 'a["b"]', except that in the second case the > compiler correctly stores "b" as a string, and not as an identifier. > > Regards, > Thank for the tip... I'll modify my code to use the new syntax. -- Ciao. Leo. Web: www.leonardomiliani.com E-mail: leonardo at ...1237... Scegli software opensource - Choose opensource software From steven at ...1652... Tue Oct 30 14:19:49 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Tue, 30 Oct 2007 14:19:49 +0100 Subject: [Gambas-user] Gridview In-Reply-To: <200710292358.08658.gambas@...1...> References: <200710291716.41984.steven@...1652...> <200710292358.08658.gambas@...1...> Message-ID: <200710301419.49508.steven@...1652...> Ok : 1 rsE = db.Exec("Select No FROM Clients WHERE Type = 'Acheteur' ORDER BY No DESC LIMIT 1") 2 FOR r = 0 TO GridView2.Rows.Count - 1 3 IF GridView2[r, 0].Text = Str(rsE!No) THEN 4 GridView2.Row = r 5 GridView2[r, 0].EnsureVisible 6 BREAK 7 END IF 8 NEXT (I added the line numbers) I verified r just before statement 4 5 and 6 It's allways 167 I allso verified Gridview2.Row in the same locations It's allways -1 Steven Le lundi 29 octobre 2007 23:58, Benoit Minisini a ?crit?: > On lundi 29 octobre 2007, Steven Lobbezoo wrote: > > Hi, > > > > I have a strange problem with a gridview, probably doing something wrong > > ;-( > > > > If i do GridView.Row = 167 on a grid view with 320 rows, the row stays > > invalid (-1). I cannot get it to change ???? > > > > Any ideas ? > > > > Steven > > ps : Latest trunk 2.0 and Suse 10.2 > > Can you provide some code? A project archive being the better. :-) From david_villalobos_c at ...43... Tue Oct 30 17:23:10 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 30 Oct 2007 09:23:10 -0700 (PDT) Subject: [Gambas-user] Memory admistration Message-ID: <750206.82971.qm@...1716...> Hi all, I want to know if someone can give a small explanetion about how Gambas administrates the RAM. I made a small aplication that has a label that shows the amount of memory used by the itself. When program starts the label shows arround 20MB. It seems normal. Then if I open report (Form with a webbrouser that show the information of a query), the memory increases to 26MB. It seems normal. But when I close the Form the memory used continue been 26MB or 25MB. I just want to know how Gambas deals with memory to try to find the problem. Best regards. David __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From david_villalobos_c at ...43... Tue Oct 30 17:40:38 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Tue, 30 Oct 2007 09:40:38 -0700 (PDT) Subject: [Gambas-user] Small examples for Gambasdoc.org Message-ID: <175108.14181.qm@...1676...> Hi all. I think it should be a good idea to have a section for small examples on Gambasdoc.org, I know there is a section called Examples in: http://www.gambasforge.net/, but is the entire source code, what I mean is small part of codes and images just to understand how works an object, property, etc. Documents Here is a list of documents that may help you. Compilation & Installation ...Other 'How to'...Samll examples <---- It could placed hereWhat do you think??? Best regards David __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From gambas.fr at ...626... Tue Oct 30 18:02:48 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Tue, 30 Oct 2007 18:02:48 +0100 Subject: [Gambas-user] Small examples for Gambasdoc.org In-Reply-To: <175108.14181.qm@...1676...> References: <175108.14181.qm@...1676...> Message-ID: <200710301802.48694.gambas.fr@...626...> Le Tuesday 30 October 2007 17:40:38 David Villalobos Cambronero, vous avez ?crit?: > Hi all. > > I think it should be a good idea to have a section for small examples > on Gambasdoc.org, I know there is a section called Examples in: > http://www.gambasforge.net/, but is the entire source code, what I mean is > small part of codes and images just to understand how works an object, > property, etc. > > > Documents > > Here is a list of documents that may help you. > > > > Compilation & Installation > ...Other 'How to'...Samll examples <---- It could placed hereWhat do > you think??? > > Best regards > > David > > Wait a little bit... first finish gambas2 then play around... > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From dcamposf at ...626... Tue Oct 30 18:46:42 2007 From: dcamposf at ...626... (Daniel Campos) Date: Tue, 30 Oct 2007 18:46:42 +0100 Subject: [Gambas-user] Memory admistration In-Reply-To: <750206.82971.qm@...1716...> References: <750206.82971.qm@...1716...> Message-ID: <7259b5ae0710301046p272a659ejaa7c09b2dd439c66@...627...> What kind of memory? Any modern O.S. uses to let programs more memory than needed when there's not need to provide memory to other programs, that is, you can find that a program is apparently using 200Mb even if it is using only 100Mb, the O.S. simply reserves that memory for possible future use of the program (if the user loads the form again, for example) so memory allocations become faster. 2007/10/30, David Villalobos Cambronero : > Hi all, > > I want to know if someone can give a small explanetion about how Gambas administrates the RAM. > > I made a small aplication that has a label that shows the amount of memory used by the itself. When program starts the label shows arround 20MB. It seems normal. > > Then if I open report (Form with a webbrouser that show the information of a query), the memory increases to 26MB. It seems normal. > > But when I close the Form the memory used continue been 26MB or 25MB. > > I just want to know how Gambas deals with memory to try to find the problem. > > Best regards. > > David > > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Tue Oct 30 20:10:10 2007 From: gambas at ...1... (Benoit Minisini) Date: Tue, 30 Oct 2007 20:10:10 +0100 Subject: [Gambas-user] Memory admistration In-Reply-To: <7259b5ae0710301046p272a659ejaa7c09b2dd439c66@...627...> References: <750206.82971.qm@...1716...> <7259b5ae0710301046p272a659ejaa7c09b2dd439c66@...627...> Message-ID: <200710302010.10984.gambas@...1...> On mardi 30 octobre 2007, Daniel Campos wrote: > What kind of memory? Any modern O.S. uses to let programs more memory > than needed when there's not need to provide memory to other programs, > that is, you can find that a program is apparently using 200Mb even if > it is using only 100Mb, the O.S. simply reserves that memory for > possible future use of the program (if the user loads the form again, > for example) so memory allocations become faster. > > 2007/10/30, David Villalobos Cambronero : > > Hi all, > > > > I want to know if someone can give a small explanetion about how > > Gambas administrates the RAM. > > > > I made a small aplication that has a label that shows the amount of > > memory used by the itself. When program starts the label shows arround > > 20MB. It seems normal. > > > > Then if I open report (Form with a webbrouser that show the > > information of a query), the memory increases to 26MB. It seems normal. > > > > But when I close the Form the memory used continue been 26MB or 25MB. > > > > I just want to know how Gambas deals with memory to try to find the > > problem. > > > > Best regards. > > > > David > > > > To solve this problem, i.e. to know how much RAM is really used by the program, I suggest using the following function: PRIVATE FUNCTION GetUsedMemory() AS Integer DIM sRes AS String DIM aRes AS String[] DIM cVal AS NEW Collection DIM sVal AS String EXEC ["cat", "/proc/meminfo"] TO sRes FOR EACH sVal IN Split(sRes, "\n", "", TRUE) aRes = Split(sVal, " ", "", TRUE) cVal[Left$(aRes[0], -1)] = CInt(aRes[1]) NEXT RETURN cVal!MemTotal - cVal!MemFree - cVal!Buffers - cVal!Cached + cVal!SwapTotal - cVal!SwapFree - cVal!SwapCached END Call this function to get the memory used by the system (without swap and cache), run something (a full application, a function...), then call this function again. The difference is the RAM really used by your application or function. Note that opening the IDE project in the gambas IDE uses about 5 Mb of RAM. But this is on KDE where the QT library is already loaded. And note that at the moment the gambas interpreter never unload a class. So opening a form and closing it only frees the dynamic data used by the form, but not the memory used by the class (class information, bytecode, debugging symbols...) Regards, -- Benoit Minisini From gambas.fr at ...626... Wed Oct 31 08:25:45 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 31 Oct 2007 08:25:45 +0100 Subject: [Gambas-user] Memory admistration In-Reply-To: <200710302010.10984.gambas@...1...> References: <750206.82971.qm@...1716...> <7259b5ae0710301046p272a659ejaa7c09b2dd439c66@...627...> <200710302010.10984.gambas@...1...> Message-ID: <200710310825.46096.gambas.fr@...626...> Just to talk a little bit : i've used the Benoit function under the script joined here, in a concole : Launch ./ram.g then i ve made this simple script: USE gb.qt dim hForm as new form hForm.show and launch it via 'gbs2 test.g &' call a new time ./ram.g result : 2MB nota: i use kde so qt is loaded... nota after unload the test appli the memory decrease to be a the same level or near. Le Tuesday 30 October 2007 20:10:10 Benoit Minisini, vous avez ?crit?: > On mardi 30 octobre 2007, Daniel Campos wrote: > > What kind of memory? Any modern O.S. uses to let programs more memory > > than needed when there's not need to provide memory to other programs, > > that is, you can find that a program is apparently using 200Mb even if > > it is using only 100Mb, the O.S. simply reserves that memory for > > possible future use of the program (if the user loads the form again, > > for example) so memory allocations become faster. > > > > 2007/10/30, David Villalobos Cambronero : > > > Hi all, > > > > > > I want to know if someone can give a small explanetion about how > > > Gambas administrates the RAM. > > > > > > I made a small aplication that has a label that shows the amount of > > > memory used by the itself. When program starts the label shows arround > > > 20MB. It seems normal. > > > > > > Then if I open report (Form with a webbrouser that show the > > > information of a query), the memory increases to 26MB. It seems normal. > > > > > > But when I close the Form the memory used continue been 26MB or > > > 25MB. > > > > > > I just want to know how Gambas deals with memory to try to find the > > > problem. > > > > > > Best regards. > > > > > > David > > To solve this problem, i.e. to know how much RAM is really used by the > program, I suggest using the following function: > > PRIVATE FUNCTION GetUsedMemory() AS Integer > > DIM sRes AS String > DIM aRes AS String[] > DIM cVal AS NEW Collection > DIM sVal AS String > > EXEC ["cat", "/proc/meminfo"] TO sRes > FOR EACH sVal IN Split(sRes, "\n", "", TRUE) > aRes = Split(sVal, " ", "", TRUE) > cVal[Left$(aRes[0], -1)] = CInt(aRes[1]) > NEXT > > RETURN cVal!MemTotal - cVal!MemFree - cVal!Buffers - cVal!Cached + > cVal!SwapTotal - cVal!SwapFree - cVal!SwapCached > > END > > Call this function to get the memory used by the system (without swap and > cache), run something (a full application, a function...), then call this > function again. The difference is the RAM really used by your application > or function. > > Note that opening the IDE project in the gambas IDE uses about 5 Mb of RAM. > But this is on KDE where the QT library is already loaded. > > And note that at the moment the gambas interpreter never unload a class. So > opening a form and closing it only frees the dynamic data used by the form, > but not the memory used by the class (class information, bytecode, > debugging symbols...) > > Regards, -------------- next part -------------- #!/usr/bin/env gbs2 PRIVATE FUNCTION GetUsedMemory() AS Integer DIM sRes AS String DIM aRes AS String[] DIM cVal AS NEW Collection DIM sVal AS String EXEC ["cat", "/proc/meminfo"] TO sRes FOR EACH sVal IN Split(sRes, "\n", "", TRUE) aRes = Split(sVal, " ", "", TRUE) cVal[Left$(aRes[0], -1)] = CInt(aRes[1]) NEXT RETURN cVal!MemTotal - cVal!MemFree - cVal!Buffers - cVal!Cached + cVal!SwapTotal - cVal!SwapFree - cVal!SwapCached END Print subst("Used memory: &1 Bytes",GetUsedMemory()) From gambas at ...1... Wed Oct 31 11:05:10 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Oct 2007 11:05:10 +0100 Subject: [Gambas-user] Memory admistration In-Reply-To: <200710310825.46096.gambas.fr@...626...> References: <750206.82971.qm@...1716...> <200710302010.10984.gambas@...1...> <200710310825.46096.gambas.fr@...626...> Message-ID: <200710311105.10738.gambas@...1...> On mercredi 31 octobre 2007, Fabien Bodard wrote: > Just to talk a little bit : > > i've used the Benoit function under the script joined here, > > in a concole : > Launch ./ram.g > then i ve made this simple script: > > > USE gb.qt > > dim hForm as new form > > hForm.show > > > and launch it via 'gbs2 test.g &' > call a new time ./ram.g > > result : 2MB > > nota: i use kde so qt is loaded... > > nota after unload the test appli the memory decrease to be a the same level > or near. > Gambas scripts seems to be cool after all :-). Now we just have to find a good guy (or girl?) that will write a Gambas highlighting file for Kate. :-) -- Benoit Minisini From gambas at ...1... Wed Oct 31 11:06:13 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Oct 2007 11:06:13 +0100 Subject: [Gambas-user] Gridview In-Reply-To: <200710301419.49508.steven@...1652...> References: <200710291716.41984.steven@...1652...> <200710292358.08658.gambas@...1...> <200710301419.49508.steven@...1652...> Message-ID: <200710311106.14008.gambas@...1...> On mardi 30 octobre 2007, Steven Lobbezoo wrote: > Ok : > > 1 rsE = db.Exec("Select No FROM Clients WHERE Type = 'Acheteur' ORDER > BY No DESC LIMIT 1") > 2 FOR r = 0 TO GridView2.Rows.Count - 1 > 3 IF GridView2[r, 0].Text = Str(rsE!No) THEN > 4 GridView2.Row = r > 5 GridView2[r, 0].EnsureVisible > 6 BREAK > 7 END IF > 8 NEXT > > (I added the line numbers) > I verified r just before statement 4 5 and 6 > It's allways 167 > I allso verified Gridview2.Row in the same locations > It's allways -1 > > Steven > Is it with gb.qt or gb.gtk? -- Benoit Minisini From steven at ...1652... Wed Oct 31 11:29:13 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 31 Oct 2007 11:29:13 +0100 Subject: [Gambas-user] Gridview In-Reply-To: <200710311106.14008.gambas@...1...> References: <200710291716.41984.steven@...1652...> <200710301419.49508.steven@...1652...> <200710311106.14008.gambas@...1...> Message-ID: <200710311129.13890.steven@...1652...> Le mercredi 31 octobre 2007 11:06, Benoit Minisini a ?crit?: > On mardi 30 octobre 2007, Steven Lobbezoo wrote: > > Ok : > > > > 1 rsE = db.Exec("Select No FROM Clients WHERE Type = 'Acheteur' > > ORDER BY No DESC LIMIT 1") > > 2 FOR r = 0 TO GridView2.Rows.Count - 1 > > 3 IF GridView2[r, 0].Text = Str(rsE!No) THEN > > 4 GridView2.Row = r > > 5 GridView2[r, 0].EnsureVisible > > 6 BREAK > > 7 END IF > > 8 NEXT > > > > (I added the line numbers) > > I verified r just before statement 4 5 and 6 > > It's allways 167 > > I allso verified Gridview2.Row in the same locations > > It's allways -1 > > > > Steven > > Is it with gb.qt or gb.gtk? With gb.qt Steven From gambas.fr at ...626... Wed Oct 31 11:38:10 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 31 Oct 2007 11:38:10 +0100 Subject: [Gambas-user] Memory admistration In-Reply-To: <200710311105.10738.gambas@...1...> References: <750206.82971.qm@...1716...> <200710310825.46096.gambas.fr@...626...> <200710311105.10738.gambas@...1...> Message-ID: <200710311138.11463.gambas.fr@...626...> Le Wednesday 31 October 2007 11:05:10 Benoit Minisini, vous avez ?crit?: > On mercredi 31 octobre 2007, Fabien Bodard wrote: > > Just to talk a little bit : > > > > i've used the Benoit function under the script joined here, > > > > in a concole : > > Launch ./ram.g > > then i ve made this simple script: > > > > > > USE gb.qt > > > > dim hForm as new form > > > > hForm.show > > > > > > and launch it via 'gbs2 test.g &' > > call a new time ./ram.g > > > > result : 2MB > > > > nota: i use kde so qt is loaded... > > > > nota after unload the test appli the memory decrease to be a the same > > level or near. > > Gambas scripts seems to be cool after all :-). Now we just have to find a > good guy (or girl?) that will write a Gambas highlighting file for Kate. > :-) You know what ?... You have find what i'm currently doing :) I will send you the result this evening Fabien From gambas at ...1... Wed Oct 31 12:49:40 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Oct 2007 12:49:40 +0100 Subject: [Gambas-user] Gridview In-Reply-To: <200710311129.13890.steven@...1652...> References: <200710291716.41984.steven@...1652...> <200710311106.14008.gambas@...1...> <200710311129.13890.steven@...1652...> Message-ID: <200710311249.40324.gambas@...1...> On mercredi 31 octobre 2007, Steven Lobbezoo wrote: > Le mercredi 31 octobre 2007 11:06, Benoit Minisini a ?crit?: > > On mardi 30 octobre 2007, Steven Lobbezoo wrote: > > > Ok : > > > > > > 1 rsE = db.Exec("Select No FROM Clients WHERE Type = 'Acheteur' > > > ORDER BY No DESC LIMIT 1") > > > 2 FOR r = 0 TO GridView2.Rows.Count - 1 > > > 3 IF GridView2[r, 0].Text = Str(rsE!No) THEN > > > 4 GridView2.Row = r > > > 5 GridView2[r, 0].EnsureVisible > > > 6 BREAK > > > 7 END IF > > > 8 NEXT > > > > > > (I added the line numbers) > > > I verified r just before statement 4 5 and 6 > > > It's allways 167 > > > I allso verified Gridview2.Row in the same locations > > > It's allways -1 > > > > > > Steven > > > > Is it with gb.qt or gb.gtk? > > With gb.qt > > Steven > It is very hard to guess what happens without a full test project. Anyway, I changed some little things in the last revision in the way GridView handle its Row and Column properties. Can you try that and tell me if it changes anything to your bug? Regards, -- Benoit Minisini From gambas at ...1... Wed Oct 31 12:53:37 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Oct 2007 12:53:37 +0100 Subject: [Gambas-user] Gambas scripter Message-ID: <200710311253.37766.gambas@...1...> The Gambas scripter made by Fabien (with my advices :-) ) is now integrated in the source package. To compile and install it correctly, you have to reconfigure the app source sub-package: $ cd trunk/app $ ./reconf $ ./configure Regards, -- Benoit Minisini From david_villalobos_c at ...43... Wed Oct 31 13:12:15 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 31 Oct 2007 05:12:15 -0700 (PDT) Subject: [Gambas-user] Memory admistration Message-ID: <327614.33955.qm@...1670...> Many thanks, thats what I wanted, I wanted to understand ?why! regards David ----- Original Message ---- From: Benoit Minisini To: mailing list for gambas users Sent: Tuesday, October 30, 2007 7:10:10 PM Subject: Re: [Gambas-user] Memory admistration On mardi 30 octobre 2007, Daniel Campos wrote: > What kind of memory? Any modern O.S. uses to let programs more memory > than needed when there's not need to provide memory to other programs, > that is, you can find that a program is apparently using 200Mb even if > it is using only 100Mb, the O.S. simply reserves that memory for > possible future use of the program (if the user loads the form again, > for example) so memory allocations become faster. > > 2007/10/30, David Villalobos Cambronero : > > Hi all, > > > > I want to know if someone can give a small explanetion about how > > Gambas administrates the RAM. > > > > I made a small aplication that has a label that shows the amount of > > memory used by the itself. When program starts the label shows arround > > 20MB. It seems normal. > > > > Then if I open report (Form with a webbrouser that show the > > information of a query), the memory increases to 26MB. It seems normal. > > > > But when I close the Form the memory used continue been 26MB or 25MB. > > > > I just want to know how Gambas deals with memory to try to find the > > problem. > > > > Best regards. > > > > David > > > > To solve this problem, i.e. to know how much RAM is really used by the program, I suggest using the following function: PRIVATE FUNCTION GetUsedMemory() AS Integer DIM sRes AS String DIM aRes AS String[] DIM cVal AS NEW Collection DIM sVal AS String EXEC ["cat", "/proc/meminfo"] TO sRes FOR EACH sVal IN Split(sRes, "\n", "", TRUE) aRes = Split(sVal, " ", "", TRUE) cVal[Left$(aRes[0], -1)] = CInt(aRes[1]) NEXT RETURN cVal!MemTotal - cVal!MemFree - cVal!Buffers - cVal!Cached + cVal!SwapTotal - cVal!SwapFree - cVal!SwapCached END Call this function to get the memory used by the system (without swap and cache), run something (a full application, a function...), then call this function again. The difference is the RAM really used by your application or function. Note that opening the IDE project in the gambas IDE uses about 5 Mb of RAM. But this is on KDE where the QT library is already loaded. And note that at the moment the gambas interpreter never unload a class. So opening a form and closing it only frees the dynamic data used by the form, but not the memory used by the class (class information, bytecode, debugging symbols...) Regards, -- Benoit Minisini ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From jredrejo at ...626... Wed Oct 31 13:24:19 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Wed, 31 Oct 2007 13:24:19 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <200710311253.37766.gambas@...1...> References: <200710311253.37766.gambas@...1...> Message-ID: <8eb28a500710310524p75402793u9e3e85b71aae9799@...627...> Any advice or desire about how to include the scripter in gambas packages? Regards. 2007/10/31, Benoit Minisini : > > The Gambas scripter made by Fabien (with my advices :-) ) is now > integrated in > the source package. > > To compile and install it correctly, you have to reconfigure the app > source > sub-package: > > $ cd trunk/app > $ ./reconf > $ ./configure > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas at ...1... Wed Oct 31 13:30:30 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Oct 2007 13:30:30 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <8eb28a500710310524p75402793u9e3e85b71aae9799@...627...> References: <200710311253.37766.gambas@...1...> <8eb28a500710310524p75402793u9e3e85b71aae9799@...627...> Message-ID: <200710311330.30216.gambas@...1...> On mercredi 31 octobre 2007, Jos? Luis Redrejo wrote: > Any advice or desire about how to include the scripter in gambas packages? > > Regards. > Good question. I think it should go in gambas-runtime, with the interpreter. -- Benoit Minisini From gambas at ...1... Wed Oct 31 13:35:49 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Oct 2007 13:35:49 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <200710311330.30216.gambas@...1...> References: <200710311253.37766.gambas@...1...> <8eb28a500710310524p75402793u9e3e85b71aae9799@...627...> <200710311330.30216.gambas@...1...> Message-ID: <200710311335.49592.gambas@...1...> On mercredi 31 octobre 2007, Benoit Minisini wrote: > On mercredi 31 octobre 2007, Jos? Luis Redrejo wrote: > > Any advice or desire about how to include the scripter in gambas > > packages? > > > > Regards. > > Good question. I think it should go in gambas-runtime, with the > interpreter. Is it a problem if gbs2, as being a Gambas program, is not located in the same sub-package than other programs of gambas-runtime? -- Benoit Minisini From dcamposf at ...626... Wed Oct 31 13:42:59 2007 From: dcamposf at ...626... (Daniel Campos) Date: Wed, 31 Oct 2007 13:42:59 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <200710311335.49592.gambas@...1...> References: <200710311253.37766.gambas@...1...> <8eb28a500710310524p75402793u9e3e85b71aae9799@...627...> <200710311330.30216.gambas@...1...> <200710311335.49592.gambas@...1...> Message-ID: <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> Hi: It is not possible to put gbs2 in gambas2-runtime, as it needs gbc2 and gba2. those programs are in a separate package, gambas2-dev, as you requested some time ago. So a separate package gambas2-script depending on gambas2-runtime and gambas2-dev should be used for that new program, is the only clean sollution. Daniel 2007/10/31, Benoit Minisini : > On mercredi 31 octobre 2007, Benoit Minisini wrote: > > On mercredi 31 octobre 2007, Jos? Luis Redrejo wrote: > > > Any advice or desire about how to include the scripter in gambas > > > packages? > > > > > > Regards. > > > > Good question. I think it should go in gambas-runtime, with the > > interpreter. > > Is it a problem if gbs2, as being a Gambas program, is not located in the same > sub-package than other programs of gambas-runtime? > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From steven at ...1652... Wed Oct 31 13:45:09 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 31 Oct 2007 13:45:09 +0100 Subject: [Gambas-user] Gridview In-Reply-To: <200710311249.40324.gambas@...1...> References: <200710291716.41984.steven@...1652...> <200710311129.13890.steven@...1652...> <200710311249.40324.gambas@...1...> Message-ID: <200710311345.09754.steven@...1652...> Le mercredi 31 octobre 2007 12:49, Benoit Minisini a ?crit?: > Anyway, I changed some little things in the last revision in the way > GridView handle its Row and Column properties. Can you try that and tell me > if it changes anything to your bug? > > Regards, I tried, h?las : the same result! r is correct, Row does not change! But.. With this version the ability to look into variables just by selecting them in the code while in step mode is back ! Works just fine now. But ...... The database has changed... I suddenly get all kind of weird characters where the french accents should be. So, are you translating something auto now ? Regards, Steven From gambas at ...1... Wed Oct 31 14:01:50 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Oct 2007 14:01:50 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> References: <200710311253.37766.gambas@...1...> <200710311335.49592.gambas@...1...> <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> Message-ID: <200710311401.50752.gambas@...1...> On mercredi 31 octobre 2007, Daniel Campos wrote: > Hi: > > It is not possible to put gbs2 in gambas2-runtime, as it needs gbc2 > and gba2. those programs are in a separate package, gambas2-dev, as > you requested some time ago. > > So a separate package gambas2-script depending on gambas2-runtime and > gambas2-dev should be used for that new program, is the only clean > sollution. > > Daniel > Of course... So stupid! :-) -- Benoit Minisini From jredrejo at ...626... Wed Oct 31 14:06:18 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Wed, 31 Oct 2007 14:06:18 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> References: <200710311253.37766.gambas@...1...> <8eb28a500710310524p75402793u9e3e85b71aae9799@...627...> <200710311330.30216.gambas@...1...> <200710311335.49592.gambas@...1...> <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> Message-ID: <8eb28a500710310606o1f9652b5v379b9d59ea3be711@...627...> Right, it seems the most logical solution in this case. A new gambas2-scripting package sounds good. 2007/10/31, Daniel Campos : > > Hi: > > It is not possible to put gbs2 in gambas2-runtime, as it needs gbc2 > and gba2. those programs are in a separate package, gambas2-dev, as > you requested some time ago. > > So a separate package gambas2-script depending on gambas2-runtime and > gambas2-dev should be used for that new program, is the only clean > sollution. > > Daniel > > > 2007/10/31, Benoit Minisini : > > On mercredi 31 octobre 2007, Benoit Minisini wrote: > > > On mercredi 31 octobre 2007, Jos? Luis Redrejo wrote: > > > > Any advice or desire about how to include the scripter in gambas > > > > packages? > > > > > > > > Regards. > > > > > > Good question. I think it should go in gambas-runtime, with the > > > interpreter. > > > > Is it a problem if gbs2, as being a Gambas program, is not located in > the same > > sub-package than other programs of gambas-runtime? > > > > -- > > Benoit Minisini > > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From jredrejo at ...626... Wed Oct 31 14:08:14 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Wed, 31 Oct 2007 14:08:14 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <200710311401.50752.gambas@...1...> References: <200710311253.37766.gambas@...1...> <200710311335.49592.gambas@...1...> <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> <200710311401.50752.gambas@...1...> Message-ID: <8eb28a500710310608x703793d7pea0ebb604bd4c610@...627...> So, Beno?t, please update the README.HOW-TO-PACKAGE-GAMBAS.html file to assure all the Linux distributions use the same name and dependencies for the new package. 2007/10/31, Benoit Minisini : > > On mercredi 31 octobre 2007, Daniel Campos wrote: > > Hi: > > > > It is not possible to put gbs2 in gambas2-runtime, as it needs gbc2 > > and gba2. those programs are in a separate package, gambas2-dev, as > > you requested some time ago. > > > > So a separate package gambas2-script depending on gambas2-runtime and > > gambas2-dev should be used for that new program, is the only clean > > sollution. > > > > Daniel > > > > Of course... So stupid! :-) > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From gambas.fr at ...626... Wed Oct 31 14:20:50 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 31 Oct 2007 14:20:50 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> References: <200710311253.37766.gambas@...1...> <200710311335.49592.gambas@...1...> <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> Message-ID: <200710311420.50991.gambas.fr@...626...> it remember something... can you put the code finishing level in the package description ? A for exemple for gb.report...(it is reallly not stable) Le Wednesday 31 October 2007 13:42:59 Daniel Campos, vous avez ?crit?: > Hi: > > It is not possible to put gbs2 in gambas2-runtime, as it needs gbc2 > and gba2. those programs are in a separate package, gambas2-dev, as > you requested some time ago. > > So a separate package gambas2-script depending on gambas2-runtime and > gambas2-dev should be used for that new program, is the only clean > sollution. > > Daniel > > 2007/10/31, Benoit Minisini : > > On mercredi 31 octobre 2007, Benoit Minisini wrote: > > > On mercredi 31 octobre 2007, Jos? Luis Redrejo wrote: > > > > Any advice or desire about how to include the scripter in gambas > > > > packages? > > > > > > > > Regards. > > > > > > Good question. I think it should go in gambas-runtime, with the > > > interpreter. > > > > Is it a problem if gbs2, as being a Gambas program, is not located in the > > same sub-package than other programs of gambas-runtime? > > > > -- > > Benoit Minisini > > > > ------------------------------------------------------------------------- > > This SF.net email is sponsored by: Splunk Inc. > > Still grepping through log files to find problems? Stop. > > Now Search log events and configuration files using AJAX and a browser. > > Download your FREE copy of Splunk now >> http://get.splunk.com/ > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas.fr at ...626... Wed Oct 31 14:31:00 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 31 Oct 2007 14:31:00 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> References: <200710311253.37766.gambas@...1...> <200710311335.49592.gambas@...1...> <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> Message-ID: <200710311431.00619.gambas.fr@...626...> Le Wednesday 31 October 2007 13:42:59 Daniel Campos, vous avez ?crit?: > Hi: > > It is not possible to put gbs2 in gambas2-runtime, as it needs gbc2 > and gba2. those programs are in a separate package, gambas2-dev, as > you requested some time ago. > > So a separate package gambas2-script depending on gambas2-runtime and > gambas2-dev should be used for that new program, is the only clean > sollution. > > Daniel or put it directly in gambas-dev ? From jredrejo at ...626... Wed Oct 31 14:46:27 2007 From: jredrejo at ...626... (=?ISO-8859-1?Q?Jos=E9_Luis_Redrejo?=) Date: Wed, 31 Oct 2007 14:46:27 +0100 Subject: [Gambas-user] Problems with some events In-Reply-To: <200710281605.36004.gambas@...1...> References: <8eb28a500710260257x97b8817ha72e6e05cb595667@...627...> <200710261257.00917.gambas@...1...> <8eb28a500710260528r3cbee6a4h8a5fb743d16b515e@...627...> <200710281605.36004.gambas@...1...> Message-ID: <8eb28a500710310646q2b1b22balfbd2c2cda1cd631e@...627...> 2007/10/28, Benoit Minisini : > > On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > > 2007/10/26, Benoit Minisini : > > > On vendredi 26 octobre 2007, Jos? Luis Redrejo wrote: > > > > Tested with versions 1.9.50 & 1.9.90 in Debian, with object FileView > > > > > > using > > > > > > > form component: > > > > - with gb.gtk component, click event doesn't raise > > > > - with gb.qt component, drop event doesn't raise > > > > > > > > Regards. > > > > Jos? L. > > > > > > Please can you provide me more details, and especially a little > project > > > example that shows the problem? > > > > > > Thanks in advance. > > > > Sure, but it's quite simple, started a new project with only one form > and a > > FileView object, and try to catch these events with breakpoints. Switch > > from qt to gtk components to check which are working. > > Attached is the example I used. > > > > Regards. > > Apparently, GTK+ has no equivalent for Click event in IconView. I found a > workaround, and you have the fix in the last revision. Ok, thanks. As for the Drop event, it should not raise in gb.gtk actually. For the same > reason as Double click event should not raise too: FileView is not a real > control, it is a container that embeds other controls. > > The DblClick, Drop, and other control events of FileView are for the > container, not for the inner control. So you should not able to get them, > as > the inner controls recover the container completely. So, how could I get the information of a dropped file over a FileView control? That's a very typical use of a "FileView" in an application: dragging and dropping files from Nautilus o Konqueror to add files to a directory. Now it's possible to do it with gtk, but reading your answer I guess you're going to modify it to behave as in qt, where these events can not be reached. Regards. From david_villalobos_c at ...43... Wed Oct 31 16:09:06 2007 From: david_villalobos_c at ...43... (David Villalobos Cambronero) Date: Wed, 31 Oct 2007 08:09:06 -0700 (PDT) Subject: [Gambas-user] Language translation for Gambas IDE Message-ID: <182631.78899.qm@...1657...> Hi all, To: Beno?t, Jos? Redrejo, Daniel Campos. For Gambas 1.9.90 there are some strings without translate, I have translated them and update others that has minor mistakes. Do you want ot use this file? or maybe add a translation for spanish Costa Rica. I think the translation for Spian is ok. By the way: Jos? and Daniel if you want I can help you with translations. If you you decide to use this file, I'll send you tomorrow. Best regards. David __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From steven at ...1652... Wed Oct 31 17:10:06 2007 From: steven at ...1652... (Steven Lobbezoo) Date: Wed, 31 Oct 2007 17:10:06 +0100 Subject: [Gambas-user] Gridview In-Reply-To: <200710311345.09754.steven@...1652...> References: <200710291716.41984.steven@...1652...> <200710311249.40324.gambas@...1...> <200710311345.09754.steven@...1652...> Message-ID: <200710311710.06414.steven@...1652...> Le mercredi 31 octobre 2007 13:45, Steven Lobbezoo a ?crit?: > Le mercredi 31 octobre 2007 12:49, Benoit Minisini a ?crit?: > > Anyway, I changed some little things in the last revision in the way > > GridView handle its Row and Column properties. Can you try that and tell > > me if it changes anything to your bug? > > > > Regards, > > I tried, h?las : the same result! r is correct, Row does not change! > But.. > With this version the ability to look into variables just by selecting them > in the code while in step mode is back ! Works just fine now. > But ...... > The database has changed... I suddenly get all kind of weird characters > where the french accents should be. So, are you translating something auto > now ? Solved by inserting this, just after opening the database (mysql) : Res = .db.Exec("SET NAMES 'latin1'") Steven > > Regards, > Steven > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user From fredrik_hansson at ...1788... Wed Oct 31 20:19:04 2007 From: fredrik_hansson at ...1788... (Fredrik Hansson) Date: Wed, 31 Oct 2007 20:19:04 +0100 Subject: [Gambas-user] Gambas still looks ugly Message-ID: <4728D528.8060400@...1788...> Hi, I applied the fix for the bug where qt3 caused Gambas to open up in crazy sizes, fonts etc. Now it opens up, but: * fonts are way too small * the window of my application is set to 800x600 in my code, but it's far too small * foreground color seems to be = background color in the editor, welcome screen etc (and also in qtconfig!) making it almost impossible to work I know it's not Gamba's fault - but is there a way to get it right? All this started when I made: 1. a fresh install of Ubuntu 7.10 i386 (Ubuntustudio) - I use Gnome 2. Ubuntu's Gambas2 = 1.9.49 /Fredrik H From rohnny at ...1248... Wed Oct 31 20:54:08 2007 From: rohnny at ...1248... (R. Stormo) Date: Wed, 31 Oct 2007 12:54:08 -0700 (PDT) Subject: [Gambas-user] Gambas still looks ugly In-Reply-To: <4728D528.8060400@...1788...> References: <4728D528.8060400@...1788...> Message-ID: <13517447.post@...1379...> Fredrik Hansson-3 wrote: > > Hi, > > I applied the fix for the bug where qt3 caused Gambas to open up in > crazy sizes, fonts etc. Now it opens up, but: > * fonts are way too small > * the window of my application is set to 800x600 in my code, but it's > far too small > * foreground color seems to be = background color in the editor, welcome > screen etc (and also in qtconfig!) making it almost impossible to work > I know it's not Gamba's fault - but is there a way to get it right? > > All this started when I made: > 1. a fresh install of Ubuntu 7.10 i386 (Ubuntustudio) - I use Gnome > 2. Ubuntu's Gambas2 = 1.9.49 > > /Fredrik H > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > > Try to change the size with qt3-config. Been sayd that it's the Ubuntu that cause this. Worked for me. Regards R. Stormo My Gambas Community http://gambasforum.tk -- View this message in context: http://www.nabble.com/Gambas-still-looks-ugly-tf4727312.html#a13517447 Sent from the gambas-user mailing list archive at Nabble.com. From fredrik_hansson at ...1788... Wed Oct 31 21:34:21 2007 From: fredrik_hansson at ...1788... (Fredrik Hansson) Date: Wed, 31 Oct 2007 21:34:21 +0100 Subject: [Gambas-user] SOLVED Gambas looks ugly Message-ID: <4728E6CD.8080808@...1788...> Changing /etc/qt3/qtrc isn't enough - it only makes the root able to run for example Gambas in a normal looking way (and I know I shouldn't run as root in GUI...) It's necessary to copy the files from /etc/qt3 to the user's home, in my case /home/fredrik/.qt /Fredrik From dcamposf at ...626... Wed Oct 31 23:06:34 2007 From: dcamposf at ...626... (Daniel Campos) Date: Wed, 31 Oct 2007 23:06:34 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <200710311431.00619.gambas.fr@...626...> References: <200710311253.37766.gambas@...1...> <200710311335.49592.gambas@...1...> <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> <200710311431.00619.gambas.fr@...626...> Message-ID: <7259b5ae0710311506g67caabefs373fd2e32d411ae5@...627...> > > or put it directly in gambas-dev ? No, "dev" is for "developement", an interpreter has nothing to do with that Daniel From gambas.fr at ...626... Wed Oct 31 23:50:46 2007 From: gambas.fr at ...626... (Fabien Bodard) Date: Wed, 31 Oct 2007 23:50:46 +0100 Subject: [Gambas-user] Gambas scripter In-Reply-To: <7259b5ae0710311506g67caabefs373fd2e32d411ae5@...627...> References: <200710311253.37766.gambas@...1...> <200710311335.49592.gambas@...1...> <7259b5ae0710310542j7ce3c4f7n6bd1e9674ff00851@...627...> <200710311431.00619.gambas.fr@...626...> <7259b5ae0710311506g67caabefs373fd2e32d411ae5@...627...> Message-ID: <6324a42a0710311550h391dd534p156f778dc0338be7@...627...> ok :-) 2007/10/31, Daniel Campos : > > > > > or put it directly in gambas-dev ? > > No, "dev" is for "developement", an interpreter has nothing to do with > that > > Daniel > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user >