Re: [Gambas-user] Gambas app calling a PERL Script which calls a program (rtmpdump)

2011-09-02 Thread EA7DFH
et_iplayer --force --type="TV" so the gambas part should read: EXEC ["get_iplayer", "--force", "--type=\"" & sType & "\""] TO sOutput or the other way: arg = Subst("--type=\"&1\"", sType) EXEC [

Re: [Gambas-user] One-Click Install with shell script

2011-08-13 Thread EA7DFH
uot;. You now have to complete some fields for each distribution you want to deploy to, and you are done. The user's system will resolve all the dependencies automatically. Also, would help if you provide some more details about your distribution and Gambas version. Regards -- Jesus, EA7

Re: [Gambas-user] gb3: Format$

2011-06-28 Thread EA7DFH
El 28/06/11 19:05, Benoît Minisini escribió: >> >> Well. what I'm missing here? >> >> I got the same results with rev.3906: >> >> Print Format$(Now, "hh:nn") >> Print Format$(Now, "hh:nn AM/PM") >> >> 18:36 >> 06:36 >> >> Finally, shouldn't the last line show "AM" or "PM" at the end? >> > >

Re: [Gambas-user] gb3: Format$

2011-06-28 Thread EA7DFH
El 26/06/11 23:37, Kevin Fishburne escribió: > On 06/26/2011 03:09 PM, Benoît Minisini wrote: I hope I'm really not so stupid that I'm missing something obvious. I'm not even drinking right now! >>> >>> Mmm... You're right, there's something nasty there. I'm currently >>> investigating...

Re: [Gambas-user] gb3: Format$

2011-06-26 Thread EA7DFH
El 26/06/11 05:54, Kevin Fishburne escribió: > On 06/25/2011 09:41 PM, nando wrote: >> Yes-Silly me! >> How about trying the print statements with ; and not& >> I'm curious how the bug manifests. > > It displays the same results: > > Public Sub Main() > >Dim t As Float > >t = CFloat(Now

Re: [Gambas-user] Barcode example for Gambas3

2011-06-05 Thread EA7DFH
El 05/06/11 10:29, charlesg escribió: > > > shordi wrote: >> >> I can't open the file Me too... It is a common issue when attachments come from Nabble thing :-o >> > > Shordi > > Hmm.. I don't have a problem (ub10.10 32bit) but have had this in the past. > Bit odd as I am just using the

[Gambas-user] Download JPG with HttpClient to memory

2011-02-15 Thread EA7DFH
END I'd like to avoid using a file, is it possible to do from RAM? Gambas 2.22 Linux Mint 10 (based on Ubuntu 10.10) Gnome desktop. Regards -- Jesus, EA7DFH -- The ultimate all-in-one performance toolkit: Intel(R)

Re: [Gambas-user] Arrays of controls..

2011-02-11 Thread EA7DFH
LIC this method to work. PUBLIC SUB ToggleButtons_click() PRINT LAST.tag END Tell us if it worked Regards -- Jesus, EA7DFH -- The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE: Pinpoint memory and threading err

Re: [Gambas-user] Code snippet questions

2011-01-01 Thread EA7DFH
> I'm referring to the third tab in the Preferences dialog of the IDE. I >> >> am unable to get the (template) snippet into the code editor... >> >> >> >> Using latest Gambas3 SVN. >> >> >> >> Thanks > > > >

Re: [Gambas-user] [OT]gambas 3 release or otherwise as binary package

2010-12-31 Thread EA7DFH
s all the best for the New Year 2011. Many thanks to Benoît and to all developers for your hard work. HNY 2011 !! Sincerely -- Jesus, EA7DFH -- Learn how Oracle Real Application Clusters (RAC) One Node allows custom

Re: [Gambas-user] BUG: Problem with DateAdd function

2010-12-05 Thread EA7DFH
the install locations of Gambas is different whether you install it from repositories or manually compiled (/usr/bin and /usr/local/bin respectively) may be you still have both of them in your system, with unpredictable behaviors. Regards, -- Jesus, EA7DFH -

Re: [Gambas-user] Database connection problem

2010-10-16 Thread EA7DFH
tabase created on server. > I am sure that is not a Gambas2 problem, but I would be happy if > somebody can guide me, where is the mistake.. > Thank you. > > Best regards, > Zoli B. > This link may help you: http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql

[Gambas-user] Maverick -dev dependencies and install scripts

2010-10-16 Thread EA7DFH
. Also, some time ago, I've created two scripts to automate the installation from SVN for both, Gambas2 and Gambas3 for Ubuntu, which you can find attached. Those are in Spanish, but sure you could modify at your own. If you can improve it, please share it! -- Jesus, EA7DFH install_gamba

Re: [Gambas-user] Barcode reader

2010-10-16 Thread EA7DFH
ing you have to do is reading the stream that comes from it (ttySx or ttyUSBx). No additional module is needed, you can setup a socket for that. Regards -- Jesus, EA7DFH -- Download new Adobe(R) Flash(R) Builder(TM) 4 Th

Re: [Gambas-user] Questions for RegExp class

2010-10-12 Thread EA7DFH
- > > but in line of "compile" i get a NULL object. > > why? You need to use the NEW keyword to instantiate the sRegEx variable: DIM sRegEx AS NEW Regexp or DIM sRegEx AS Regexp sRegEx = NEW Regexp http://gamba

Re: [Gambas-user] Gambas app run as root

2010-10-03 Thread EA7DFH
;> >> Can I see the project? >> >> -- >> Benoît Minisini Please, try the following code and tell us if it works for you: PRIVATE $hprocess AS Process PUBLIC SUB Form_Open() DIM pwd AS String pwd = InputBox("Type your root password", "Root privileges n

Re: [Gambas-user] Feature request "TODO/FIXME"

2010-09-27 Thread EA7DFH
ronical? Sorry if I am mistaken. > > I'm not ironical, but logical. If a comment with "TODO" inside means that > there is something to do, when removing it means that the thing is done. Of course, that is. Sometimes English is confusing me, because it is not m

Re: [Gambas-user] Feature request "TODO/FIXME"

2010-09-26 Thread EA7DFH
nothing more is needed. Both keywords are widely used as an standard for that purpose in almost all code editors. > > And we can decide that to mark something undone, the comment has just to be > removed. > I don't understand very well your la

[Gambas-user] Feature request "TODO/FIXME"

2010-09-26 Thread EA7DFH
nks for your efforts. -- Jesus, EA7DFH -- Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing. http://p.sf.net/

Re: [Gambas-user] Code Snippets Utility

2010-09-25 Thread EA7DFH
e to get the (template) snippet into the code editor... >> >> Using latest Gambas3 SVN. >> >> Thanks > > You type the first letters of the snippet (one, two or three characters, > depending on the snippet), and then you press TAB. > > They work almost like in gedit. >

[Gambas-user] Code Snippets Utility

2010-09-24 Thread EA7DFH
Hi all What's is the way to insert a code snippet triggered from an string in Gambas3? I'm referring to the third tab in the Preferences dialog of the IDE. I am unable to get the (template) snippet into the code editor... Using latest Gambas3 SVN. Thanks -- Jes

Re: [Gambas-user] Need advice about a Gambas bug tracker

2010-09-18 Thread EA7DFH
ugtracker there. > > Thanks for any advice. > > Regards, > I'm using assembla for my projects. Looks more professional than google code, and it is free only for GPL public projects. Also the limit is 2Gb, but it has a lot of features: http://www.as

Re: [Gambas-user] Controls by code are invisible in Gnome

2010-08-31 Thread EA7DFH
Sorry for re-posting... I've clicked the Send button too early! May be you need to specify X, Y coordinates and size for the new widget to be positioned on your form? -- Jesus, EA7DFH -- This SF.net Dev2Dev email

Re: [Gambas-user] Controls by code are invisible in Gnome

2010-08-31 Thread EA7DFH
El 31/08/10 22:50, Fabián Flores Vadell escribió: I was testing a custom control in a Ubuntu 9.10 virtualized by VirtualBox (using Gambas 2.18), and my controls become invisible in execution time. This not happens on Kubuntu 10.04 on virtualbox too (using Gambas 2.20). I was suprized when I

Re: [Gambas-user] DatePicker and MessageLabel were disabled in revision #3084

2010-08-02 Thread EA7DFH
a control when >> I begin migrating to Gambas3, as it saves a lot of code and it's a >> handsome control. >> >> So, please do not remove it... ;-) >> >> >> The DatePicker has many problems, so something must be done! >> >> >> >>

Re: [Gambas-user] DatePicker and MessageLabel were disabled in revision #3084

2010-08-02 Thread EA7DFH
d not find the code for this widget. Where is located in the (trunk) source code? And, what are the *many* known problems? Regards -- Jesus, EA7DFH -- The Palm PDK Hot Apps Program offers developers who use t

Re: [Gambas-user] DatePicker and MessageLabel were disabled in revision #3084

2010-08-01 Thread EA7DFH
ateChooser) extensively in my applications in Gambas2, I don't want it to disappear as a control when I begin migrating to Gambas3, as it saves a lot of code and it's a handsome control. So, please do not remove it... ;-) -- Jesus, EA7DFH -

Re: [Gambas-user] Post data and files

2010-07-29 Thread EA7DFH
El 29/07/10 18:24, Doriano Blengino escribió: > jose ha scritto: > >> hello everybody! >> >> Can you help?, how can I send datas and files to php from >> Gambas2 app? >> >> > Dear Jose, > > you should be more specific... do you mean send data to a remote server > running a php page? >

Re: [Gambas-user] Bug in Gambas2 packager

2010-07-27 Thread EA7DFH
El 26/07/10 20:54, EA7DFH escribió: > El 31/05/10 18:29, EA7DFH escribió: > >> I filled this bug to launchpad. For those who are affected, please take >> a moment to add your own comment or subscribe on this bug. Perhaps we >> should make more "pressure", ;-

Re: [Gambas-user] Bug in Gambas2 packager

2010-07-26 Thread EA7DFH
El 31/05/10 18:29, EA7DFH escribió: > > I filled this bug to launchpad. For those who are affected, please take > a moment to add your own comment or subscribe on this bug. Perhaps we > should make more "pressure", ;-) > > https://bugs.launchpad.net/ubuntu/+source/gam

Re: [Gambas-user] endoftheinternet.com

2010-07-25 Thread EA7DFH
El 25/07/10 02:56, Fabien Bodard escribió: > lol it seem to be a joke ... intenet have no end... > > 2010/7/24 EA7DFH : > >> >> Hey, what's up? >> >> Surprised when testing Gambas 2.21... When I do open the >> "Project->Create->Installa

Re: [Gambas-user] endoftheinternet.com

2010-07-24 Thread EA7DFH
Surprised when testing Gambas 2.21... When I do open the "Project->Create->Installation Package" menu, in the Website field there is a pre-filled address in all my projects: http://www.endoftheinternet.com/ Is this a joke? Or is it an unknown virus?? Really confused. Hope there is

Re: [Gambas-user] Couple of Minor Bugs in Gambas3

2010-07-13 Thread EA7DFH
El 14/07/10 00:55, Benoît Minisini escribió: >> May be I'm using two monitors, "extended desktop" (main monitor on the >> left and secondary on the right side). Whatever the screen that is used >> as the last working one, there is no difference. Gambas 3 always opens >> in the left one, trying to f

Re: [Gambas-user] Couple of Minor Bugs in Gambas3

2010-07-13 Thread EA7DFH
El 14/07/10 00:10, Benoît Minisini escribió: >>> Hi all >>> >>> Benoît, I'd like to report some minor issues in Gambas3 IDE: >>> >>> * IDE Main Window doesn't remember maximized state on each restart. >>> >> Apparently it works with KDE4. Which desktop do you use? >> >> >>> * Tool windo

[Gambas-user] Couple of Minor Bugs in Gambas3

2010-07-06 Thread EA7DFH
Hi all Benoît, I'd like to report some minor issues in Gambas3 IDE: * IDE Main Window doesn't remember maximized state on each restart. * Tool windows (as debugging ones and search & replace) starts opening at 0,0 screen coordinates, which is cumbersome in Gnome desktops. May be it could be open

Re: [Gambas-user] Bug in Gambas2 packager

2010-05-31 Thread EA7DFH
El 31/05/10 17:19, EA7DFH escribió: > El 31/05/10 00:11, Benoît Minisini escribió: >>> ouch old bug from the ubuntu staff... tell them >>> >> >> Yes. The name of a package is "gambas2" followed by the name of the >> component, >> the p

Re: [Gambas-user] Bug in Gambas2 packager

2010-05-31 Thread EA7DFH
tton > between each version and make that an important feature. :-) > > > Regards, > Ok, good to know, so I was wrong. I will report this to the Ubuntu staff. Thanks! Regards -- Jesus, EA7DFH -

[Gambas-user] Bug in Gambas2 packager

2010-05-30 Thread EA7DFH
ance to fix it? Thanks in advance -- Jesus, EA7DFH -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Gambas 3 Autocompleter - Slight issue

2010-05-28 Thread EA7DFH
El 27/05/10 21:20, EA7DFH escribió: > Hi all > > In Gambas2, when I accept an autocomplete suggestion, it writes the > suggested code (property, methot or whatever) *plus* a trailing space to > continue writing code, which is pretty handy. > > However Gambas3 doesn't be

[Gambas-user] Gambas 3 Autocompleter - Slight issue

2010-05-27 Thread EA7DFH
refer the Gambas2 way :-) -- Jesus, EA7DFH -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Structure support in Gambas 3

2010-05-27 Thread EA7DFH
> End Struct > Enjoy it. > Hi Thanks for this new amazing feature. I've noted that while writing code, autocompleter still isn't able to manage/display Struct members. Is it planned to do so? Everything else works as expected so far, although I didn't tested it dee

Re: [Gambas-user] Gambas for windows, how?

2010-05-13 Thread EA7DFH
El 13/05/10 18:41, admhards...@yahoo.ca escribió: > Ok you are right but I wanna developer an app for a customer in windows, > because he doesn't know any debian, ubuntu, just windows > Do you undestood me? > Tomas > Sent on the TELUS Mobility network with BlackBerry > > -Original Message---

Re: [Gambas-user] Call control from one module

2010-05-13 Thread EA7DFH
I may be wrong, but generally it is considered a bad practice mixing GUI code with "service" code. It is a matter of encapsulation, and in OOP it is one of the most important feature. Yes, less code not always means easy code..., it's just my opinion and I'm not criticizing. Regards, Jesus l 1

Re: [Gambas-user] Call control from one module

2010-05-12 Thread EA7DFH
El 13/05/10 00:08, Jussi Lahtinen escribió: > Project properties --> Check: Form controls are public. > > Jussi > > > On Thu, May 13, 2010 at 00:45, craf wrote: >> Hi. >> >> I need to call a control that is located on the main form from a module, >> for this I have dealt with the following code

Re: [Gambas-user] Several lines from a string in the code

2010-05-12 Thread EA7DFH
Try this: textarea1.text ="bla,bla, bla, bla, bla, bla" & "bla,bla,bla,bla,bla,bla,bla" & "blab,bla" Regards Jesus El 12/05/10 22:13, craf escribió: > Hi. > > There is a way to display a string in the code by several lines?, ex > > textarea1.text ="bla,bla, bl

Re: [Gambas-user] Error compiling Gambas3

2010-05-05 Thread EA7DFH
On 05/05/10 16:26, Benoît Minisini wrote: >> Il giorno mar, 04/05/2010 alle 11.54 +0200, Laurent Carlier ha scritto: >>> Just built it fine here (arch64) >>> >>> Looking at the error, i guess something is rotten with your Qt4 >>> installation, or got some corrupted memory/disk. >>> >>> Regards, >>

Re: [Gambas-user] Cannot load class 'Balloon'

2010-05-03 Thread EA7DFH
Fabien Bodard escribió: > on ubuntu 10.04 work fine for me too > > have you tryed to remove the all the svn and start from scratch ? > > 2010/4/28 Matteo Pasotti : > >> Il 28/04/2010 19:04, charlesg ha scritto: >> >>> Hi >>> >>> I fixed the balloon error by loading Ubuntu package intltool (

Re: [Gambas-user] Problems with Library libffi.so.5 using GB_DIR

2010-04-06 Thread EA7DFH
craf escribió: > -Mensaje original- > De: Benoît Minisini > Reply-to: mailing list for gambas users > > Para: mailing list for gambas users > Asunto: Re: [Gambas-user] Problems with Library libffi.so.5 using GB_DIR > Fecha: Tue, 6 Apr 2010 18:50:35 +0200 > > >> -Mensaje original---

Re: [Gambas-user] Problem with PATH to shared library - part 2

2010-04-06 Thread EA7DFH
Doriano Blengino escribió: >>> $ Tree opt >>> >>> my_project/ >>> >>> |-- gambas2 >>> | >>> | |-- bin >>> | | >>> | | |-- gbr2 >>> | | >>> | | `-- gbx2 >>> | | >>> | |-- lib >>> | | >>> | | `-- gambas2 >>> | | >>> | | |-- blah blah blah... >>> | >>> |

Re: [Gambas-user] LostFocus() not working on ubuntu !

2010-03-19 Thread EA7DFH
Benoît Minisini escribió: > > So, to resume, the LostFocus() event is not working on Ubuntu 9.10 and with > gb.qt only? > > Can someone else confirm? I didn't succeed in reproducing that with my own > Ubuntu 9.10. > No problems here with Ubuntu 9.10 32 bits and Gambas 2.20.1. Regards, Jesus

Re: [Gambas-user] calling back to the caller

2010-03-18 Thread EA7DFH
Charlie Reinl escribió: > Salut, > > is it possible to run from a (gambas2) component, a Sub/Function of the > component using the 'parent' program? > > Something parent.NewsFromMyComponent(TRUE) like I would do with public > elements on a form: MyForm.NewsFromTheSecondForm(Me.Width) Do you mea

Re: [Gambas-user] Bug: Unable to create packages

2010-03-10 Thread EA7DFH
Benoît Minisini escribió: >> Hi >> >> I got a Stack Overflow error when trying to create packages. I think it >> may be related to the new combobox_click behavior (again) in the groups >> selection wizard when content might load into combobox. >> Attached is a screenshot. >> >> Gambas2 #2783 >> >>

[Gambas-user] Bug: Unable to create packages

2010-03-10 Thread EA7DFH
Hi I got a Stack Overflow error when trying to create packages. I think it may be related to the new combobox_click behavior (again) in the groups selection wizard when content might load into combobox. Attached is a screenshot. Gambas2 #2783 Regards, Jesus <>---

[Gambas-user] Unable to convert from Gambas2 to Gambas3

2010-03-07 Thread EA7DFH
Hi I have a project in Gambas2 which I want to import in Gambas3. When I open it in Gambs3 IDE I need to convert all forms, but I get this error message when trying to convert: "Type Mismatch: Wanted FForm, got FTextEditor instead" I think this isn't the expected behavior. gb3 #2745 Regards,

Re: [Gambas-user] Possible bug in Translation Form (IDE)

2010-03-07 Thread EA7DFH
Benoît Minisini escribió: >> i've the same error too ! >> >> 2010/3/7 EA7DFH : >>> Hi Benoît >>> >>> In svn 2741 (Gambas2) I've got this error from the IDE when trying to >>> open translation form: >>> >>&

[Gambas-user] Possible bug in Translation Form (IDE)

2010-03-07 Thread EA7DFH
Hi Benoît In svn 2741 (Gambas2) I've got this error from the IDE when trying to open translation form: "It is not possible to open translation file for 'Spanish(Spain)' language. FTranslate.UpdateOrg.1084: Null object" Tested with several projects and all fail with the same error. Regards, Je

[Gambas-user] Arrangement in Frame Control

2010-03-06 Thread EA7DFH
Hi Why it is not implemented the 'Arrangement' property in the Frame control? I can't find a way to arrange its contents, even if I put Vbox or Hbox inside... Any advice? Regards, Jesus -- Download Intel® Parallel Stu

Re: [Gambas-user] Gambas3 "Dock Widget" in qt

2010-03-05 Thread EA7DFH
Fabien Bodard escribió: > i think it is possible to make a componant in gambas for that ... you > can try to do it if you want > > 2010/3/5 EA7DFH : >> This is for Benoît :-) >> >> As far as I'm experimenting with latest Gambas3 snapshot, I haven't >>

[Gambas-user] Gambas3 "Dock Widget" in qt

2010-03-05 Thread EA7DFH
This is for Benoît :-) As far as I'm experimenting with latest Gambas3 snapshot, I haven't found a "Dock Widget" like in Qt Widgets (Qt Designer). Is it planned to do so? Thanks, Jesus -- Download Intel® Parallel Studi

Re: [Gambas-user] Where are the autopackage files

2010-03-05 Thread EA7DFH
M. Cs. escribió: > I've tried to create the Autopackage file for my app, and although it says > everything is O.K I cannot find the output file. I suppose it should have > .package extension, isn't? Where is it? Do you mean "Autotools"? If so, it will placed where you did choosen at the previous

Re: [Gambas-user] Problem with tableview when in edit mode

2010-03-03 Thread EA7DFH
Sorry, I haven't read the whole thread... Now I'm calling Edit from the click event, and no more crazy traveling :-) However, I'm getting a "Combobox is readonly" error when obviously I set the second arg to TRUE: Edit(getList(), TRUE) But this error isn't catched (by the CATCH clause), and pr

Re: [Gambas-user] Problem with tableview when in edit mode

2010-03-03 Thread EA7DFH
Doriano Blengino escribió: > Charlie Reinl ha scritto: >> Am Donnerstag, den 03.12.2009, 21:32 +0100 schrieb Doriano Blengino: >> >>> Charlie Reinl ha scritto: >>> Sorry Dariano, no meant, has not changed, even in 2.18.0 Revision: 2447 , the cursor moves from top left t

Re: [Gambas-user] Drawing Area

2010-02-25 Thread EA7DFH
Hi Doriano, I think there is no need to use Draw.Begin and Draw.End when drawings are triggered within the _Draw event. Good introduction, BTW. I'm not used to work with this event, what leads me to ask how to draw directly to a printer using this event, if possible at least. Regards, Jesús Dor