From karl.reinl at ...9... Sat Feb 1 00:01:53 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 01 Feb 2003 00:01:53 +0100 Subject: [Gambas-user] message References: <3E3ACEF2.4040101@...9...> <200301312335.16796.gambas@...1...> Message-ID: <3E3B0061.4060105@...9...> Beno?t Minisini schrieb: >Le Vendredi 31 Janvier 2003 20:30, Charlie a ?crit : > > >>Salut Banoit, >> >>why Message is case sensitive and other classes not ? >> >>amicalement >>charlie >> >> >> >> > >What do you mean by that ? > > > a 'message.info' creates an Error, I have to change this to 'Message.info' so message.info<>Message.info Charlie From karl.reinl at ...9... Sat Feb 1 00:11:49 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 01 Feb 2003 00:11:49 +0100 Subject: [Gambas-user] Application References: <3E3AD03C.7000808@...9...> <200301312334.48830.gambas@...1...> Message-ID: <3E3B02B5.3020302@...9...> Beno?t Minisini schrieb: >Le Vendredi 31 Janvier 2003 20:36, Charlie a ?crit : > > >>Salut Benoit, >> >>is it nessecery to have to different Applications one in gb and the >>other in gb.qt ? >> >>regards Charlie >> >> >> >> >> > >Yes. > >The Application class in gb.qt extends the Application class in gb by adding >it new properties. I find this very powerful, don't you ? > >Regards, > > > May be you find it powerful, but it is not lined up, I mean have a class/property in a library and find the same name for a class/property in aother, thats seams suspect in the way you ask where can two class/property in two libraries existe without (don'T know the word in english) collision. charlie From karl.reinl at ...9... Sat Feb 1 00:13:44 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 01 Feb 2003 00:13:44 +0100 Subject: [Gambas-user] Objects on a Form III References: <3E385369.6020408@...9...> <200301300035.39008.abidoo.too@...11...> <3E3AD893.9010907@...9...> <200301312333.38464.gambas@...1...> Message-ID: <3E3B0328.1030800@...9...> Beno?t Minisini schrieb: >Le Vendredi 31 Janvier 2003 21:12, Charlie a ?crit : > > >>>>Salut Benoit and all gambas - mailers, >>>> >>>>I still looking for a possibiliety to access to the objects on a Form. >>>>In the IDE it is made by scanning the *.form file, but is it possible to >>>>do it >>>>in a program ? >>>>Like Form.objects or something like that. >>>>I need to access to the form.object.proberties. >>>> >>>>amicalement >>>> >>>>charlie >>>> >>>> >>>Salut >>>It's really simple !!! >>> >>>Form is a container and a control >>>so look at the container properti in the componant explorer >>> >>>''// >>>Dim hControl as Control >>>Dim Counter as Integer >>> >>>For Each hControl in Me.Children >>> Counter = Counter + 1 >>> Print hControle.With >>>Next >>>Message.Info ("There is " & str(Counter) & "Control in this Form") >>> >>>END >>> >>>Fabien >>> >>> >>Salut , >> >>this works well for all Controls on 'the first flor' only. >>I got mor informations on >> >>DIM hControl AS Object >> >>But wow can I find out the Containers and theire Controls ? >>How can I aske for the kids ? >> >>I turned Objects,Containers and Controls! >> >>Is theire a roadmap ? >> >>Charlie >> >> >> >> > >Hi Charlie, > >you can find controls by recursively examining containers. Maybe I will create >a Form.Controls property to get all controls in one shot. > >Regards, > >Had problems, 1st element was a Button so an Error raised. > Charlie From gambas at ...1... Sat Feb 1 00:37:25 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sat, 1 Feb 2003 00:37:25 +0100 Subject: [Gambas-user] message In-Reply-To: <3E3B0061.4060105@...9...> References: <3E3ACEF2.4040101@...9...> <200301312335.16796.gambas@...1...> <3E3B0061.4060105@...9...> Message-ID: <200302010037.25995.gambas@...1...> Le Samedi 1 F?vrier 2003 00:01, Charlie a ?crit : > Beno?t Minisini schrieb: > >Le Vendredi 31 Janvier 2003 20:30, Charlie a ?crit : > >>Salut Banoit, > >> > >>why Message is case sensitive and other classes not ? > >> > >>amicalement > >>charlie > > > >What do you mean by that ? > > a 'message.info' creates an Error, I have to change this to 'Message.info' > so message.info<>Message.info > > Charlie > > It is a compiler problem. It supposes that an identifier is a class name if it begins with a capital letter. To tell the compiler that "message" is a class, just add a line "CLASS message" at the beginning of the class source code. Regards, -- Beno?t Minisini mailto:gambas at ...1... From jochen.georges at ...22... Sat Feb 1 06:28:58 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Sat, 1 Feb 2003 06:28:58 +0100 Subject: [Gambas-user] bug in function Trim(string) ? Message-ID: <200302010625.27645@...24...> hello gambasians is this a bug? my code: Label1.Text = Trim("aa bb cc dd") the label shows : "aa bb cc dd" but it should show : "aabbccdd". thanks for any hint beste gruesse jochen From karl.reinl at ...9... Sat Feb 1 15:18:58 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 01 Feb 2003 15:18:58 +0100 Subject: [Gambas-user] bug in function Trim(string) ? References: <200302010625.27645@...24...> Message-ID: <3E3BD752.7020408@...9...> Jochen Georges schrieb: >hello gambasians > >is this a bug? > >my code: >Label1.Text = Trim("aa bb cc dd") > >the label shows : "aa bb cc dd" >but it should show : "aabbccdd". > > >thanks for any hint > > >beste gruesse >jochen > > > Salut Jochen, no it works right. Trim leaves only leading and following blanks (whitspaces). - You can use it to compare Strings from a User input if Trim (" gambas ") = "gambas" then or better (if you work with a System who is not Case Sensitive ): if Upper$(Trim (" Gambas ")) = "GAMBAS" then - or returned String, if you want to know for exsample if there is something in the String. sReturn = " " if len(sReturn) > 0 then ' here it is 8 and you print 8 blanks Print sReturn else Print "Empty String" endif if len(Trim(sReturn)) > 0 then ' here it is 0 and you print "Empty String" Print sReturn else Print "Empty String" endif You have also Ltrim$ and Rtrim$ Charlie From abidoo.too at ...11... Sun Feb 2 00:27:20 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Sun, 2 Feb 2003 00:27:20 +0100 Subject: [Gambas-user] Re: Gambas-user -- confirmation of subscription -- request 946641 In-Reply-To: References: Message-ID: <200302020027.20753.abidoo.too@...11...> Le Dimanche 2 F?vrier 2003 00:23, gambas-user-request at ...66...et a ?crit : > Gambas-user -- confirmation of subscription -- request 946641 > > We have received a request from 80.9.21.169 for subscription of your > email address, , to the > gambas-user at lists.sourceforge.net mailing list. To confirm the > request, please send a message to > gambas-user-request at lists.sourceforge.net, and either: > > - maintain the subject line as is (the reply's additional "Re:" is > ok), > > - or include the following line - and only the following line - in the > message body: > > confirm 946641 > > (Simply sending a 'reply' to this message should work from most email > interfaces, since that usually leaves the subject line in the right > form.) > > If you do not wish to subscribe to this list, please simply disregard > this message. Send questions to > gambas-user-admin at ...65... From abidoo.too at ...11... Sun Feb 2 00:34:04 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Sun, 2 Feb 2003 00:34:04 +0100 Subject: [Gambas-user] Change my mailbox Message-ID: <200302020034.04449.abidoo.too@...11...> I've changed my mailBox It's to separate Private mail and the many gambas mail New mail address : Gambasfr at ...11... Fabien From nigel at ...38... Sun Feb 2 13:00:42 2003 From: nigel at ...38... (Nigel GERRARD) Date: Sun, 2 Feb 2003 12:00:42 -0000 Subject: [Gambas-user] dammed click , next dance References: <3E2C8410.6020201@...9...> <000901c2c143$54532560$020a0a0a@...55...> <3E2DC5DC.5080505@...9...> <000b01c2c2fb$0b31fb40$020a0a0a@...55...> <3E384A93.1060705@...9...> Message-ID: <000a01c2cab2$b9990d40$020a0a0a@...55...> I'll have a look, but I've suddenly got a heavy workload on so it might take some time to get around it. Nigel ----- Original Message ----- From: "Charlie" To: Sent: Wednesday, January 29, 2003 9:41 PM Subject: [Gambas-user] dammed click , next dance > Salut Gerrrard, > > it dont like empty lines, thats not your problem, OK. > but see this. > '---- 1 ----------------------------------------------------------- > Public do this() > '----- 2 ---------------------------------------------------------- > now you press Enter behind () > You find : > '---- 1 ----------------------------------------------------------- > Public do this() > '----- 2 ----------- > > > End > ----------------------------------------------- > > Are you still passioned to look at this ? > > Thanks > Charlie > > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user > From karl.reinl at ...9... Mon Feb 3 00:49:21 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 03 Feb 2003 00:49:21 +0100 Subject: [Gambas-user] news from TomySql Message-ID: <3E3DAE81.1000700@...9...> Salut, set a new 'last source copy from TomySql. 1. Added Contextmenus to Database and Tables in Tree. (but not all have real Functions behind) 2. Found out a little more about mysql login system (I tried what happend if I drop the mysql Database [yes you can]) and so I had to change all access - function to mysql. 3. My sharetime to work on this projekt will be less for one or two weeks (again zero), because I have importend paper stuff to do, so I release this lastCopy in this state. see you later, and have fun. amicalement Charlie PS. don't forget Jochen, he's always pleased to get your hint for his page. From elentirmo at ...20... Mon Feb 3 12:07:31 2003 From: elentirmo at ...20... (Marco Bauer) Date: Mon, 03 Feb 2003 12:07:31 +0100 Subject: [Gambas-user] GridView control Message-ID: <200302031207.31818.elentirmo@...20...> Hi everybody, I'm experimenting on writing a kind of spreadsheet-application. What I want to know is if there is a way to display a clickable top-row and left-column as in KSpread with the GridView control. Gru? Marco From karl.reinl at ...9... Mon Feb 3 19:58:56 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 03 Feb 2003 19:58:56 +0100 Subject: [Gambas-user] bad news from TomySql Message-ID: <3E3EBBF0.70904@...9...> Sorry guys, with the lastSourceCopy from early this morning, I checked also the Fuser.classe with a call to MFormChk.cForm ( last line in ScreenInit) out. Please Comment or delet this line. There I started to read the components on a Form, before I started a Testproject. mea culpa Charlie From abidoo.too at ...11... Tue Feb 4 21:27:18 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Tue, 4 Feb 2003 21:27:18 +0100 Subject: [Gambas-user] Gambas 0.44 is ready Message-ID: <200302042127.18543.abidoo.too@...11...> You can find the new package on the gambas Site http://gambas.sourceforge.net/gambas-0.44.tar.gz Fabien From jochen.georges at ...22... Wed Feb 5 13:58:52 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Wed, 5 Feb 2003 13:58:52 +0100 Subject: [Gambas-user] mouse events Message-ID: <200302051331.3270@...24...> hello gambasians, is it possible to get the coordinates of the point where the mouse clicks a form (or another widget) ? thanks for any hint. beste gruesse jochen p.s.: in java it could be like this: import java.awt.Graphics; import java.awt.Color; import java.awt.Event; public class Spots extends java.applet.Applet{ final int MAXSPOTS =10; int xspots[] = new int[MAXSPOTS]; int yspots[] = new int[MAXSPOTS]; int currspots = 0; public void init(){ setBackground(Color.orange); }//init public boolean mouseDown(Event e, int x, int y){ if (currspots < MAXSPOTS){ addspot(x, y); return true; }else{ System.out.println("Too many spots."); return false; }//if-else }//mouseDown void addspot (int x, int y){ xspots[currspots] = x; yspots[currspots] = y; currspots++; repaint(); }//addspot public void paint(Graphics g){ g.setColor(Color.blue); for (int i = 0; i hello i installed gambas 0.44 ### some widget-sizes are to small: in the select a project dialog for example: "look into" "show hidden file" ### if i close gambas, the property-editor is not close anyway beste gruesse jochen From abidoo.too at ...11... Wed Feb 5 21:02:48 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Wed, 5 Feb 2003 21:02:48 +0100 Subject: [Gambas-user] mouse events In-Reply-To: <200302051331.3270@...24...> References: <200302051331.3270@...24...> Message-ID: <200302052102.48590.abidoo.too@...11...> Le Mercredi 5 F?vrier 2003 13:58, Jochen Georges a ?crit : > hello gambasians, > > is it possible to get the coordinates of the point where the mouse > clicks a form (or another widget) ? > > thanks for any hint. > > beste gruesse > jochen > > > p.s.: > in java it could be like this: > > > import java.awt.Graphics; > import java.awt.Color; > import java.awt.Event; > > public class Spots extends java.applet.Applet{ > final int MAXSPOTS =10; > int xspots[] = new int[MAXSPOTS]; > int yspots[] = new int[MAXSPOTS]; > int currspots = 0; > > public void init(){ > setBackground(Color.orange); > }//init > > public boolean mouseDown(Event e, int x, int y){ > if (currspots < MAXSPOTS){ > addspot(x, y); > return true; > }else{ > System.out.println("Too many spots."); > return false; > }//if-else > }//mouseDown > > void addspot (int x, int y){ > xspots[currspots] = x; > yspots[currspots] = y; > currspots++; > repaint(); > }//addspot > > public void paint(Graphics g){ > g.setColor(Color.blue); > for (int i = 0; i g.fillOval(xspots[i] - 10, yspots[i] -10, > 20, 20); > }//for > }//paint > }//class Spots > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user Salut Jochen Use the MouseUp event It return 3 diferent value Button Mouse X Mouse Y Fabien From jochen.georges at ...22... Thu Feb 6 14:50:31 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Thu, 6 Feb 2003 14:50:31 +0100 Subject: [Gambas-user] mouse events In-Reply-To: <200302052102.48590.abidoo.too@...11...> References: <200302051331.3270@...24...> <200302052102.48590.abidoo.too@...11...> Message-ID: <200302061445.16603@...24...> On Wednesday 05 February 2003 21:02, Fabien BODARD wrote: > Le Mercredi 5 F?vrier 2003 13:58, Jochen Georges a ?crit : > > hello gambasians, ................snip > Salut Jochen > > Use the MouseUp event > hi fabien/gambasians thanks. are there any other mouse events? like mouse.dragged, mouse.moved, mouse.entered .....? i tried out some possible stuff and had a look in the compnent explorer but i was not lucky. thanks for all hints jochen From abidoo.too at ...11... Thu Feb 6 21:13:14 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Thu, 6 Feb 2003 21:13:14 +0100 Subject: [Gambas-user] mouse events In-Reply-To: <200302061445.16603@...24...> References: <200302051331.3270@...24...> <200302052102.48590.abidoo.too@...11...> <200302061445.16603@...24...> Message-ID: <200302062113.14355.abidoo.too@...11...> Le Jeudi 6 F?vrier 2003 14:50, Jochen Georges a ?crit : > On Wednesday 05 February 2003 21:02, Fabien BODARD wrote: > > Le Mercredi 5 F?vrier 2003 13:58, Jochen Georges a ?crit : > > > hello gambasians, > > ................snip > > > Salut Jochen > > > > Use the MouseUp event > > hi fabien/gambasians > > thanks. > > are there any other mouse events? > like mouse.dragged, mouse.moved, mouse.entered .....? > i tried out some possible stuff and had a look in the compnent > explorer but i was not lucky. > > > thanks for all hints > jochen > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user Hello Jochen Top know all the events of a form or a control Click on it with the mouse right button in the popup menu you can see event and in it you select the event that you want. The ide write automaticly (hem) in the editor the sub header of the event. Test and see I have used 3 mouse events in the CSplit.Class in the 0.44 version. see it Your site is very practical you know. why not in php for speed the search(but i don't know php) Fabien From jochen.georges at ...22... Thu Feb 6 22:16:15 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Thu, 6 Feb 2003 22:16:15 +0100 Subject: [Gambas-user] threads? Message-ID: <200302062214.51476@...24...> hi, it's me again. what's about threads with gambas? thanks for all hints. jochen From jochen.georges at ...22... Thu Feb 6 22:16:36 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Thu, 6 Feb 2003 22:16:36 +0100 Subject: [Gambas-user] mouse events In-Reply-To: <200302062113.14355.abidoo.too@...11...> References: <200302051331.3270@...24...> <200302061445.16603@...24...> <200302062113.14355.abidoo.too@...11...> Message-ID: <200302062139.40386@...24...> On Thursday 06 February 2003 21:13, Fabien BODARD wrote: hi > Hello Jochen > > Top know all the events of a form or a control > Click on it with the mouse right button > > in the popup menu you can see event and in it you select the > event that you want. unbelievable, i did not see this 'til now. tse. but that's cool! ....... snip > Your site is very practical you know. why not in php for speed > the search(but i don't know php) me neither. if there's anybody who does ..... contact me! beste gruesse jochen From xingotiger at ...67... Fri Feb 7 05:47:56 2003 From: xingotiger at ...67... (Joseph Montanez) Date: Fri, 07 Feb 2003 04:47:56 +0000 Subject: [Gambas-user] Converting strings? Message-ID: This is probably a stupid questio here, but I cant seem to find anything on converting stings into numbers. I am tring to have a user enter numbers into a textbox and convert that into number to be calculated. And ideas on it? _________________________________________________________________ Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 From jochen.georges at ...22... Fri Feb 7 08:43:55 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Fri, 7 Feb 2003 08:43:55 +0100 Subject: [Gambas-user] Converting strings? In-Reply-To: References: Message-ID: <200302070841.56916@...24...> On Friday 07 February 2003 05:47, Joseph Montanez wrote: > This is probably a stupid questio here, but I cant seem to find > anything on converting stings into numbers. > > I am tring to have a user enter numbers into a textbox and > convert that into number to be calculated. And ideas on it? > hi you can use CInt to convert the Strings in Integer and CStr to convert the Integer into String beste gruesse jochen p.s. have a look at the easy gambas doku i will add a chapter "how to convert strings" right now From jochen.georges at ...22... Fri Feb 7 09:31:07 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Fri, 7 Feb 2003 09:31:07 +0100 Subject: [Gambas-user] Converting strings Number II In-Reply-To: References: Message-ID: <200302070928.21510@...24...> On Friday 07 February 2003 05:47, Joseph Montanez wrote: > This is probably a stupid questio here, but I cant seem to find > anything on converting stings into numbers. > > I am tring to have a user enter numbers into a textbox and > convert that into number to be calculated. And ideas on it? > number II: hi, it seems to be not so easy as i thought: the functions i mentionened do not seem to be the only ones. have a look at : Str$() and Val() also. beste gruesse jochen From gambas at ...1... Fri Feb 7 11:34:39 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 7 Feb 2003 11:34:39 +0100 Subject: [Gambas-user] Converting strings Number II In-Reply-To: <200302070928.21510@...24...> References: <200302070928.21510@...24...> Message-ID: <200302071134.39177.gambas@...1...> Le Vendredi 7 F?vrier 2003 09:31, Jochen Georges a ?crit : > On Friday 07 February 2003 05:47, Joseph Montanez wrote: > > This is probably a stupid questio here, but I cant seem to find > > anything on converting stings into numbers. > > > > I am tring to have a user enter numbers into a textbox and > > convert that into number to be calculated. And ideas on it? > > number II: > > hi, > > it seems to be not so easy as i thought: > > the functions i mentionened do not seem to be the only ones. > have a look at : Str$() and Val() also. > > beste gruesse > jochen > The difference between Str and CStr is explained in the Encyclopaedia. Be careful, it is inverted with Visual Basic ! Regards, -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Fri Feb 7 11:36:17 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 7 Feb 2003 11:36:17 +0100 Subject: [Gambas-user] threads? In-Reply-To: <200302062214.51476@...24...> References: <200302062214.51476@...24...> Message-ID: <200302071136.17880.gambas@...1...> Le Jeudi 6 F?vrier 2003 22:16, Jochen Georges a ?crit : > hi, > > it's me again. > > what's about threads with gambas? > > thanks for all hints. > > jochen > > The Gambas interpreter is single threaded. A multi threaded is too complicated for me to program, because many glibc functions are not thread-safe, and for many other reasons. Regards, -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Fri Feb 7 11:40:34 2003 From: gambas at ...1... (=?iso-8859-15?q?Beno=EEt=20Minisini?=) Date: Fri, 7 Feb 2003 11:40:34 +0100 Subject: [Gambas-user] GridView control In-Reply-To: <200302031207.31818.elentirmo@...20...> References: <200302031207.31818.elentirmo@...20...> Message-ID: <200302071140.34316.gambas@...1...> Le Lundi 3 F?vrier 2003 12:07, Marco Bauer a ?crit : > Hi everybody, > > I'm experimenting on writing a kind of spreadsheet-application. What I want > to know is if there is a way to display a clickable top-row and left-column > as in KSpread with the GridView control. > > Gru? > Marco > > Hmm, not at the moment. A spreadsheet application would need the complete implementation of the QTable QT widget... As the GridView control is based on the QTable widget, maybe extending its interface should be sufficient. I note this request in my brain :-) Regards, -- Beno?t Minisini mailto:gambas at ...1... From darrell at ...68... Fri Feb 7 18:55:53 2003 From: darrell at ...68... (Darrell Blake) Date: Fri, 7 Feb 2003 17:55:53 +0000 Subject: [Gambas-user] QT Problem when Installing Message-ID: <200302071755.53092.darrell@...68...> Hi, When I run make install I'm getting the following error... Creating the library info files... gb.eval.info gb.example.info gb.info gb.qt.editor.info /opt/gambas/lib/lib.gb.qt.editor.la: /usr/lib/qt-3.0.5/lib/libqt-mt.so.3: undefined symbol: _Unwind_GetIP gb.qt.ext.info /opt/gambas/lib/lib.gb.qt.ext.la: /usr/lib/qt-3.0.5/lib/libqt-mt.so.3: undefined symbol: _Unwind_GetIP gb.qt.info /opt/gambas/lib/lib.gb.qt.la: /usr/lib/qt-3.0.5/lib/libqt-mt.so.3: undefined symbol: _Unwind_GetIP make[2]: *** [install-exec-local] Error 1 make[2]: Leaving directory `/home/redneon/gambas-0.44' make[1]: *** [install-am] Error 2 make[1]: Leaving directory `/home/redneon/gambas-0.44' make: *** [install-recursive] Error 1 [root at ...40... gambas-0.44]# I'm running qt 3.0.5 as you can see but it seems to have a problem with it. Please help, Darrell From gambas at ...1... Fri Feb 7 21:02:09 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 7 Feb 2003 21:02:09 +0100 Subject: [Gambas-user] QT Problem when Installing In-Reply-To: <200302071755.53092.darrell@...68...> References: <200302071755.53092.darrell@...68...> Message-ID: <200302072102.09987.gambas@...1...> Le Vendredi 7 F?vrier 2003 18:55, Darrell Blake a ?crit : > Hi, > > When I run make install I'm getting the following error... > > Creating the library info files... > gb.eval.info > gb.example.info > gb.info > gb.qt.editor.info > /opt/gambas/lib/lib.gb.qt.editor.la: /usr/lib/qt-3.0.5/lib/libqt-mt.so.3: > undefined symbol: _Unwind_GetIP > gb.qt.ext.info > /opt/gambas/lib/lib.gb.qt.ext.la: /usr/lib/qt-3.0.5/lib/libqt-mt.so.3: > undefined symbol: _Unwind_GetIP > gb.qt.info > /opt/gambas/lib/lib.gb.qt.la: /usr/lib/qt-3.0.5/lib/libqt-mt.so.3: > undefined symbol: _Unwind_GetIP > make[2]: *** [install-exec-local] Error 1 > make[2]: Leaving directory `/home/redneon/gambas-0.44' > make[1]: *** [install-am] Error 2 > make[1]: Leaving directory `/home/redneon/gambas-0.44' > make: *** [install-recursive] Error 1 > [root at ...40... gambas-0.44]# > > I'm running qt 3.0.5 as you can see but it seems to have a problem with it. > > Please help, > > Darrell > I think you are an unlucky RedHat 8.0 user... Do you ? I will receive my new computer next week. I will then install RedHat on it, and will be able to solve this problem. Regards, -- Beno?t Minisini mailto:gambas at ...1... From xingotiger at ...67... Sat Feb 8 18:59:11 2003 From: xingotiger at ...67... (Joseph Montanez) Date: Sat, 08 Feb 2003 17:59:11 +0000 Subject: [Gambas-user] More help with converting Message-ID: Ok So I think I know how to convert from numbers to letters but I am having problems becuase I convert letters into numbers then back into letters (interger and strings). Now I can gt a user to enter number and display then as intergers in a textbox, but when I try adding the convert numbers to the class I make: mathvaribles(x,y) "and I set each textbox up as like x1, x2, y1 ect" eq1 = mathvaribles(x1,y1) The I try to print eq1 into a textbox, then I i gotta convert it, eq1 = IsNull(Str$(eq1)) Now I amready did public declaring and the instant constructor thing (i think I did it right) yet when i run it, it gives me "-1" Can anyone help me? http://xingo.filetap.com/Domyhomework <--- the director in which the files are in please look at them _________________________________________________________________ The new MSN 8: smart spam protection and 2 months FREE* http://join.msn.com/?page=features/junkmail From gambas at ...1... Sat Feb 8 22:25:27 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sat, 8 Feb 2003 22:25:27 +0100 Subject: [Gambas-user] More help with converting In-Reply-To: References: Message-ID: <200302082225.27300.gambas@...1...> Le Samedi 8 F?vrier 2003 18:59, Joseph Montanez a ?crit : > Ok So I think I know how to convert from numbers to letters but I am having > problems becuase I convert letters into numbers then back into letters > (interger and strings). Now I can gt a user to enter number and display > then as intergers in a textbox, but when I try adding the convert numbers > to the class I make: > > mathvaribles(x,y) "and I set each textbox up as like x1, x2, y1 ect" > eq1 = mathvaribles(x1,y1) > The I try to print eq1 into a textbox, then I i gotta convert it, > eq1 = IsNull(Str$(eq1)) > Now I amready did public declaring and the instant constructor thing (i > think I did it right) yet when i run it, it gives me "-1" Can anyone help > me? > > http://xingo.filetap.com/Domyhomework <--- the director in which the files > are in please look at them > Hi Joseph, You got totally confused ! :-) IsNull() returns a boolean. It tells if its argument is NULL or not. If you store its result in an integer variable, the boolean is implicitely converted into 0 or -1. So your result ! To put the TextBox contents into a integer variable, do : DIM v AS Variant v = Val(hTextBox.Text) if IsNull(v) then goto _ERROR ' This is not a number To transform a number into a string, use Str$() if you have used Val(), or CStr() if you have used CInt(). You can use the TRY instruction to catch error in these convertion functions. Regards, -- Beno?t Minisini mailto:gambas at ...1... From karl.reinl at ...9... Sat Feb 8 22:30:04 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 08 Feb 2003 22:30:04 +0100 Subject: [Gambas-user] More help with converting References: Message-ID: <3E4576DC.5060707@...9...> SORRY Joseph, thats bullshit. Starting at Zero: Programming is to descripe the whole way. If you say to a about 6 year old child to 'take Bread ', it knows wath to do. To explaine this to a computer, by a, I don't know which programming language. What do you think, what's to do ? And allways remember: a Computer can't think, has no assosiations and does strikly what is 'said'. The 'take bread' you have to strip in all his parts. And 'take bread' includes also, after having the bread, comming back home. Do you know that: 'Finaly right done, it workes' Sorry had been as negative. Charlie From xingotiger at ...67... Sun Feb 9 00:49:48 2003 From: xingotiger at ...67... (Joseph Montanez) Date: Sat, 08 Feb 2003 23:49:48 +0000 Subject: [Gambas-user] More help with converting Message-ID: Its ok I can takes it I am still fairly new at this, None of this is supose to work yet I am just tring things out, I have found gambas much easier then any language ever, since it come with an interface tool already it flows way over python. The reaosn I asked for help was becuase I was at the point of where I dont even know what I am doing now... I used "IsNull" becuase when I ran the application it needed the x1 and stuff to have stuff in them I already see you guys helping me out which I know is a lot to ask for. This is just a standing point for me, after I can fix things and unstand gambas more, then I can start making my application to work with apache So I can monitor apache more, I just dont want to jump in, I've learn from to many things hehe and I am just learning more from you. I'd rather have someone says you suck, so I can improve. I am sorry for the crappy typos I am just busy with my server and web designing _________________________________________________________________ Protect your PC - get McAfee.com VirusScan Online http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 From jochen.georges at ...22... Sun Feb 9 06:52:48 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Sun, 9 Feb 2003 06:52:48 +0100 Subject: [Gambas-user] CStr - localization Message-ID: <200302090651.02821@...24...> hi gambasians, in the enceclopedeia stands: CStr: Converts an expression into a string. Be careful, the current localization is NOT used by this function. what is the current localization? what does that mean? thanks for all hints beste gruesse jochen From abidoo.too at ...11... Sun Feb 9 11:15:06 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Sun, 9 Feb 2003 11:15:06 +0100 Subject: [Gambas-user] CStr - localization In-Reply-To: <200302090651.02821@...24...> References: <200302090651.02821@...24...> Message-ID: <200302091115.06021.abidoo.too@...11...> Le Dimanche 9 F?vrier 2003 06:52, Jochen Georges a ?crit : > hi gambasians, > > in the enceclopedeia stands: > CStr: > Converts an expression into a string. Be careful, the current > localization is NOT used by this function. > > > what is the current localization? > what does that mean? > > > thanks for all hints > > beste gruesse > jochen > > If you japenes or greek you may have some problem...do you understand? it's for the characters style. Fabien From gambas at ...1... Sun Feb 9 11:38:07 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 9 Feb 2003 11:38:07 +0100 Subject: [Gambas-user] CStr - localization In-Reply-To: <200302091115.06021.abidoo.too@...11...> References: <200302090651.02821@...24...> <200302091115.06021.abidoo.too@...11...> Message-ID: <200302091138.08724.gambas@...1...> Le Dimanche 9 F?vrier 2003 11:15, Fabien BODARD a ?crit : > Le Dimanche 9 F?vrier 2003 06:52, Jochen Georges a ?crit : > > hi gambasians, > > > > in the enceclopedeia stands: > > CStr: > > Converts an expression into a string. Be careful, the current > > localization is NOT used by this function. > > > > > > what is the current localization? > > what does that mean? > > For example, in American : PRINT CStr(1.234) 1.234 PRINT Str$(1.234) 1.234 And in French : PRINT CStr(1.234) 1.234 PRINT Str$(1.234) 1,234 Str$ uses the current application language stored in the LANG and LC_* environment variables. CStr does not ! -- Beno?t Minisini mailto:gambas at ...1... From jochen.georges at ...22... Tue Feb 11 21:04:24 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Tue, 11 Feb 2003 21:04:24 +0100 Subject: [Gambas-user] write a binary file Message-ID: <200302112057.51188@...24...> hello gambasians, this is the next of my 1001 questions ;-) i have got an object of the selfdefined class CCar the name of the object is car i want to save car in a file, but i do not know how: i tried different things, but ..... this way i got a type missmatch: PUBLIC SUB MenuSave_Click() MyFile AS File 'OPEN "test.jgf" FOR WRITE DIRECT AS MyFile OPEN "test.jgf" FOR CREATE DIRECT AS MyFile WRITE #MyFile, car CLOSE MyFile END thanks for any help. beste gruesse jochen From jochen.georges at ...22... Tue Feb 11 21:25:28 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Tue, 11 Feb 2003 21:25:28 +0100 Subject: [Gambas-user] printer Message-ID: <200302112124.01361@...24...> hello gambasians and the next question: how can i use the class printer? the component explorer sais it can't be instantiated. a little code example would make me happy. thanks for all hints jochen From abidoo.too at ...11... Tue Feb 11 22:05:19 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Tue, 11 Feb 2003 22:05:19 +0100 Subject: [Gambas-user] write a binary file In-Reply-To: <200302112057.51188@...24...> References: <200302112057.51188@...24...> Message-ID: <200302112205.19168.abidoo.too@...11...> Le Mardi 11 F?vrier 2003 21:04, Jochen Georges a ?crit : replace OPEN "test.jgf" FOR CREATE DIRECT AS MyFile by OPEN "test.jgf" FOR CREATE DIRECT AS #MyFile fabien From abidoo.too at ...11... Tue Feb 11 22:11:21 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Tue, 11 Feb 2003 22:11:21 +0100 Subject: [Gambas-user] printer In-Reply-To: <200302112124.01361@...24...> References: <200302112124.01361@...24...> Message-ID: <200302112211.21211.abidoo.too@...11...> Le Mardi 11 F?vrier 2003 21:25, Jochen Georges a ?crit : > hello gambasians > > and the next question: > > how can i use the class printer? > the component explorer sais it can't be instantiated. > > a little code example would make me happy. > > thanks for all hints > > jochen > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user yeah it's a good idea. If benoit want to aswer.. I don't know to... maybe with the draw function ? as draw.begin(printer) draw.text(text) draw.rect(x,y,x2,y2) draw.end fabien From jochen.georges at ...22... Wed Feb 12 07:22:02 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Wed, 12 Feb 2003 07:22:02 +0100 Subject: [Gambas-user] write a binary file In-Reply-To: <200302112205.19168.abidoo.too@...11...> References: <200302112057.51188@...24...> <200302112205.19168.abidoo.too@...11...> Message-ID: <200302120718.30382@...24...> On Tuesday 11 February 2003 22:05, Fabien BODARD wrote: > Le Mardi 11 F?vrier 2003 21:04, Jochen Georges a ?crit : > > replace > > OPEN "test.jgf" FOR CREATE DIRECT AS MyFile > > by > > OPEN "test.jgf" FOR CREATE DIRECT AS #MyFile > > fabien hi fabien, gambasians thanks, but still i got an runtime error "type mismatch: wanted standard type, got CCar instead" (in the line "WRITE #MyFile, car) PUBLIC SUB MenuSave_Click() MyFile AS File OPEN "test.jgf" FOR CREATE DIRECT AS #MyFile WRITE #MyFile, car CLOSE MyFile END beste gruesse jochen From gambas at ...1... Tue Feb 11 23:58:58 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Tue, 11 Feb 2003 23:58:58 +0100 Subject: [Gambas-user] printer In-Reply-To: <200302112211.21211.abidoo.too@...11...> References: <200302112124.01361@...24...> <200302112211.21211.abidoo.too@...11...> Message-ID: <200302112358.58063.gambas@...1...> Le Mardi 11 F?vrier 2003 22:11, Fabien BODARD a ?crit : > Le Mardi 11 F?vrier 2003 21:25, Jochen Georges a ?crit : > > hello gambasians > > > > and the next question: > > > > how can i use the class printer? > > the component explorer sais it can't be instantiated. > > > > a little code example would make me happy. > > > > thanks for all hints > > > > jochen > > > > > > ------------------------------------------------------- > > This SF.NET email is sponsored by: > > SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! > > http://www.vasoftware.com > > _______________________________________________ > > Gambas-user mailing list > > Gambas-user at lists.sourceforge.net > > https://lists.sourceforge.net/lists/listinfo/gambas-user > > yeah it's a good idea. > > If benoit want to aswer.. I don't know to... maybe with the draw function > ? > > as > draw.begin(printer) > draw.text(text) > draw.rect(x,y,x2,y2) > draw.end > > fabien > > Yes ! But be careful, it was not heavily tested... :-) -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Wed Feb 12 00:02:05 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Wed, 12 Feb 2003 00:02:05 +0100 Subject: [Gambas-user] write a binary file In-Reply-To: <200302112057.51188@...24...> References: <200302112057.51188@...24...> Message-ID: <200302120002.05070.gambas@...1...> Le Mardi 11 F?vrier 2003 21:04, Jochen Georges a ?crit : > hello gambasians, > > this is the next of my 1001 questions ;-) > > i have got an object of the selfdefined class CCar > the name of the object is car > > i want to save car in a file, but i do not know how: > i tried different things, but ..... > > this way i got a type missmatch: > > PUBLIC SUB MenuSave_Click() > MyFile AS File > 'OPEN "test.jgf" FOR WRITE DIRECT AS MyFile > OPEN "test.jgf" FOR CREATE DIRECT AS MyFile > WRITE #MyFile, car > CLOSE MyFile > END > > > thanks for any help. > > beste gruesse > jochen > > Alas, at the moment, objects do not know how to write themselves to a stream. A standard format should be created for that. To solve your problem, create a public method in CCar to write each CCar field to the stream : CCar.class: PUBLIC SUB WriteTo(hFile AS File) WRITE #hFile, Field1 WRITE #hFile, Field2 ... WRITE #hFile, FieldN END But your request is not stupid :-) I add it to the gambas TODO file ! -- Beno?t Minisini mailto:gambas at ...1... From jochen.georges at ...22... Wed Feb 12 12:52:21 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Wed, 12 Feb 2003 12:52:21 +0100 Subject: [Gambas-user] write a binary file In-Reply-To: <200302120002.05070.gambas@...1...> References: <200302112057.51188@...24...> <200302120002.05070.gambas@...1...> Message-ID: <200302121245.09504@...24...> On Wednesday 12 February 2003 00:02, Beno?t Minisini wrote: hi benoit i write just to you because i do not know if it is ok to send an attachement to the list. i hope it is ok this way. > PUBLIC SUB WriteTo(hFile AS File) > WRITE #hFile, Field1 > WRITE #hFile, Field2 > ... > WRITE #hFile, FieldN > END it seems to work. i wrote a method ReadFrom(hFile AS File) also. it runs without any error but it does not seem to set the values right. if i try to display the values i got an error: "unknown symbol brand in Class CCar" can you have a look at it? thank you beste gruesse jochen -------------- next part -------------- A non-text attachment was scrubbed... Name: savebinfile.tgz Type: application/x-gzip Size: 2916 bytes Desc: not available URL: From abidoo.too at ...11... Wed Feb 12 21:07:26 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Wed, 12 Feb 2003 21:07:26 +0100 Subject: [Gambas-user] write a binary file In-Reply-To: <200302120718.30382@...24...> References: <200302112057.51188@...24...> <200302112205.19168.abidoo.too@...11...> <200302120718.30382@...24...> Message-ID: <200302122107.26263.abidoo.too@...11...> Le Mercredi 12 F?vrier 2003 07:22, Jochen Georges a ?crit : > On Tuesday 11 February 2003 22:05, Fabien BODARD wrote: > > Le Mardi 11 F?vrier 2003 21:04, Jochen Georges a ?crit : > > > > replace > > > > OPEN "test.jgf" FOR CREATE DIRECT AS MyFile > > > > by > > > > OPEN "test.jgf" FOR CREATE DIRECT AS #MyFile > > > > fabien > > hi fabien, gambasians > > thanks, but still i got an runtime error > "type mismatch: wanted standard type, got CCar instead" > (in the line "WRITE #MyFile, car) > > PUBLIC SUB MenuSave_Click() > MyFile AS File > OPEN "test.jgf" FOR CREATE DIRECT AS #MyFile > WRITE #MyFile, car > CLOSE MyFile > END > > beste gruesse > jochen > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user please send me the total source if you want an answer (tell me more). because i don't know what is CCar (a class?) and what it return. fabien From abidoo.too at ...11... Wed Feb 12 21:20:22 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Wed, 12 Feb 2003 21:20:22 +0100 Subject: [Gambas-user] write a binary file In-Reply-To: <200302120718.30382@...24...> References: <200302112057.51188@...24...> <200302112205.19168.abidoo.too@...11...> <200302120718.30382@...24...> Message-ID: <200302122120.22270.abidoo.too@...11...> Le Mercredi 12 F?vrier 2003 07:22, Jochen Georges a ?crit : > On Tuesday 11 February 2003 22:05, Fabien BODARD wrote: > > Le Mardi 11 F?vrier 2003 21:04, Jochen Georges a ?crit : > > > > replace > > > > OPEN "test.jgf" FOR CREATE DIRECT AS MyFile > > > > by > > > > OPEN "test.jgf" FOR CREATE DIRECT AS #MyFile > > > > fabien > > hi fabien, gambasians > > thanks, but still i got an runtime error > "type mismatch: wanted standard type, got CCar instead" > (in the line "WRITE #MyFile, car) > > PUBLIC SUB MenuSave_Click() > MyFile AS File > OPEN "test.jgf" FOR CREATE DIRECT AS #MyFile > WRITE #MyFile, car > CLOSE MyFile > END > > beste gruesse > jochen > > > ------------------------------------------------------- > This SF.NET email is sponsored by: > SourceForge Enterprise Edition + IBM + LinuxWorld Something 2 See! > http://www.vasoftware.com > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user hi jochen you are a funny boy, you know? change the private identifier in the CCar class by public. in fact the private synthaxe is for the data who are only used ihn their owner class fabien From karl.reinl at ...9... Wed Feb 12 22:07:48 2003 From: karl.reinl at ...9... (Charlie) Date: Wed, 12 Feb 2003 22:07:48 +0100 Subject: [Gambas-user] Application.Path Message-ID: <3E4AB7A4.6030501@...9...> Salut Benoit, found a strange thing: if you use Application.path it depends the kind how you start the Executable. using X and open the folder, click to the Executable (starting in Terminal) + OK and for me /home/charlie/ga-projects/Test/ApplicationPath/ApplicationPath I have as return /home/charlie/ga-projects/Test/ApplicationPath/ If I cd into /home/charlie/ga-projects/Test/ApplicationPath and type ApplicationPath or ./ApplicationPath the return is a '.' (a Point) So Application.path is not usable! amicalement Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: ApplicationPath.tar.gz Type: application/x-tar Size: 775 bytes Desc: not available URL: From karl.reinl at ...9... Wed Feb 12 22:12:27 2003 From: karl.reinl at ...9... (Charlie) Date: Wed, 12 Feb 2003 22:12:27 +0100 Subject: [Gambas-user] I still looking out for a way to read all Objects from a Form Message-ID: <3E4AB8BB.30202@...9...> Salut, din'T work on it much, but (or have) a result, to read out the Objects and Object.Children of a Form amicalement Charlie From karl.reinl at ...9... Wed Feb 12 22:14:06 2003 From: karl.reinl at ...9... (Charlie) Date: Wed, 12 Feb 2003 22:14:06 +0100 Subject: [Gambas-user] gambas-0.44 Message-ID: <3E4AB91E.8010709@...9...> Salut Benoit, like I said before the better on better. Thanks Charlie From karl.reinl at ...9... Wed Feb 12 22:17:20 2003 From: karl.reinl at ...9... (Charlie) Date: Wed, 12 Feb 2003 22:17:20 +0100 Subject: [Gambas-user] cd with Gambas Message-ID: <3E4AB9E0.300@...9...> Salut , how can I make a cd (change Dir) in gambas. amicalement Charlie From abidoo.too at ...11... Wed Feb 12 23:53:43 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Wed, 12 Feb 2003 23:53:43 +0100 Subject: [Gambas-user] Application.Path In-Reply-To: <3E4AB7A4.6030501@...9...> References: <3E4AB7A4.6030501@...9...> Message-ID: <200302122353.43270.abidoo.too@...11...> Le Mercredi 12 F?vrier 2003 22:07, Charlie a ?crit : > Salut Benoit, > > found a strange thing: > if you use Application.path it depends the kind how you start the > Executable. > > using X and open the folder, click to the Executable (starting in > Terminal) + OK and > for me /home/charlie/ga-projects/Test/ApplicationPath/ApplicationPath > > I have as return /home/charlie/ga-projects/Test/ApplicationPath/ > > If I cd into /home/charlie/ga-projects/Test/ApplicationPath > and type ApplicationPath or ./ApplicationPath the return is a '.' (a > Point) > > So Application.path is not usable! > > amicalement Charlie helloo i think it's logical no? the '.' says you are already in the folder /ApplicationPath test to type a 'cd .' in the console... fabien From gambas at ...1... Thu Feb 13 08:33:04 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Thu, 13 Feb 2003 08:33:04 +0100 Subject: [Gambas-user] Application.Path In-Reply-To: <3E4AB7A4.6030501@...9...> References: <3E4AB7A4.6030501@...9...> Message-ID: <200302130833.04747.gambas@...1...> Le Mercredi 12 F?vrier 2003 22:07, Charlie a ?crit : > Salut Benoit, > > found a strange thing: > if you use Application.path it depends the kind how you start the > Executable. > > using X and open the folder, click to the Executable (starting in > Terminal) + OK and > for me /home/charlie/ga-projects/Test/ApplicationPath/ApplicationPath > > I have as return /home/charlie/ga-projects/Test/ApplicationPath/ > > If I cd into /home/charlie/ga-projects/Test/ApplicationPath > and type ApplicationPath or ./ApplicationPath the return is a '.' (a > Point) > > So Application.path is not usable! > > amicalement Charlie Hum. I think it is a little bug. Application.Path should always return a absolute path. I will correct it :-) -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Thu Feb 13 08:32:19 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Thu, 13 Feb 2003 08:32:19 +0100 Subject: [Gambas-user] cd with Gambas In-Reply-To: <3E4AB9E0.300@...9...> References: <3E4AB9E0.300@...9...> Message-ID: <200302130832.19615.gambas@...1...> Le Mercredi 12 F?vrier 2003 22:17, Charlie a ?crit : > Salut , > > how can I make a cd (change Dir) in gambas. > > amicalement > > Charlie > You can't ! It's a functionnality :-) You cannot see the current directory of the process. You must always use absolute paths, relative paths being reserved to project files. If you prefer, the current directory is always the project directory. Regards, -- Beno?t Minisini mailto:gambas at ...1... From karl.reinl at ...9... Thu Feb 13 21:57:21 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 13 Feb 2003 21:57:21 +0100 Subject: [Gambas-user] cd with Gambas References: <3E4AB9E0.300@...9...> <200302130832.19615.gambas@...1...> Message-ID: <3E4C06B1.3000309@...9...> Beno?t Minisini schrieb: >Le Mercredi 12 F?vrier 2003 22:17, Charlie a ?crit : > > >>Salut , >> >>how can I make a cd (change Dir) in gambas. >> >>amicalement >> >>Charlie >> >> >> > >You can't ! It's a functionnality :-) > >You cannot see the current directory of the process. You must always use >absolute paths, relative paths being reserved to project files. > >If you prefer, the current directory is always the project directory. > >Regards, > > > OK have to read the tar man pages to find a out what I can do. I'm writing a simple Tar - tool with gambas, and my problem is, it works fine, but it stores the hole path in it. So I thougth to chang into the path and store the directory from their, this is the solution. Charlie From karl.reinl at ...9... Thu Feb 13 22:04:51 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 13 Feb 2003 22:04:51 +0100 Subject: [Gambas-user] Application.Path References: <3E4AB7A4.6030501@...9...> <200302122353.43270.abidoo.too@...11...> Message-ID: <3E4C0873.70501@...9...> Fabien BODARD schrieb: >Le Mercredi 12 F?vrier 2003 22:07, Charlie a ?crit : > > >>Salut Benoit, >> >>found a strange thing: >>if you use Application.path it depends the kind how you start the >>Executable. >> >>using X and open the folder, click to the Executable (starting in >>Terminal) + OK and >>for me /home/charlie/ga-projects/Test/ApplicationPath/ApplicationPath >> >>I have as return /home/charlie/ga-projects/Test/ApplicationPath/ >> >>If I cd into /home/charlie/ga-projects/Test/ApplicationPath >>and type ApplicationPath or ./ApplicationPath the return is a '.' (a >>Point) >> >>So Application.path is not usable! >> >>amicalement Charlie >> >> >helloo >i think it's logical no? >the '.' says you are already in the folder /ApplicationPath > >test to type a 'cd .' in the console... > Try this project under the upper contitions, in the IDE , no problem, but started in the directory it doesn't find the file. Dumas: One for all, all for one. Charlie > >fabien > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >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: INIFileHandler.tar.gz Type: application/x-tar Size: 11644 bytes Desc: not available URL: From gambas at ...1... Fri Feb 14 11:19:25 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 14 Feb 2003 11:19:25 +0100 Subject: [Gambas-user] Re: array does not work In-Reply-To: <200302132221.48293@...24...> References: <200302132221.48293@...24...> Message-ID: <200302141119.25841.gambas@...1...> Le Jeudi 13 F?vrier 2003 22:24, vous avez ?crit : > hi benoit > > when i try to run the example program Ganim, which uses arrrays i > get the error: > =cannot load class "array". unable to load class file= > > i tried to write a program myself, which uses arrays, but i got the > same error. > > is it a bug? > > beste gruesse > jochen The class array does not exist anymore. Specialized array classes have replaced it. You should read the ChangeLog file at each new version ! Instead of writing: DIM a AS NEW Array You must write: DIM a AS NEW String[] ' If you want to put strings in your array. Regards, -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Fri Feb 14 11:25:17 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 14 Feb 2003 11:25:17 +0100 Subject: [Gambas-user] Re: New gambas User (I have a bad english :-)) In-Reply-To: <000801c2d2e0$566a27a0$0101a8c0@...71...> References: <000801c2d2e0$566a27a0$0101a8c0@...71...> Message-ID: <200302141125.17977.gambas@...1...> Le Mercredi 12 F?vrier 2003 22:47, vous avez ?crit : > Hi, > I' ve just discovered Gambas: WOW. > I usually program microcontrollers (Avr,pic ...), using VisualBasic to > build the PC user interfaces for my circuits. Since now (i'm not so > familiar with 'C' programming) this was a limit in the use of linux in my > application. In order of this, reading your future prospective, i' ve see > that there is no support now and in the future to the serial ports(RS232 > for the first), limiting Gambas interaction with the external world. I > think that this can expand the Gambas 'penetration' in the industrial > application, increasing its diffusion and prestige. Stop now I i don't want > to make you sleep. > Only the last thing: it's not so obvious to make './application_Name' to > exec a Gambas_Exe for a Linux newbie like me ! > > God save Gambas :-) > > Best regards > Giordano de Stefanis > > giordano.destefanis at ...69... Hi Giordano, Under Unix, you can access any device by its special device file. I don't know what device corresponds to the RS232 port. But you can write to it in gambas by using OPEN, WRITE, READ and CLOSE. For example, to read from the midi port: DIM hMidi as File DIM iByte as BYTE OPEN "/dev/midi" FOR READ DIRECT AS #hMidi READ #hMidi, iByte ... CLOSE #hMidi Regards, -- Beno?t Minisini mailto:gambas at ...1... From giordy at ...70... Fri Feb 14 19:24:03 2003 From: giordy at ...70... (gio) Date: Fri, 14 Feb 2003 19:24:03 +0100 Subject: [Gambas-user] Re: New gambas User (I have a bad english :-)) References: <000801c2d2e0$566a27a0$0101a8c0@...71...> <200302141125.17977.gambas@...1...> Message-ID: <000701c2d456$4aa50580$0101a8c0@...71...> Hi Beno?t, thank's for the fast response to my questions. As U can see I'm a realy newbie in the Linux world, and your suggestions are really usefully for me ! I'll give U notice of my result in the future. Thank's again Giordano De Stefanis From bsnipes at ...72... Fri Feb 14 19:37:06 2003 From: bsnipes at ...72... (Brian Snipes) Date: 14 Feb 2003 12:37:06 -0600 Subject: [Gambas-user] Gambas 0.44 and QT issues Message-ID: <1045240257.29178.4.camel@...73...> I am having a similiar problem to the Mandrake 9.0 errors from a few weeks ago. Has anyone been able to determine the cause of the segfault? I am using a fresh install of Gentoo 1.4rc2 with KDE 3.1 and QT 3.1.0 . Here is my gdb output: (gdb) run Starting program: /usr/bin/gbx [New Thread 16384 (LWP 29215)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 16384 (LWP 29215)] 0x40a108a7 in _XRead () from /usr/X11R6/lib/libX11.so.6 (gdb) bt #0 0x40a108a7 in _XRead () from /usr/X11R6/lib/libX11.so.6 #1 0x40a0280d in XOpenDisplay () from /usr/X11R6/lib/libX11.so.6 #2 0x40396460 in qt_init_internal(int*, char**, _XDisplay*, unsigned long, unsigned long) () from /usr/qt/3/lib/libqt-mt.so.3 #3 0x4039724e in qt_init(int*, char**, QApplication::Type) () from /usr/qt/3/lib/libqt-mt.so.3 #4 0x403f1990 in QApplication::construct(int&, char**, QApplication::Type) () from /usr/qt/3/lib/libqt-mt.so.3 #5 0x403f165c in QApplication::QApplication(int&, char**) () from /usr/qt/3/lib/libqt-mt.so.3 #6 0x401b30f6 in my_main (argc=0xbffff6f0, argv=0xbffff744) at main.cpp:193 #7 0x08067863 in main (argc=1, argv=0xbffff744) at gbx.c:215 #8 0x40067e34 in __libc_start_main () from /lib/libc.so.6 (gdb) quit Brian Snipes From abidoo.too at ...11... Sat Feb 15 19:29:59 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Sat, 15 Feb 2003 19:29:59 +0100 Subject: [Gambas-user] Re: array does not work In-Reply-To: <200302141119.25841.gambas@...1...> References: <200302132221.48293@...24...> <200302141119.25841.gambas@...1...> Message-ID: <200302151929.59941.abidoo.too@...11...> Le Vendredi 14 F?vrier 2003 11:19, Beno?t Minisini a ?crit : > Le Jeudi 13 F?vrier 2003 22:24, vous avez ?crit : > > hi benoit > > > > when i try to run the example program Ganim, which uses arrrays i > > get the error: > > =cannot load class "array". unable to load class file= > > > > i tried to write a program myself, which uses arrays, but i got the > > same error. > > > > is it a bug? > > > > beste gruesse > > jochen > > The class array does not exist anymore. Specialized array classes have > replaced it. > > You should read the ChangeLog file at each new version ! > > Instead of writing: > > DIM a AS NEW Array > > You must write: > > DIM a AS NEW String[] ' If you want to put strings in your array. > > Regards, Hi Jochen When i've made ganim it was just to demonstrate the animation possibility with my picture (who are not really buttyful, imust to work on it when i've time). It's not really a good code because i've made it in 15 minutes. Now i can do better( Look at the benoit code in FGambas in the gambas ide project) The Array.FromString(...) was replaced by Array = Split(...) You must to know for wath it use your array (varaint[= for multi type]; String; Object, Integer, Float, Date) Declaration : Dim arAnim as Integer[] Dim sAnim sAnim = "1,2,3,4,5" arAnim = Split(sAnim, ",") Fabien (I've join a corrected GBAnim TarBall) -------------- next part -------------- A non-text attachment was scrubbed... Name: GBanim.tar.gz Type: application/x-tgz Size: 89679 bytes Desc: not available URL: From gambas at ...1... Sun Feb 16 11:56:49 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 16 Feb 2003 11:56:49 +0100 Subject: [Gambas-user] Database component, RedHat and Mandrake problems Message-ID: <20030216124422.2223216336@...74...> Hello everybody, I have put a pre-version of gambas with a database component at the following url: http://gambas.sourceforge.net/gambas-0.44.1.tar.gz This package is intended to test, not to use ! This database component is composed of the following: - A main database component named gb.db - A postgresql driver component named gb.db.postgresql This component is sufficient, but limited, as it can query the database but cannot query nor modify its structure. I explained in the development mailing-list why querying and modifying the database structure is not standard, and so is more difficult to program. This functionality will be implemented in a far future... Now, I'm looking for a nice guy that will write a mysql driver. Hullo C hackers ! Nigel ? Jean-Marc ? Are you alive ? :-) The postgresql driver functions are documented in the source, and I will answer to any question of course. It is just a matter of writing the same thing, but for mysql ! A very good help is looking into the QT mysql driver source :-) If someone wants to write the mysql driver, tell me. I will add the mysql libraries and headers auto-detection in the gambas configure script, and the needed Makefile.am file. Another point, now. I have compiled all C++ gambas files with the options -fno-exceptions. Maybe this could solve the RedHat 8.0 problem. Can a kind RedHat-8.0 user tell me if this pre-version compiles without the "_UnwindGetIP" symbol missing error ? Moreover, I added an option in the gambas IDE project. Now the gambas IDE loads its component at startup before any memory allocation. Can Mandrake users having segfault test if the IDE crashes with this version ? Thanks in advance, and waiting for comment and help ! -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Sun Feb 16 11:42:18 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 16 Feb 2003 11:42:18 +0100 Subject: [Gambas-user] Database component syntax Message-ID: <20030216124427.BB60016142@...74...> Here is a quick explanation of how to use the database component. **** Opening a database: DIM hDB AS NEW Database hDB.Type = "postgresql" hDB.Name = "mydabatabase" 'Optional parameters 'hDB.User = "benoit" 'hDB.Password = "" 'hDB.Port = 0 'hDB.Host = "AAA.BBB.CCC.DDD" hDB.Open **** Closing a database: HDB.Close **** Executing a query and getting the result DIM iId AS Integer DIM sName AS String DIM rResult AS Result DIM sField AS String iID = 1 sName = "Gambas" rResult = hDB.Exec("SELECT * INTO MyTable WHERE id = &1 AND name = &2", iId, sName) ' The iId and sName are substituted into the query, with automatic quoting ' => The executed query is "SELECT * INTO MyTable WHERE id = 1 AND ' name = 'Gambas'" ' Printing a result WHILE rResult.Available FOR EACH sField IN rResult.Fields PRINT sField; " = "; rResult[sField] NEXT PRINT rResult.MoveNext WEND **** Creating a record in a table rResult = hDB.Create("MyTable") rResult!id = 2 rResult!Name = "Python" rResult.Update ' => Generates an INSERT query **** Editing records in a table rResult = hDB.Edit("MyTable", "Name = &1", "Perl") ' => send the query "SELECT * INTO MyTable WHERE Name = 'Perl'" WHILE rResult.Available rResult!Name = "PHP" rResult.Update ' => Generates an UPDATE query rResult.MoveNext WEND BE CAREFUL ! You cannot edit records this way if the component cannot find a primary index in your table (in postgresql, a primary index on the table "MyTable" is an index named "MyTable_pkey"). If you have no primary index on your table, you must use Exec() with your own UPDATE query. **** Transactions hDB.Begin ... hDB.Commit ... hDB.Rollback BE CAREFUL ! The interface of the database component is not terminated, so it is subject to any change ! This is an EXPERIMENTAL component. Enjoy it all the same :-) -- Beno?t Minisini mailto:gambas at ...1... From abidoo.too at ...11... Sun Feb 16 17:12:15 2003 From: abidoo.too at ...11... (Fabien BODARD) Date: Sun, 16 Feb 2003 17:12:15 +0100 Subject: [Gambas-user] hummm? Message-ID: <200302161712.15059.abidoo.too@...11...> pourquoi tes mail passent par le user et le devell? Un probl?me non? je vais tester 0.44.1 tout de suite... Fabien From karl.reinl at ...9... Sun Feb 16 18:51:50 2003 From: karl.reinl at ...9... (Charlie) Date: Sun, 16 Feb 2003 18:51:50 +0100 Subject: [Gambas-user] may be this can be useful Message-ID: <3E4FCFB6.2080403@...9...> Salut Benoit, I refound that on my computer, have a look at it, may be it'S useful. Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: MyC-0.1.tar.gz Type: application/x-tar Size: 19134 bytes Desc: not available URL: From karl.reinl at ...9... Mon Feb 17 01:22:35 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 17 Feb 2003 01:22:35 +0100 Subject: [Gambas-user] navigate with TAB in gambas forms Message-ID: <3E502B4B.8000602@...9...> Salut Benoit, how can I works the navigation with the TAB-key on gambas form. Can I change the follow up . I had found no keyword in properties. Till now my impression is there is NO rule. Charlie From bpiadm at ...75... Tue Feb 18 08:45:29 2003 From: bpiadm at ...75... (bpiadm) Date: Tue, 18 Feb 2003 08:45:29 +0100 Subject: [Gambas-user] gambas-0.44-1 Message-ID: Bonjour Benoit, I cant-t compile this version with RedHat 8.0. I have always the same pb : _UnwindGetIP missing ... I execute ./configure with --disable-db-component, because il have only mysql installed and not postgregre. How can we help you to debug on redhat ??? Bernard From gambas at ...1... Tue Feb 18 22:51:03 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Tue, 18 Feb 2003 22:51:03 +0100 Subject: [Gambas-user] navigate with TAB in gambas forms In-Reply-To: <3E502B4B.8000602@...9...> References: <3E502B4B.8000602@...9...> Message-ID: <200302182251.03717.gambas@...1...> Le Lundi 17 F?vrier 2003 01:22, Charlie a ?crit : > Salut Benoit, > > how can I works the navigation with the TAB-key on gambas form. > > Can I change the follow up . I had found no keyword in properties. > > Till now my impression is there is NO rule. > > Charlie > > > Alas the TAB navigation is not implemented yet... And I forgot to note it in the TODO file ! -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Tue Feb 18 23:01:14 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Tue, 18 Feb 2003 23:01:14 +0100 Subject: [Gambas-user] gambas-0.44-1 In-Reply-To: References: Message-ID: <200302182301.14302.gambas@...1...> Le Mardi 18 F?vrier 2003 08:45, bpiadm a ?crit : > Bonjour Benoit, > > I cant-t compile this version with RedHat 8.0. I have always the same pb : > > _UnwindGetIP missing ... > > I execute ./configure with --disable-db-component, because il have only > mysql installed and not postgregre. > > How can we help you to debug on redhat ??? > > Bernard > GRRRRFFZZZZ @!#$* !!! I have just received my new computer (a Shuttle with an AMD Athlon XP 2000+, 256 Mb RAM, 80 Go Disk, VIA motherboard). Alas, if the MAndrake 9.0 installs on it perfectly, the RedHAT 8.0 has many problems. The video card is not recognized, there are strange bugs in config tools. I think I should buy VMWare if I want to compile Gambas directly on a RedHAT... To help me, you can use the nm command on /usr/lib/qt-3.0.5/lib/libqt-mt.so.3 and send me the result, so that I compare with my own qt lib. If you know how to do that, you can replace the -fno-exceptions flag in the ./configure.in file by -fexceptions, and try to recompile. Because I'm not sure if the default is -fno-exceptions or the contrary ! Regards, -- Beno?t Minisini mailto:gambas at ...1... From bsnipes at ...72... Tue Feb 18 23:31:09 2003 From: bsnipes at ...72... (Brian Snipes) Date: 18 Feb 2003 16:31:09 -0600 Subject: [Gambas-user] Static build Message-ID: <1045607469.12128.1.camel@...73...> Is it possible for a static build of gambas to be done so that those of us with a nonworking version of qt could use it? I know that theKompany does it with the Quanta Gold product and it works well. Brian Snipes From Gambasfr at ...11... Wed Feb 19 10:50:07 2003 From: Gambasfr at ...11... (Fabien) Date: Wed, 19 Feb 2003 10:50:07 +0100 Subject: [Gambas-user] gambas-0.44-1 In-Reply-To: <200302182301.14302.gambas@...1...> References: <200302182301.14302.gambas@...1...> Message-ID: <200302191050.07885.Gambasfr@...11...> Le Mardi 18 F?vrier 2003 23:01, Beno?t Minisini a ?crit : > Le Mardi 18 F?vrier 2003 08:45, bpiadm a ?crit : > > Bonjour Benoit, > > > > I cant-t compile this version with RedHat 8.0. I have always the same pb > > : > > > > _UnwindGetIP missing ... > > > > I execute ./configure with --disable-db-component, because il have only > > mysql installed and not postgregre. > > > > How can we help you to debug on redhat ??? > > > > Bernard > > GRRRRFFZZZZ @!#$* !!! > > I have just received my new computer (a Shuttle with an AMD Athlon XP > 2000+, 256 Mb RAM, 80 Go Disk, VIA motherboard). > > Alas, if the MAndrake 9.0 installs on it perfectly, the RedHAT 8.0 has many > problems. The video card is not recognized, there are strange bugs in > config tools. I think I should buy VMWare if I want to compile Gambas > directly on a RedHAT... > > To help me, you can use the nm command on > /usr/lib/qt-3.0.5/lib/libqt-mt.so.3 and send me the result, so that I > compare with my own qt lib. > > If you know how to do that, you can replace the -fno-exceptions flag in the > ./configure.in file by -fexceptions, and try to recompile. Because I'm not > sure if the default is -fno-exceptions or the contrary ! > > Regards, Welcome benoit, I've the same problem.. (xp 2100 and via Raid mother board...) With mdk 9 have you no problem of souncard detecting...? fabien... From na2492 at ...9... Wed Feb 19 17:10:16 2003 From: na2492 at ...9... (na2492 at ...9...) Date: Wed, 19 Feb 2003 17:10:16 00100 Subject: [Gambas-user] gambas-0.44-1 Message-ID: <3e53ac68.273.0@...9...> >GRRRRFFZZZZ @!#$* !!! > >I have just received my new computer (a Shuttle with an AMD Athlon XP 2000+, >256 Mb RAM, 80 Go Disk, VIA motherboard). > >Alas, if the MAndrake 9.0 installs on it perfectly, the RedHAT 8.0 has many >problems. The video card is not recognized, there are strange bugs in config >tools. I think I should buy VMWare if I want to compile Gambas directly on a Before buing , try it , you can download vmware from www.vmware.com and also get a 1 Month Key (some yaers ago I had 3 times a 1 month Key) Charlie >RedHAT... > >To help me, you can use the nm command on /usr/lib/qt-3.0.5/lib/libqt-mt.so.3 >and send me the result, so that I compare with my own qt lib. > >If you know how to do that, you can replace the -fno-exceptions flag in the >./configure.in file by -fexceptions, and try to recompile. Because I'm not >sure if the default is -fno-exceptions or the contrary ! > >Regards, > >-- >Beno?t Minisini >mailto:gambas at ...1... * Gesendet mit / Sent by: FEN-Webmail * http://www.fen-net.de * From karl.reinl at ...9... Wed Feb 19 23:48:05 2003 From: karl.reinl at ...9... (Charlie) Date: Wed, 19 Feb 2003 23:48:05 +0100 Subject: [Gambas-user] Radiobuttons Message-ID: <3E5409A5.4080602@...9...> Salut Benoit, I have problem with Radiobuttons. Take a Form with 3 Radiobuttons / all in the same Group Then set by code the value of one to true. The sub 'Groupe'_Click ditn't raise. So you have do to all what 'Groupe'_Click should do by hand. Have a look at targamb a program to make tar archives. Dblclick at Target Extention (lblExt) I hope you can untar it, because the project was tared by himself and it stores still the entier path. Use gambas-0.44.1 Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: targamb.tar.gz Type: application/x-tar Size: 5573 bytes Desc: not available URL: From karl.reinl at ...9... Wed Feb 19 23:55:27 2003 From: karl.reinl at ...9... (Charlie) Date: Wed, 19 Feb 2003 23:55:27 +0100 Subject: [Gambas-user] gambas on different Systems Message-ID: <3E540B5F.5030209@...9...> Salut benoit, I use gambas on 2 SuSe systems a 7.2 full updated with KDE 2.2.2 and a SuSE 8.0 KDE 3.04 . I remaked that the my TomySql project workes differntly on both. I worked out till now, it my be WAIT. amicalement Charlie PS menu.items set to enabled=false ditn't work at both. From karl.reinl at ...9... Thu Feb 20 00:02:53 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 20 Feb 2003 00:02:53 +0100 Subject: [Gambas-user] targamb a project Message-ID: <3E540D1D.8030009@...9...> Salut, Have a look at targamb, a program to make tar archives. I run into a problem. I try to tar a directory, but not to store the entier path. I have no more idea and no knowlege with tar. I passe this project to you, perhapse someone can/may finish it. I hope you can untar it, because the project was tared by himself and it stores still the entier path. Use gambas-0.44.1 Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: targamb.tar.gz Type: application/x-tar Size: 5573 bytes Desc: not available URL: From gambas at ...1... Thu Feb 20 22:23:03 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Thu, 20 Feb 2003 22:23:03 +0100 Subject: [Gambas-user] Radiobuttons In-Reply-To: <3E5409A5.4080602@...9...> References: <3E5409A5.4080602@...9...> Message-ID: <200302202223.03266.gambas@...1...> Le Mercredi 19 F?vrier 2003 23:48, Charlie a ?crit : > Salut Benoit, > > I have problem with Radiobuttons. > > Take a Form with 3 Radiobuttons / all in the same Group > Then set by code the value of one to true. > The sub 'Groupe'_Click ditn't raise. > So you have do to all what 'Groupe'_Click should do by hand. > > Have a look at targamb a program to make tar archives. Dblclick at > Target Extention (lblExt) > I hope you can untar it, because the project was tared by himself and it > stores still the entier path. > > Use gambas-0.44.1 > > Charlie Hi Charlie, You are right, I'm going to deep into the code to see what happens. -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Thu Feb 20 22:14:38 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Thu, 20 Feb 2003 22:14:38 +0100 Subject: [Gambas-user] gambas on different Systems In-Reply-To: <3E540B5F.5030209@...9...> References: <3E540B5F.5030209@...9...> Message-ID: <200302202214.38986.gambas@...1...> Le Mercredi 19 F?vrier 2003 23:55, Charlie a ?crit : > Salut benoit, > > I use gambas on 2 SuSe systems a 7.2 full updated with KDE 2.2.2 and a > SuSE 8.0 KDE 3.04 . > I remaked that the my TomySql project workes differntly on both. Have you the same qt libs in both ? I can't maintain a qt component for each qt library versions, because TrollTech seems to make too many internal changes. I hope all that will stabilize when the qt internals stabilizes itself. > > I worked out till now, it my be WAIT. ???? > > amicalement > Charlie > > PS menu.items set to enabled=false ditn't work at both. I don't remember if you sent me an example of this problem. Could you ? Regards, -- Beno?t Minisini mailto:gambas at ...1... From karl.reinl at ...9... Thu Feb 20 23:26:27 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 20 Feb 2003 23:26:27 +0100 Subject: [Gambas-user] gambas on different Systems References: <3E540B5F.5030209@...9...> <200302202214.38986.gambas@...1...> Message-ID: <3E555613.9040805@...9...> Beno?t Minisini schrieb: >Le Mercredi 19 F?vrier 2003 23:55, Charlie a ?crit : > > >>Salut benoit, >> >>I use gambas on 2 SuSe systems a 7.2 full updated with KDE 2.2.2 and a >>SuSE 8.0 KDE 3.04 . >>I remaked that the my TomySql project workes differntly on both. >> >> > >Have you the same qt libs in both ? > >I can't maintain a qt component for each qt library versions, because >TrollTech seems to make too many internal changes. > >I hope all that will stabilize when the qt internals stabilizes itself. > > > >>I worked out till now, it my be WAIT. >> >> Sorry, I still ditn't it work out, but what I found was that I had errors in TomySql when the process was writing to a file, then next line was a WAIT and the line behinde I read the file. The error message said 'File ... not found' or something else. >???? > > > >>amicalement >>Charlie >> >>PS menu.items set to enabled=false ditn't work at both. >> >> > >I don't remember if you sent me an example of this problem. Could you ? > > > If you download, from TomySQL at http://www.fen-net.de/Karl.Reinl/gambas/TomySQL.html the 'last Source Copy', have a look to the FMain.menu (on sourcecode ) #250, there are some sub-menus where Enabled where not checked. But at runtime they are not disabled. regards Charlie From gambas at ...1... Fri Feb 21 11:50:44 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 21 Feb 2003 11:50:44 +0100 Subject: [Gambas-user] gambas-0.44.2 Message-ID: <200302211150.44027.gambas@...1...> Hi everybody, I have just made a gambas-0.44.2 package at http://gambas.sourceforge.net/gambas-0.44.2.tar.gz I have succeeded in installing Mandrake 9.0, SuSE 8.1 and RedHat 8.0 on my new Shuttle box ! Here is the result... :-) This package compiles on my REDHAT 8.0 box, except for the KDE component. You should pass --disable-kde-component to the configure script. RedHat 8.0 is a strange Linux distribution... When you compile C++ shared libraries, you must link a gcc libraries that is automatically added on SuSE and Mandrake. Why ? Mystery... But now, it works... This package compiles on SuSE 8.1. The Kde directories are now correctly detected, but the KDE component does not compile, as for RedHat. This package compiles on my Mandrake 9.0, but I have yet no ideas for the Xlib crash on other Mandrake 9.0 boxes. Try it and tell me... -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Fri Feb 21 12:07:17 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 21 Feb 2003 12:07:17 +0100 Subject: [Gambas-user] gambas on different Systems In-Reply-To: <3E555613.9040805@...9...> References: <3E540B5F.5030209@...9...> <200302202214.38986.gambas@...1...> <3E555613.9040805@...9...> Message-ID: <200302211207.17652.gambas@...1...> Le Jeudi 20 F?vrier 2003 23:26, Charlie a ?crit : > Beno?t Minisini schrieb: > >Le Mercredi 19 F?vrier 2003 23:55, Charlie a ?crit : > >>Salut benoit, > >> > >>I use gambas on 2 SuSe systems a 7.2 full updated with KDE 2.2.2 and a > >>SuSE 8.0 KDE 3.04 . > >>I remaked that the my TomySql project workes differntly on both. > > > >Have you the same qt libs in both ? > > > >I can't maintain a qt component for each qt library versions, because > >TrollTech seems to make too many internal changes. > > > >I hope all that will stabilize when the qt internals stabilizes itself. > > > >>I worked out till now, it my be WAIT. > > Sorry, I still ditn't it work out, but what I found was that I had > errors in TomySql when the process was writing to a file, then next line > was a WAIT and the line behinde I read the file. > The error message said 'File ... not found' or something else. > > >???? > > > >>amicalement > >>Charlie > >> > >>PS menu.items set to enabled=false ditn't work at both. > > > >I don't remember if you sent me an example of this problem. Could you ? > > If you download, from TomySQL at > http://www.fen-net.de/Karl.Reinl/gambas/TomySQL.html > the 'last Source Copy', have a look to the FMain.menu (on sourcecode ) > #250, there are some sub-menus where Enabled where not checked. But at > runtime they are not disabled. > Yes, indeed. But I can't compile your project, so that I can understand what happens. Tell me when you correct it. The problem is not simple, as when Enabled works with a not to complex menu on a form. Maybe your problem comes from the fact you change menu captions at runtime... Regards, -- Beno?t Minisini mailto:gambas at ...1... From bpiadm at ...75... Fri Feb 21 14:36:10 2003 From: bpiadm at ...75... (bpiadm) Date: Fri, 21 Feb 2003 14:36:10 +0100 Subject: [Gambas-user] Gambas 0.44.2 And Redhat Message-ID: Hi Benoit, The version 0.44.2 is ok with redhat 8.0 I only compile with --disable-db-component (Ihave not PostGree) and all is OK I don-t pass --disable-kde-component to the configure script ..... Thanks Bernard From karl.reinl at ...9... Fri Feb 21 19:44:09 2003 From: karl.reinl at ...9... (Charlie) Date: Fri, 21 Feb 2003 19:44:09 +0100 Subject: [Gambas-user] gambas on different Systems References: <3E540B5F.5030209@...9...> <200302202214.38986.gambas@...1...> <3E555613.9040805@...9...> <200302211207.17652.gambas@...1...> Message-ID: <3E567379.8080802@...9...> Beno?t Minisini schrieb: >Yes, indeed. But I can't compile your project, so that I can understand what >happens. Tell me when you correct it. > >The problem is not simple, as when Enabled works with a not to complex menu on >a form. Maybe your problem comes from the fact you change menu captions at >runtime... > >Regards, > > > Salut Benoit, shame on my, that also realy bullshit. And bad work. You can download the new corrected LastSourceCopy or just delete MRST.module This module has not yet to be there. Yes I want to write captions and Text on Forms at runtime, to have the possibiliety to localies the Programm. Thats for I ask some time ago, for 'Objects on a Form' (1 to 3) I still talk gambas-0.44.1 Sorry for the incident. Charlie From karl.reinl at ...9... Fri Feb 21 20:07:27 2003 From: karl.reinl at ...9... (Charlie) Date: Fri, 21 Feb 2003 20:07:27 +0100 Subject: [Gambas-user] Process and Textareas Message-ID: <3E5678EF.3040706@...9...> Salut Benoit, today I tried to find a solution for my targamb project, I had a look to /examples/Console I remarke that now you ditn't use sh anymore ,but bash. But also I found something strange, something mast have be changed since you last have tested this. Textarea.pos shows a higher value then Textarea.length so Textarea.pos = Textarea.length in Process_Write and Process_Error often are writing into the existing Text. Try it with ls -l And also at this ls -l the Process_Error which brings as argument the prompt can raise at every moment, usually in the middle or beginning of writing. My be thats a special efact of ls -l .(Ditn't test with others commands) still talking gambas-0.44.1 amicalement Charlie From karl.reinl at ...9... Fri Feb 21 20:39:30 2003 From: karl.reinl at ...9... (Charlie) Date: Fri, 21 Feb 2003 20:39:30 +0100 Subject: [Gambas-user] new gambas Project-Explorer Message-ID: <3E568072.1000601@...9...> Salut Fabien, I saw him. I loved him. good job. Thanks Charlie From karl.reinl at ...9... Fri Feb 21 20:49:52 2003 From: karl.reinl at ...9... (Charlie) Date: Fri, 21 Feb 2003 20:49:52 +0100 Subject: [Gambas-user] /examples/Console Message-ID: <3E5682E0.8090807@...9...> Salut Benoit, some quetions about GPL and /examples/Console. 1. I ditn't found any trance of GPL in /examples/Console, I want to use partes (big) of the project. Can you take it under GPL ? 2. What is nessecery to take a project under GPL. amicalement Charlie From gambas at ...1... Sat Feb 22 11:52:26 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sat, 22 Feb 2003 11:52:26 +0100 Subject: [Gambas-user] gambas on different Systems In-Reply-To: <3E567379.8080802@...9...> References: <3E540B5F.5030209@...9...> <200302211207.17652.gambas@...1...> <3E567379.8080802@...9...> Message-ID: <200302221152.26074.gambas@...1...> Le Vendredi 21 F?vrier 2003 19:44, Charlie a ?crit : > Beno?t Minisini schrieb: > >Yes, indeed. But I can't compile your project, so that I can understand > > what happens. Tell me when you correct it. > > > >The problem is not simple, as when Enabled works with a not to complex > > menu on a form. Maybe your problem comes from the fact you change menu > > captions at runtime... > > > >Regards, > > Salut Benoit, > > shame on my, that also realy bullshit. > And bad work. > You can download the new corrected LastSourceCopy or just delete > MRST.module This module has not yet to be there. > > Yes I want to write captions and Text on Forms at runtime, to have the > possibiliety to localies the Programm. > Thats for I ask some time ago, for 'Objects on a Form' (1 to 3) > > I still talk gambas-0.44.1 > > Sorry for the incident. > > Charlie > No problem Charlie ! I'm currently thinking about a translation system for Gambas that will use the GNU gettext system. Regards, -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Sat Feb 22 11:55:08 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sat, 22 Feb 2003 11:55:08 +0100 Subject: [Gambas-user] /examples/Console In-Reply-To: <3E5682E0.8090807@...9...> References: <3E5682E0.8090807@...9...> Message-ID: <200302221155.08154.gambas@...1...> Le Vendredi 21 F?vrier 2003 20:49, Charlie a ?crit : > Salut Benoit, > > some quetions about GPL and /examples/Console. > > > > 1. I ditn't found any trance of GPL in /examples/Console, I want to use > partes (big) of the project. > Can you take it under GPL ? > > 2. What is nessecery to take a project under GPL. > > amicalement > Charlie > > 1. Examples are part of the Gambas project that is GPL, so they are GPL. 2. Read the GNU licence carefully to know that :-) But if you want to take the examples, that are just examples, just do what you want. And if you improve them, it will be cool to send them me back so that I add them to Gambas ! Regards, -- Beno?t Minisini mailto:gambas at ...1... From karl.reinl at ...9... Sat Feb 22 13:56:07 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 22 Feb 2003 13:56:07 +0100 Subject: [Gambas-user] Dialog.Filter Message-ID: <3E577367.2080409@...9...> Salut, somebody knows if there is a possibilliety to passe more then one Filter to a Dialog ? Like : '*.class' and 'All Files and Exclude ".*" amicalement Charlie From karl.reinl at ...9... Sat Feb 22 18:44:58 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 22 Feb 2003 18:44:58 +0100 Subject: [Gambas-user] gambas Menu Message-ID: <3E57B71A.6080003@...9...> Salut Benoit, the gambas menu is still VERY unstable. after one 'OK' and save the IDE crashs, with a 'save project (Ctrl+Alt+S)' I had now 2 times the sucesse to make changes in the menu. But if you want save after the seconde change with 'save project (Ctrl+Alt+S)' the IDE craschs also. AND: I would be very nice to groupe the menus like Buttons etc. What do you think ? amicalement Charlie From karl.reinl at ...9... Sat Feb 22 20:50:40 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 22 Feb 2003 20:50:40 +0100 Subject: [Gambas-user] gambas menu checked ? Message-ID: <3E57D490.4020007@...9...> Salut Benoit, how checked works in gambas menu ? amicalement Charlie From karl.reinl at ...9... Sat Feb 22 23:24:00 2003 From: karl.reinl at ...9... (Charlie) Date: Sat, 22 Feb 2003 23:24:00 +0100 Subject: [Gambas-user] diff - LinDiff Message-ID: <3E57F880.6070406@...9...> Salut Benoit, referencing to you mail about Source Code changing from yesterday, I bring up a old project of me, but rewritten. Long ago I wrote LinDiff, not knowing 'diff' exists ( call it reinvent the weel). I brought in my newer knowleg, your information and finished it. I wrote it for EN/DE and FR. ( for languages faults, use it to send me changes) If Application.path works right, I plan to set MLocal to a Textfile. Here I have to remember you, thet it is always NOT possible to have access to extern (not in project path) classes , modules etc. So with ervery change (MINIHnadler.module for example is used in all my projects) I have to copy it to all projects. Attention: Don't start it from ./ , the INIFile will fail. Two questions. 1 Are the GPL mention at the startup enough or has this to be in every file? 2 Is it useful, for what you asking? amicalement Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: LinDiff.tar.gz Type: application/x-tar Size: 17910 bytes Desc: not available URL: From karl.reinl at ...9... Sun Feb 23 22:04:26 2003 From: karl.reinl at ...9... (Charlie) Date: Sun, 23 Feb 2003 22:04:26 +0100 Subject: [Gambas-user] /examples/Console References: <3E5682E0.8090807@...9...> <200302221155.08154.gambas@...1...> Message-ID: <3E59375A.7050504@...9...> Beno?t Minisini schrieb: >Le Vendredi 21 F?vrier 2003 20:49, Charlie a ?crit : > > >>Salut Benoit, >> >>some quetions about GPL and /examples/Console. >> >> >> >>1. I ditn't found any trance of GPL in /examples/Console, I want to use >>partes (big) of the project. >>Can you take it under GPL ? >> >>2. What is nessecery to take a project under GPL. >> >>amicalement >>Charlie >> >> >> >> > >1. Examples are part of the Gambas project that is GPL, so they are GPL. > >2. Read the GNU licence carefully to know that :-) But if you want to > take the examples, that are just examples, just do what you want. > > And if you improve them, it will be cool to send them me back so that > I add them to Gambas ! > >Regards, > > Salut Benoit, here the first diff-file for FConsole.class . I worked out till now that 'ls -l' seems to be special, because Process_Error raise is not regulary. Charlie PS Send you last LinDiff ( just finished Help) -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: FConsole.class.diff URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: LinDiff.tar.gz Type: application/x-tar Size: 46129 bytes Desc: not available URL: From gambas at ...1... Sun Feb 23 23:43:38 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 23 Feb 2003 23:43:38 +0100 Subject: [Gambas-user] Dialog.Filter In-Reply-To: <3E577367.2080409@...9...> References: <3E577367.2080409@...9...> Message-ID: <200302232343.38418.gambas@...1...> Le Samedi 22 F?vrier 2003 13:56, Charlie a ?crit : > Salut, > > somebody knows if there is a possibilliety to passe more then one Filter > to a Dialog ? > Like : '*.class' and 'All Files and Exclude ".*" > > > > amicalement > Charlie > > Yes. Just do something like that: Dialog.Filter = "Text files (*.txt)\nAll files (*.*)" And it works ! But be careful, it works only with QT. A GTK component could make the syntax change... Regards, -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Sun Feb 23 23:44:20 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 23 Feb 2003 23:44:20 +0100 Subject: [Gambas-user] gambas Menu In-Reply-To: <3E57B71A.6080003@...9...> References: <3E57B71A.6080003@...9...> Message-ID: <200302232344.20355.gambas@...1...> Le Samedi 22 F?vrier 2003 18:44, Charlie a ?crit : > Salut Benoit, > > the gambas menu is still VERY unstable. > after one 'OK' and save the IDE crashs, with a 'save project > (Ctrl+Alt+S)' I had now 2 times the sucesse to make > changes in the menu. > But if you want save after the seconde change with 'save project > (Ctrl+Alt+S)' the IDE craschs also. > > AND: I would be very nice to groupe the menus like Buttons etc. What do > you think ? > > amicalement > > Charlie > > I will deep into the menu code in the next version... -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Sun Feb 23 23:44:43 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 23 Feb 2003 23:44:43 +0100 Subject: [Gambas-user] gambas menu checked ? In-Reply-To: <3E57D490.4020007@...9...> References: <3E57D490.4020007@...9...> Message-ID: <200302232344.43888.gambas@...1...> Le Samedi 22 F?vrier 2003 20:50, Charlie a ?crit : > Salut Benoit, > > how checked works in gambas menu ? > > amicalement > > Charlie > > > Hum... hMenu.Checked = True ? No ? -- Beno?t Minisini mailto:gambas at ...1... From gambas at ...1... Sun Feb 23 23:54:57 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Sun, 23 Feb 2003 23:54:57 +0100 Subject: [Gambas-user] gambas 0.45 Message-ID: <200302232354.57086.gambas@...1...> Hello evrybody, Gambas 0.45 is out ! You have a database component to access PostgreSQL databases. I'm always looking for a guy who could write a MySQL driver ! You can use Gambas to pilot KDE applications with DCOP. There is an example named 'Scripting' that show you how. And last but not least, it compiles on my RedHat 8.0 box, but with segfaults at exit ! Nothing is perfect, but it make progress ;-) Regards, -- Beno?t Minisini mailto:gambas at ...1... From karl.reinl at ...9... Mon Feb 24 00:20:15 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 24 Feb 2003 00:20:15 +0100 Subject: [Gambas-user] gambas menu checked ? References: <3E57D490.4020007@...9...> <200302232344.43888.gambas@...1...> Message-ID: <3E59572F.2040807@...9...> Beno?t Minisini schrieb: >Le Samedi 22 F?vrier 2003 20:50, Charlie a ?crit : > > >>Salut Benoit, >> >>how checked works in gambas menu ? >> >>amicalement >> >>Charlie >> >> >> >> >> > >Hum... hMenu.Checked = True ? No ? > > > Hum... de retoure . Look at my LinDiff, don't think so Even before when Menu.Captions was not changed by programm. Charlie From karl.reinl at ...9... Mon Feb 24 00:27:36 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 24 Feb 2003 00:27:36 +0100 Subject: [Gambas-user] LinDiff Message-ID: <3E5958E8.4070300@...9...> Salut, ignoring the last news ( gambas 0.45 is released ) I release now LinDiff (build on 0.44.1). All critics about are wellcome. --- But don't start it with ./LinDiff (INIHandler will fail) Will check out what 0.45 will bring new! Have fun Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: LinDiff.tar.gz Type: application/x-tar Size: 47225 bytes Desc: not available URL: From bsnipes at ...21... Mon Feb 24 05:34:44 2003 From: bsnipes at ...21... (Brian Snipes) Date: 23 Feb 2003 22:34:44 -0600 Subject: [Gambas-user] Gambas 0.44 and QT issues In-Reply-To: <1045240257.29178.4.camel@...73...> References: <1045240257.29178.4.camel@...73...> Message-ID: <1046061284.17994.9.camel@...73...> I was hoping that 0.45 might work on my system but know such luck. Here is the gdb output and the end of an strace -f for when work is done on this issue: --- gdb snip --- bsnipes at ...77... gambas $ gdb gbx GNU gdb 5.3 Copyright 2002 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i686-pc-linux-gnu"... (gdb) run Starting program: /usr/bin/gbx Preloading gb.qt Preloading gb.qt.editor Preloading gb.qt.ext [New Thread 16384 (LWP 2599)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 16384 (LWP 2599)] 0x40a588a7 in _XRead () from /usr/X11R6/lib/libX11.so.6 (gdb) bt #0 0x40a588a7 in _XRead () from /usr/X11R6/lib/libX11.so.6 #1 0x40a4a80d in XOpenDisplay () from /usr/X11R6/lib/libX11.so.6 #2 0x4038c033 in qt_init_internal(int*, char**, _XDisplay*, unsigned long, unsigned long) () from /usr/qt/3/lib/libqt-mt.so.3 #3 0x4038cf9e in qt_init(int*, char**, QApplication::Type) () from /usr/qt/3/lib/libqt-mt.so.3 #4 0x403e7e10 in QApplication::construct(int&, char**, QApplication::Type) () from /usr/qt/3/lib/libqt-mt.so.3 #5 0x403e7adc in QApplication::QApplication(int&, char**) () from /usr/qt/3/lib/libqt-mt.so.3 #6 0x401b47a8 in my_main (argc=0xbffff610, argv=0xbffff664) at main.cpp:199 #7 0x08068013 in main (argc=1, argv=0xbffff664) at gbx.c:215 #8 0x40069e34 in __libc_start_main () from /lib/libc.so.6 (gdb) Quit (gdb) q The program is running. Exit anyway? (y or n) y --- end gdb snip --- --- strace -f gambas snip --- uname({sys="Linux", node="galileo.snipes.org", ...}) = 0 connect(4, {sin_family=AF_UNIX, path="/tmp/.X11-unix/X0"}, 19) = 0 uname({sys="Linux", node="galileo.snipes.org", ...}) = 0 fcntl64(4, F_SETFD, FD_CLOEXEC) = 0 access("/home/bsnipes/.Xauthority", R_OK) = 0 open("/home/bsnipes/.Xauthority", O_RDONLY) = 5 fstat64(5, {st_mode=S_IFREG|0644, st_size=325, ...}) = 0 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x40023000 read(5, "\0\0\0\4\254\20|\1\0\0010\0\22MIT-MAGIC-COOKIE-1\0"..., 4096) = 325 close(5) = 0 munmap(0x40023000, 4096) = 0 writev(4, [{"l\0\v\0\0\0\22\0\20\0\0\0", 12}, {"MIT-MAGIC-COOKIE-1", 18}, {"\0\0", 2}, {"\266\335[\16\330\365U,\255\201\f\271\203\304\240\201", 16}], 4) = 48 fcntl64(4, F_GETFL) = 0x2 (flags O_RDWR) fcntl64(4, F_SETFL, O_RDWR|O_NONBLOCK) = 0 --- SIGSEGV (Segmentation fault) --- +++ killed by SIGSEGV +++ --- end strace snip --- On Fri, 2003-02-14 at 12:37, Brian Snipes wrote: > I am having a similiar problem to the Mandrake 9.0 errors from a few > weeks ago. Has anyone been able to determine the cause of the > segfault? I am using a fresh install of Gentoo 1.4rc2 with KDE 3.1 and > QT 3.1.0 . Here is my gdb output: > > (gdb) run > Starting program: /usr/bin/gbx > [New Thread 16384 (LWP 29215)] > > Program received signal SIGSEGV, Segmentation fault. > [Switching to Thread 16384 (LWP 29215)] > 0x40a108a7 in _XRead () from /usr/X11R6/lib/libX11.so.6 > (gdb) bt > #0 0x40a108a7 in _XRead () from /usr/X11R6/lib/libX11.so.6 > #1 0x40a0280d in XOpenDisplay () from /usr/X11R6/lib/libX11.so.6 > #2 0x40396460 in qt_init_internal(int*, char**, _XDisplay*, unsigned > long, unsigned long) () from /usr/qt/3/lib/libqt-mt.so.3 > #3 0x4039724e in qt_init(int*, char**, QApplication::Type) () > from /usr/qt/3/lib/libqt-mt.so.3 > #4 0x403f1990 in QApplication::construct(int&, char**, > QApplication::Type) () > from /usr/qt/3/lib/libqt-mt.so.3 > #5 0x403f165c in QApplication::QApplication(int&, char**) () > from /usr/qt/3/lib/libqt-mt.so.3 > #6 0x401b30f6 in my_main (argc=0xbffff6f0, argv=0xbffff744) at > main.cpp:193 > #7 0x08067863 in main (argc=1, argv=0xbffff744) at gbx.c:215 > #8 0x40067e34 in __libc_start_main () from /lib/libc.so.6 > (gdb) quit > > > Brian Snipes > > > > ------------------------------------------------------- > This SF.NET email is sponsored by: FREE SSL Guide from Thawte > are you planning your Web Server Security? Click here to get a FREE > Thawte SSL guide and find the answers to all your SSL security issues. > http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0026en > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- C. Brian Snipes RHCE, MCNE, LCP, CCNA, MSP Dynamic Network Integration, Inc. Phone : 205.640.6913 Cell : 205.602.1279 From karl.reinl at ...9... Mon Feb 24 20:44:33 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 24 Feb 2003 20:44:33 +0100 Subject: [Gambas-user] news from LinDiff Message-ID: <3E5A7621.5010705@...9...> Salut, installted the new gambas-0.45 and found that my warning from yesterday is obsoled today under 0.45. But on testing LinDiff on a other system, I ran into a bug. The computer was to slow or to fast, but on creating the /tmp/tmp.diff he ditn't find it to read it one line after. I added WAIT to the EXEC line, this I figured out (some Versions ago) had no effect at this time. But now it workes. Having no idea to use correctly 'patch' so I can't send you the changes by a LinDiff created *.diff file. I send you the hole project, still created by tartgamb with the hole path stored. Remember, Benoit are corrected the bug in Application.Path and now you can start from ./LinDiff or any other call. amicalement Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: LinDiff.tar.gz Type: application/x-tar Size: 37665 bytes Desc: not available URL: From jochen.georges at ...22... Tue Feb 25 23:18:26 2003 From: jochen.georges at ...22... (Jochen Georges) Date: Tue, 25 Feb 2003 23:18:26 +0100 Subject: [Gambas-user] essener lug wants to know gambas Message-ID: <200302252307.45457@...24...> hi the elug (essener linux user group) arranges a linux-evening every tuesday in the wonderful "villa vogelsang - the linux-hotel". http://www.linuxhotel.de/ every meeting has got a theme. now they start a serie of evenings with programming themes, like "what is java", "ruby", "gnu pascal" ... they would like to know something about gambas too! is there any body who would like to introduce gambas to the crowds ;-) ? the date would be in the end of april or later. at the moment i do not feel competent enough to do this. beste gruesse jochen From ue000600 at ...78... Wed Feb 26 10:21:39 2003 From: ue000600 at ...78... (Davide Di Buduo) Date: Wed, 26 Feb 2003 10:21:39 +0100 Subject: [Gambas-user] Refresh question In-Reply-To: <200302252307.45457@...24...> References: <200302252307.45457@...24...> Message-ID: <200302261021.39458.ue000600@...78...> Hi everybody, first of all thanks everyone for the good job with Gambas, (i'm running it without any problem under Mandrake 9.0, Kde 3.1 and Qt 3.1). I've a question about forms: how can i refresh a form in the middle of an event ?? i.e. i'm in a button_click event, i make some changes to some other controls in the form but the actual result isn't visible until the event ends :-( Is there a way to redraw the form within an event ?? Thanks everybody for the help and greetings from Italy !!! From gambas at ...1... Wed Feb 26 11:53:56 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Wed, 26 Feb 2003 11:53:56 +0100 Subject: [Gambas-user] Refresh question In-Reply-To: <200302261021.39458.ue000600@...78...> References: <200302252307.45457@...24...> <200302261021.39458.ue000600@...78...> Message-ID: <200302261153.56343.gambas@...1...> Le Mercredi 26 F?vrier 2003 10:21, Davide Di Buduo a ?crit : > Hi everybody, > first of all thanks everyone for the good job with Gambas, > (i'm running it without any problem under Mandrake 9.0, Kde 3.1 and Qt > 3.1). > > I've a question about forms: how can i refresh a form in the middle of an > event ?? i.e. i'm in a button_click event, i make some changes to some > other controls in the form but the actual result isn't visible until the > event ends > > :-( > > Is there a way to redraw the form within an event ?? > > Thanks everybody for the help and greetings from Italy !!! > You cannot refresh a form "in the middle of a event", because refreshing a widget is in fact answering a event, and you cannot answer two events at the same time ! Fortunately, You can use the WAIT instruction in your event handler. This instruction calls recursively the event loop, so the refresh events can be processed inside your event handler. But be careful, calling the event loop can imply the call of your event handler, and lead to a infinite recursion and a stack overflow. Regards, -- Beno?t Minisini mailto:gambas at ...1... From ue000600 at ...78... Wed Feb 26 14:38:30 2003 From: ue000600 at ...78... (Davide Di Buduo) Date: Wed, 26 Feb 2003 14:38:30 +0100 Subject: [Gambas-user] Refresh question In-Reply-To: <200302261153.56343.gambas@...1...> References: <200302252307.45457@...24...> <200302261021.39458.ue000600@...78...> <200302261153.56343.gambas@...1...> Message-ID: <200302261438.30413.ue000600@...78...> Many thanks, the result was absolutely pefect .. it seems that WAIT acts like DOEVENTS under VB ... (also, disabling the button that calls my event i prevent the recursive call you've warned me) I've noticed a strange behavior with the ColumnClick event of the ColumnView component: first of all the event isn't fired when, after having the view filled, I click the column headers; then if I click some cell in the view the event is fired and finally also if i click a column header the event starts ... I don't know if i've explained well the problem, hope so :-) Regards, Davide. Alle 11:53, mercoled? 26 febbraio 2003, Beno?t Minisini ha scritto: > Le Mercredi 26 F?vrier 2003 10:21, Davide Di Buduo a ?crit : > > Hi everybody, > > first of all thanks everyone for the good job with Gambas, > > (i'm running it without any problem under Mandrake 9.0, Kde 3.1 and Qt > > 3.1). > > > > I've a question about forms: how can i refresh a form in the middle of an > > event ?? i.e. i'm in a button_click event, i make some changes to some > > other controls in the form but the actual result isn't visible until the > > event ends > > > > :-( > > > > Is there a way to redraw the form within an event ?? > > > > Thanks everybody for the help and greetings from Italy !!! > > You cannot refresh a form "in the middle of a event", because refreshing a > widget is in fact answering a event, and you cannot answer two events at > the same time ! > > Fortunately, You can use the WAIT instruction in your event handler. This > instruction calls recursively the event loop, so the refresh events can be > processed inside your event handler. > > But be careful, calling the event loop can imply the call of your event > handler, and lead to a infinite recursion and a stack overflow. > > Regards, From Gambasfr at ...11... Wed Feb 26 21:43:39 2003 From: Gambasfr at ...11... (Fabien) Date: Wed, 26 Feb 2003 21:43:39 +0100 Subject: [Gambas-user] LinDiff In-Reply-To: <3E5958E8.4070300@...9...> References: <3E5958E8.4070300@...9...> Message-ID: <200302262143.39453.Gambasfr@...11...> Le Lundi 24 F?vrier 2003 00:27, Charlie a ?crit : > Salut, > > ignoring the last news ( gambas 0.45 is released ) > I release now LinDiff (build on 0.44.1). > > > All critics about are wellcome. > --- But don't start it with ./LinDiff (INIHandler will fail) > Will check out what 0.45 will bring new! > > Have fun > Charlie salut charlie I've made a diff file for your LinDiff (It's really usefull) with a french correction... I've the same id?a last week but with gb.editor (but it's too sp?cific) good id?a.... It's the power off gambas... make little usefull app and frontent. Fabien -------------- next part -------------- A non-text attachment was scrubbed... Name: MLocal.module.diff Type: text/x-diff Size: 2039 bytes Desc: not available URL: From r.hansen at ...79... Thu Feb 27 12:16:54 2003 From: r.hansen at ...79... (R.Hansen) Date: 27 Feb 2003 12:16:54 +0100 Subject: [Gambas-user] Gambas IDE FOptions.class Message-ID: <1046344620.3516.40.camel@...80...> at the first, Thanks to Benoit!! Really a nice work. I found a trivial eror in the gambas ide: I like my own editor colors :-)) but if i changed any color, gambas crashed. The problem was SetColor(Last, Dialog.Color). At this time it looks that LAST is not the Label but a Timer or an other Control, I have changed the code in the FOptions.class as followed: PUBLIC SUB lblColor_MouseUp(X AS Integer, Y AS Integer, Button AS Integer) ' ** start RH DIM hCtrl AS Control DIM iIndex AS Integer iIndex = LAST.Tag ' ** end RH LAST.Border = Border.Raised IF X >= 0 AND Y >= 0 AND X < LAST.W AND Y < LAST.H THEN Dialog.Color = LAST.Background IF Dialog.SelectColor() THEN RETURN ' ** start RH FOR EACH hCtrl IN svwColor.Children IF hCtrl.Tag = iIndex THEN SetColor(hCtrl, Dialog.Color, TRUE) ENDIF NEXT 'SetColor(Last, Dialog.Color) ' ** end rh ENDIF END It's working but in my oppinion it must give another way without FOR EACH. How can i address the Label directly? svwColor.Children(iIndex) dont work svwColor.lblColor(iIndex) dont work lblColor(iIndex) dont work What is my error in reasoning?? Regards, From gambas at ...1... Thu Feb 27 15:58:54 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Thu, 27 Feb 2003 15:58:54 +0100 Subject: [Gambas-user] Gambas IDE FOptions.class In-Reply-To: <1046344620.3516.40.camel@...80...> References: <1046344620.3516.40.camel@...80...> Message-ID: <200302271558.54851.gambas@...1...> Le Jeudi 27 F?vrier 2003 12:16, R.Hansen a ?crit : > at the first, Thanks to Benoit!! Really a nice work. > > I found a trivial eror in the gambas ide: I like my own editor colors > > :-)) but if i changed any color, gambas crashed. The problem was > > SetColor(Last, Dialog.Color). At this time it looks that LAST is not the > Label but a Timer or an other Control, > > I have changed the code in the FOptions.class as followed: > > PUBLIC SUB lblColor_MouseUp(X AS Integer, Y AS Integer, Button AS > Integer) > ' ** start RH > DIM hCtrl AS Control > DIM iIndex AS Integer > iIndex = LAST.Tag > ' ** end RH > > LAST.Border = Border.Raised > > IF X >= 0 AND Y >= 0 AND X < LAST.W AND Y < LAST.H THEN > > Dialog.Color = LAST.Background > IF Dialog.SelectColor() THEN RETURN > > ' ** start RH > > FOR EACH hCtrl IN svwColor.Children > > IF hCtrl.Tag = iIndex THEN > SetColor(hCtrl, Dialog.Color, TRUE) > ENDIF > > NEXT > > 'SetColor(Last, Dialog.Color) > > ' ** end rh > > ENDIF > > END > > It's working but in my oppinion it must give another way without FOR > EACH. > How can i address the Label directly? > > svwColor.Children(iIndex) dont work > svwColor.lblColor(iIndex) dont work > lblColor(iIndex) dont work > > What is my error in reasoning?? > > Regards, > Hi M. Hansen, You are right, this is a bug. The problem was the use of the LAST instruction just before a call to Dialog.SelectColor(). The LAST instruction is valid until a call to the event loop... And during the color dialog call, the Timer used for animating the mascot wakes up, and modifies the value of LAST ! So the fix is to simply put LAST into a local variable at the beginning of the event handler, and to use it, instead of using LAST each time. It is not necessary to use the Tag property to identify the control as you did. A direct reference is sufficient. Here is the result: ------- PUBLIC SUB lblColor_MouseUp(X AS Integer, Y AS Integer, Button AS Integer) DIM hCtrl AS Label hCtrl = LAST hCtrl.Border = Border.Raised IF X >= 0 AND Y >= 0 AND X < hCtrl.W AND Y < hCtrl.H THEN Dialog.Color = hCtrl.Background IF Dialog.SelectColor() THEN RETURN SetColor(hCtrl, Dialog.Color) ENDIF END ------- Regards, -- Beno?t Minisini mailto:gambas at ...1... From r.hansen at ...79... Thu Feb 27 17:16:30 2003 From: r.hansen at ...79... (R.Hansen) Date: 27 Feb 2003 17:16:30 +0100 Subject: [Gambas-user] Gambas IDE FOptions.class In-Reply-To: <200302271558.54851.gambas@...1...> References: <1046344620.3516.40.camel@...80...> <200302271558.54851.gambas@...1...> Message-ID: <1046362596.17573.41.camel@...80...> Thanks Beno?t my first approach was the same... but never changed a color... now i realize my mistake... i observed the compiled editor-frame the first time :-))). Of course, there can't change any color :-))) Regards, Ralf Am Don, 2003-02-27 um 15.58 schrieb Beno?t Minisini: > Le Jeudi 27 F?vrier 2003 12:16, R.Hansen a ?crit : > > at the first, Thanks to Benoit!! Really a nice work. > > > > I found a trivial eror in the gambas ide: I like my own editor colors > > > > :-)) but if i changed any color, gambas crashed. The problem was > > > > SetColor(Last, Dialog.Color). At this time it looks that LAST is not the > > Label but a Timer or an other Control, > > > > I have changed the code in the FOptions.class as followed: > > > > PUBLIC SUB lblColor_MouseUp(X AS Integer, Y AS Integer, Button AS > > Integer) > > ' ** start RH > > DIM hCtrl AS Control > > DIM iIndex AS Integer > > iIndex = LAST.Tag > > ' ** end RH > > > > LAST.Border = Border.Raised > > > > IF X >= 0 AND Y >= 0 AND X < LAST.W AND Y < LAST.H THEN > > > > Dialog.Color = LAST.Background > > IF Dialog.SelectColor() THEN RETURN > > > > ' ** start RH > > > > FOR EACH hCtrl IN svwColor.Children > > > > IF hCtrl.Tag = iIndex THEN > > SetColor(hCtrl, Dialog.Color, TRUE) > > ENDIF > > > > NEXT > > > > 'SetColor(Last, Dialog.Color) > > > > ' ** end rh > > > > ENDIF > > > > END > > > > It's working but in my oppinion it must give another way without FOR > > EACH. > > How can i address the Label directly? > > > > svwColor.Children(iIndex) dont work > > svwColor.lblColor(iIndex) dont work > > lblColor(iIndex) dont work > > > > What is my error in reasoning?? > > > > Regards, > > > > Hi M. Hansen, > > You are right, this is a bug. The problem was the use of the LAST instruction > just before a call to Dialog.SelectColor(). > > The LAST instruction is valid until a call to the event loop... And during the > color dialog call, the Timer used for animating the mascot wakes up, and > modifies the value of LAST ! > > So the fix is to simply put LAST into a local variable at the beginning of the > event handler, and to use it, instead of using LAST each time. > > It is not necessary to use the Tag property to identify the control as you > did. A direct reference is sufficient. > > Here is the result: > > ------- > PUBLIC SUB lblColor_MouseUp(X AS Integer, Y AS Integer, Button AS Integer) > > DIM hCtrl AS Label > > hCtrl = LAST > > hCtrl.Border = Border.Raised > > IF X >= 0 AND Y >= 0 AND X < hCtrl.W AND Y < hCtrl.H THEN > > Dialog.Color = hCtrl.Background > IF Dialog.SelectColor() THEN RETURN > SetColor(hCtrl, Dialog.Color) > > ENDIF > > END > ------- > > Regards, > > -- > Beno?t Minisini > mailto:gambas at ...1... > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Gambas-user mailing list > Gambas-user at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-user -- Ralf Hansen Systems Engineer Tembit Software GmbH Am Borsigturm 42, 13507 Berlin Fon: +49 30 4303 3282, Fax: +49 30 4303 3122 mailto: hansen at ...81..., http://www.tembit.de From karl.reinl at ...9... Mon Feb 24 21:45:26 2003 From: karl.reinl at ...9... (Charlie) Date: Mon, 24 Feb 2003 21:45:26 +0100 Subject: [Gambas-user] gambas-0.45 a BUG found Message-ID: <3E5A8466.1050206@...9...> Salut Benoit, using 0.45 about the menu : it works much stabil. Even after entering more then one time, the IDE din't crash. BUT: you can't attache no mor icon etc. amicalement Charlie From karl.reinl at ...9... Thu Feb 27 22:12:32 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 27 Feb 2003 22:12:32 +0100 Subject: [Gambas-user] IDE Find & Replace Message-ID: <3E5E7F40.7070007@...9...> Salut Benoit, Find & Replace works very fine, but I found something. Search in 'Project' Case sensitive is not choosen. Word only is not choosen. Find = 'diff' Replace = 'patch' He finds 'diff' and 'Diff', but he replaces only the 'diff'. Try it on a copy of LinDiff. amicalement Charlie From karl.reinl at ...9... Thu Feb 27 22:39:48 2003 From: karl.reinl at ...9... (Charlie) Date: Thu, 27 Feb 2003 22:39:48 +0100 Subject: [Gambas-user] LinDiff References: <3E5958E8.4070300@...9...> <200302262143.39453.Gambasfr@...11...> Message-ID: <3E5E85A4.70105@...9...> Fabien schrieb: >I've made a diff file for your LinDiff (It's really usefull) >with a french correction... > >I've the same id?a last week but with gb.editor (but it's too sp?cific) > >good id?a.... It's the power off gambas... make little usefull app and >frontent. > >Fabien > > Salut, thanks for the right french outputs Fabien. Here a short HowTo for patch this into the source: move or copy the MLocal.module.diff into the LinDiff directory cp MLocal.module.diff /LinDiff change into the LinDiff directory cd LinDiff don' t make a backup from MLocal.module if you like risc or make one if you have no copy. cp MLocal.module MLocal.module.ORG call patch like this: patch MLocal.module MLocal.module.diff Now you have a LinDiff with correct french spelling. amicalement Charlie PS will writing a LinPatch soon. From gambas at ...1... Fri Feb 28 10:40:22 2003 From: gambas at ...1... (=?iso-8859-1?q?Beno=EEt=20Minisini?=) Date: Fri, 28 Feb 2003 10:40:22 +0100 Subject: [Gambas-user] gambas-0.45 a BUG found In-Reply-To: <3E5A8466.1050206@...9...> References: <3E5A8466.1050206@...9...> Message-ID: <200302281040.22944.gambas@...1...> Le Lundi 24 F?vrier 2003 21:45, Charlie a ?crit : > Salut Benoit, > > using 0.45 > > about the menu : > it works much stabil. > Even after entering more then one time, the IDE din't crash. > > BUT: you can't attache no mor icon etc. I found the bug, thanks ! As a workaround, you can suppress the SelectPicture entry in the ~/.gambas file before opening your project. > > amicalement > Charlie > Regards, -- Beno?t Minisini mailto:gambas at ...1... From Gambasfr at ...11... Fri Feb 28 13:28:39 2003 From: Gambasfr at ...11... (Fabien) Date: Fri, 28 Feb 2003 13:28:39 +0100 Subject: [Gambas-user] Humm want help please In-Reply-To: <200302281040.22944.gambas@...1...> References: <3E5A8466.1050206@...9...> <200302281040.22944.gambas@...1...> Message-ID: <200302281328.39650.Gambasfr@...11...> Le Vendredi 28 F?vrier 2003 10:40, Beno?t Minisini a ?crit : Salut I've a probleme with process class I dont't undertand why the write event don't raise with some program like penggy(the error event work as good) But when i type the same command in shell it have an output.. fabien From na2492 at ...9... Fri Feb 28 14:07:01 2003 From: na2492 at ...9... (na2492 at ...9...) Date: Fri, 28 Feb 2003 14:07:01 00100 Subject: [Gambas-user] Humm want help please Message-ID: <3e5f5ef5.4104.0@...9...> >Le Vendredi 28 F?vrier 2003 10:40, Beno?t Minisini a ?crit : > >Salut > >I've a probleme with process class > >I dont't undertand why the write event don't raise with some program like >penggy(the error event work as good) > >But when i type the same command in shell it have an output.. > >fabien > Salut Fabien, if have it right understood. Process_Write brings back what is written fron the program to the Stdout and Process_Error what ist written to StdErr . If you look to examples/Console mostly what came back at Process_Error is the prompt, and I dont think thats an Error. amicalement Charlie * Gesendet mit / Sent by: FEN-Webmail * http://www.fen-net.de * From henrigirard at ...11... Fri Feb 28 16:16:16 2003 From: henrigirard at ...11... (Henri Girard) Date: Fri, 28 Feb 2003 16:16:16 +0100 Subject: [Gambas-user] compile problem... Message-ID: <001201c2df3c$572acdd0$0100a8c0@...82...> Salut :) I am newbie and I got the error message lyes from pq libraries not found ? i am using the mandrake rc 9.1 it seems that I haven't got all the postgresql lib ? Waiting for help Kind regards HG -------------- next part -------------- An HTML attachment was scrubbed... URL: From henrigirard at ...11... Fri Feb 28 17:38:18 2003 From: henrigirard at ...11... (Henri Girard) Date: Fri, 28 Feb 2003 17:38:18 +0100 Subject: [Gambas-user] compiling Message-ID: <004701c2df47$cccaf3c0$0100a8c0@...82...> I get rid of pq error but now it's with Qeditor.h which is not found in qt... Normal qt3 has qeditorfactory.h now but not qeditor.h ? Does any one HG -------------- next part -------------- An HTML attachment was scrubbed... URL: From Gambasfr at ...11... Fri Feb 28 22:35:02 2003 From: Gambasfr at ...11... (Fabien) Date: Fri, 28 Feb 2003 22:35:02 +0100 Subject: [Gambas-user] ss Message-ID: <200302282235.02631.Gambasfr@...11...> test