Re: [Gambas-user] best way to monitor remote URL/file in gambas2

2009-10-13 Thread M0E Lnx
That sounds exacly like what I need. If anyone has an idea how to implement that into a gambas program, please shoot. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you

Re: [Gambas-user] Normal behaviour for GTK+?

2009-10-13 Thread M0E Lnx
NNNOO Please do not depricate gb.gtk. I use it all the time, and I refuse to use qt (stubborn me!) I'm not a gnome user, The closest I get is xfce4, but most of the time I'd use something like flux/openbox or awesome. The gtk toolkit is too popular to be depricated.

[Gambas-user] best way to monitor remote URL/file in gambas2

2009-10-12 Thread M0E Lnx
I'm trying to figure out a way to do this guys. I want an application that can monitor a remote file or URL. For example, the following url http://irssi.org/files/ I want to run the program, and notify me if the contents of that dir have changed since the last time it was checked. The

Re: [Gambas-user] best way to monitor remote URL/file in gambas2

2009-10-12 Thread M0E Lnx
@ Benoit I'd be monitoring other people's URLs.. not mine, so that would be out of my control. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this

Re: [Gambas-user] equivalent to python dictionaries in gambas2?

2009-10-07 Thread M0E Lnx
Will try the collection and see how it goes. I was thinking maybe a multi-dimensional array I know how to use arrays, but not multi-dimensional. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is

Re: [Gambas-user] Using SVN in gambas question

2009-09-24 Thread M0E Lnx
Yes.. I just check out the code and load the peoject. I've had issues in the past where gambas would add the .gambas (hidden) directory to svn. That creates a problem. So I just exclude that dir from version control and that takes care of it On Sep 24, 2009 6:10 PM, Benoît Minisini

Re: [Gambas-user] Using SVN in gambas question

2009-09-23 Thread M0E Lnx
I have always created the project without the subversion option enabled. The added the project to the svn repo. after that, then you open the project with the gambas ide you can commit and update using the gui. Always worked for me On Sep 23, 2009 4:23 AM, richard terry rte...@pacific.net.au

Re: [Gambas-user] Passive wait ???

2009-09-23 Thread M0E Lnx
Timer seems to do the trick Just to be sure though.. 5 seconds = 5000 miliseconds? Can somebody verify that for me? -- Come build with us! The BlackBerryreg; Developer Conference in SF, CA is the only developer event you

Re: [Gambas-user] Passive wait ???

2009-09-23 Thread M0E Lnx
Great. Thank you. This takes care of what I needed to do On Sep 23, 2009 2:47 PM, Lee McPherson leemcpher...@gmail.com wrote: Yes M0E Lnx wrote: Timer seems to do the trick Just to be sure though.. 5 seconds = 5000 milise

[Gambas-user] Passive wait ???

2009-09-22 Thread M0E Lnx
I'm trying to implement soft of a status bar on my application. When certain actions are performed, I want to display the successful results on this status bar, rather than a pop-up message. This is an attempt to reduce the number of clicks necessary (get annoying after a while). So I thought, to

Re: [Gambas-user] Passive wait ???

2009-09-22 Thread M0E Lnx
Never heard of a statuslabel before... but yes... I need it to clear after 5 seconds On Sep 22, 2009 5:07 PM, Benoît Minisini gam...@users.sourceforge.net wrote: I'm trying to implement soft of a status bar on my application. When certain actions are p... Sorry: ...and starts a timer to

Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
Ohh, I guess it needs gambas3 I'm still using gambas2 here. Wanted to try it on VectorLinux -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration

Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
I see where it detected my gambas version But there is no OS information reported - root:$ cat report.log [OperativeSystem] OperativeSystem=Linux KernelRelease=2.6.27.29 Distribution= [Hardwate] [Gambas] Gambas= Gambas2=2.15.2 Gambas3= --

Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
I get an error says report2: line 23: [: /etc/slackware-version: binary operator expected -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration

Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
and the overall output is not good... your quotes are throwin the whole thing off I think == #!/bin/bash # System Report # GPL'd # Based on David Villalobos Cambronero's original report script # Collect the data for OS OutputFile='report2.log'; OS=`uname` KERNEL=`uname -r`

Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
Still not good on Vector == vluser:$ cat report.log [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.27.29 [Distribution] ID= RELEASE= CODENAME= DESCRIPTION= [Hardware] Architecture=2.6.27.29 [Gambas] Gambas= Gambas2=2.15.2 Gambas3= == And here is the

Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
As I said before, vector has both, /etc/vector-version and /etc/slackware-version -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and

Re: [Gambas-user] To the wish list...

2009-08-21 Thread M0E Lnx
Can you use the array.find() method? maybe loop through the array? -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and

Re: [Gambas-user] To the wish list...

2009-08-21 Thread M0E Lnx
What I do also to avoid duplicates is check the array before you add the new entry to it IF MyArray.Find(YourString) = -1 THEN MyArray.Add(YourString) -- Let Crystal Reports handle the reporting - Free Crystal Reports

Re: [Gambas-user] Need help / call for volunteers

2009-08-18 Thread M0E Lnx
Interesting project. My hands are plenty tied with my own projects though, but I think we can all pitch in to work with who ever takes up the project for example by giving any pointer that would help him/her identify whichever distro we all run and that sort of stuff.

Re: [Gambas-user] Need help / call for volunteers

2009-08-18 Thread M0E Lnx
For vectorlinux, you want the result of # cat /etc/vector-version console responds with something like Vectorlinux 6.0 SOHO built on 08012008 I know a lot of distros have something in etc like /etc/slackware-version /etc/debian etc...etc...etc.

Re: [Gambas-user] Reading settings

2009-08-08 Thread M0E Lnx
Ok. Gambas is open source after all, so if it's all gambas code, and you posted the thing here I got no problem with it. Thanks -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial.

[Gambas-user] Text formatting on textlabel (gb.gtk)

2009-08-07 Thread M0E Lnx
Hi guys, Using gambas2-2.15.2 and gb.gtk for my app Is there any way to insert a bullet character into a textlabel's .text value? -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial.

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
Is this supposed to give the gb.settings the functionality of gb3 get keys thing? -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
How do i bring this over to my gambas2 installation? -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
I tried to follow your instructions. When loading the project, te gambas IDE complained about gb.settings missing, so I clicked the OK button. went to Main.Main() sub and changed the path to an existing settings file, and the strings to something else following your format. when I debug it, it

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
Never mind, I figured it out It looks like what I need -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
Before I install it to the user component directory, do I need to clear the string in Main.Main? or does that not matter if I leave the srings in there? Also, when using in my app, do I need both the gb.settings and the gb.settings-bp or just the gb.settings-bp?

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
So if I grab the Settings class from this project and import it into my project, then I dont need to use the native gb.settings class Will that suffice? what do I do with the Main module and the _Settings class? -- Let

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
It works if I import it's Main.module also so this is what I did 1) Disable the gb.settings from project - components 2) import Settings.class and _SettingsKeys from gb.settings-bp 3) import Main.module from gb.settings-bp My app works now as it should

[Gambas-user] Gambas sticker graphic?

2009-08-07 Thread M0E Lnx
I think I recall somebody posting a gambas sticker here a while back. I seem to have lost that email. Can someone shoot it out this way if they have it please? Thanks -- Let Crystal Reports handle the reporting - Free

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
Speaking of legal stuff. My project is released under the gpl v3. Can the guy who wrote this add licensing so I can use it please? On Aug 7, 2009 4:11 PM, Benoît Minisini gam...@users.sourceforge.net wrote: Am Freitag, den 07.08.2009, 22:24 +0200 schrieb Benoît Minisini:Am Freitag, den

Re: [Gambas-user] Gambas sticker graphic?

2009-08-07 Thread M0E Lnx
Thanks guys. That works. -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and focus on what you do best, core application

[Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
Guys, I've been working with gb.settings on a couple of my apps in the past, but I have a question. Is there any way to sort of browse through the stored settings? I guess to see what settings are defined in the settings file?

Re: [Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
I should have said something native to gambas without having to cat the thing using a shell process. I mean, I'll do it if it's the only way, but I'd rather do it in gambas if at all possible. -- Let Crystal Reports

Re: [Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
Yeah.. that's what I mean. But I'd like to take a peek at the settings and see what all is in there from gambas Let's say my settings file has something like [FMAIN] Width=300 Height=200 X=0 [Form1] Width=400 Height=200 X=10 How can I check for something lie [FMAIN] or [Form1] ? and see if it

[Gambas-user] question about CATCH

2009-06-18 Thread M0E Lnx
So I've been looking at this http://gambasdoc.org/help/lang/catch My question is... Can the sub/function continue after catch has been declared, or should catch always be the last thing in the sub? For instance PUBLIC SUB Save_a_file() DIM sStr AS String File.Save(/tmp/test,sStr) CATCH PRINT

Re: [Gambas-user] question about CATCH

2009-06-18 Thread M0E Lnx
Ok... that clears things up.. I know for a fact that FINALLY has to come before CATCH (if present) otherwise, the project wont compile... Thanks for the clearing this up for me... it's been one of those tings in the back of my head. ;)

[Gambas-user] Translated strings from settings file

2009-06-16 Thread M0E Lnx
Hi guys, I'm using the gb.settings component to read a settings file and manipulate it's values in my application. My question is My application is also translated into other languages... How would can I make sure the strings coming from the settings file get translated also? Anyone ever

Re: [Gambas-user] Smooth Scrolling (not happening)

2009-06-10 Thread M0E Lnx
I just tried building the latest svn (2011) and it wont build anymore... I mean it builds, but gb.qt wont, so the IDE is useless... does not load I have both qt-3.3.8b and qt4-4.5.0 installed all previous versions have built without a problem.

Re: [Gambas-user] scroll to bottom

2009-06-10 Thread M0E Lnx
I just ran into the need for this also, and noticed the listview does not offer a scroll() method. In my case I need to scroll it back to 0,0 the very top. Anyone got any idea how to get this done? On Jun 10, 2009 2:10 PM, Pete Morrison pkmorri...@gmail.com wrote: I am trying to use a listview

Re: [Gambas-user] scroll to bottom

2009-06-10 Thread M0E Lnx
Whoops... mine isn't a listview, but rather a listbox. Anything I can do to get the same results here? On Jun 10, 2009 2:20 PM, Benoît Minisini gam...@users.sourceforge.net wrote: I just ran into the need for this also, and noticed the listview does not offer a scroll() metho... Listview

Re: [Gambas-user] WAIT ... is it an (un) necessary evil for my app?

2009-05-29 Thread M0E Lnx
Just for giggles, I switched my app over to use gb.qt and gb.qt.ext and it seems to work a lot better... So that raises the question, Could this be yet another gb.gtk bug? -- Register Now for Creativity and Technology

Re: [Gambas-user] WAIT ... is it an (un) necessary evil for my app?

2009-05-27 Thread M0E Lnx
Anyone else have any other suggestions? I still can't get this to work. Adding the wait on the process_kill() event also allows the progressbar to refresh, but I the results are the same...performance suffers with this lag at the end of every process.

Re: [Gambas-user] Smooth Scrolling (not happening)

2009-05-26 Thread M0E Lnx
I guess he meant sort of embedded. A quick and dirty way around this issue. An embedder on the host form that runs a separate gambas binary which is designed to scroll and scroll only. This is what I've done here for my application, but it's not exactly the way I'd rather do it.

[Gambas-user] WAIT ... is it an (un) necessary evil for my app?

2009-05-26 Thread M0E Lnx
So, the next version of my vinstall-ng app is really shaping up nicely, but I'm running into a weird dilemma here. This is a linux installer, so there is a lot of decompression going on in the background as packages are being installed using via the gambas EXEC method. Here is the problem I'm

[Gambas-user] Smooth Scrolling (not happening)

2009-05-20 Thread M0E Lnx
Hi all, Some of you may have seen my project... a GUI installer for VectorLinux. I've gotten the functionality parts to work, and it's all good. I do have one annoyance that I can't shake and this is where I need help. While packages are being installed, I have a scrollview that scrolls through

Re: [Gambas-user] Smooth Scrolling (not happening)

2009-05-20 Thread M0E Lnx
I just tried that and all I accomplished was longer installation times perpackage. The srolling is not improved at all. On May 20, 2009 11:21 AM, Werner wd...@netfront.net wrote: M0E Lnx wrote: Hi all, Some of you may have seen my project... a GUI installer for VectorLinux... Shooting from

[Gambas-user] gambas2-2.13 build failing

2009-05-18 Thread M0E Lnx
I'm trying to upgrade to 2.13.0 and my build is failing during the gb.gtk build process. Here is a link to the error details http://nopaste.com/p/aUCCbdxsqb This is VectorLinux 6.0 (based on slackware 12.1) gtk version is 2.12.9 Any ideas?

Re: [Gambas-user] gambas2-2.13 build failing

2009-05-18 Thread M0E Lnx
Running test right now... on rev 1904. Will report back in a bit On May 18, 2009 10:16 AM, Stefano Palmeri rospolo...@tiscali.it wrote: Il lunedì 18 maggio 2009 17:05:33 Benoît Minisini ha scritto: Il lunedì 18 maggio 2009 16:23:25 M0E Lnx ha scritto:I'm trying to upgrade to 2.13.0

Re: [Gambas-user] gambas2-2.13 build failing

2009-05-18 Thread M0E Lnx
Ok. My test on svn rev 1964 reveals success. So it is fixed. I will wait for the official 2.13.1 to build again because this is the official package for our distro. But again... it seems fixed in svn now... make succeeded On May 18, 2009 10:18 AM, M0E Lnx m0e@gmail.com wrote: Running test

Re: [Gambas-user] A web page for Gambas applications

2009-05-14 Thread M0E Lnx
Here is one of mine NAME: Moises Henriquez APP NAME: vinstall-ng DESCRIPTION: A graphical linux installer HOME PAGE: http:// vinstall-ng.googlecode.com Sorry can't attach screenie from my mobile phone, but several available @ the project page On May 14, 2009 6:51 AM, Benoît Minisini

Re: [Gambas-user] A web page for Gambas applications

2009-05-14 Thread M0E Lnx
Where is the uel for the page? On May 14, 2009 6:16 PM, Jesus Guardon jguar...@telefonica.net wrote: Name: Jesus Guardon Title: dfhLog Description: General purpose Amateur Radio logging application Project page: http://code.google.com/p/dfhlog/ ScreenShot: attached 'dfhlog.png' and more on

[Gambas-user] Rounding numbers to pre-set increments

2009-04-30 Thread M0E Lnx
This dilema is running circles around my head... I need help I need a way to take a number, say an integer and round it up to the nearest increment of 250. This may imply decreasing or increasing the number. For instance input = 400 I need my app to round up to 500 input = 550 I need my app to

Re: [Gambas-user] Rounding numbers to pre-set increments

2009-04-30 Thread M0E Lnx
Thank you guys. The first suggestion worked. On Apr 30, 2009 3:24 PM, Simonart Dominique simonart.domini...@wanadoo.fr wrote: Frank Cox a écrit : On Thu, 30 Apr 2009 14:00:06 -0500 M0E Lnx wrote:I need a way to take a number, say an... A = N mod 250 N = N - A if A 125 then N += 250

Re: [Gambas-user] define data-variable as record

2009-04-25 Thread M0E Lnx
Never heard of such a thing. But maybe a variant type of variable will do what you need On Apr 25, 2009 3:57 AM, juelin juergen.lin...@gmx.de wrote: hello, it is possible to define a record into gambas? thats mean a variable with different datatypes for example: type recorda as record a as

Re: [Gambas-user] Format Text

2009-04-23 Thread M0E Lnx
How about using something like space(5) between each string? On Apr 23, 2009 9:16 AM, Stefan Miefert smief...@kikxxl.de wrote: HEllo, how can i format a text like this 1 Auto 20.12.2008 20,15 2 Fahrrad 30.12.20053,22 3

Re: [Gambas-user] build failing 1931

2009-04-22 Thread M0E Lnx
Do you have mysql installed? On Apr 22, 2009 5:32 PM, richard terry rte...@pacific.net.au wrote: The last few builds from 1929 on seem to be failing on my machine here: Is this just my problem? Compiling the gb.db.mysql project... gb.db.mysql gbc: project file not found:

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread M0E Lnx
I have seen this before. My problem was solved by restoring the sane permissions to my /tmp dir On Apr 21, 2009 11:55 AM, arbelmichal arbelmic...@gezer.org.il wrote: Hi Please read this thread and see if you can help me... I got project that I am working on and I hed to stop beacuase my Gambas

Re: [Gambas-user] a problem installing gambas...

2009-04-21 Thread M0E Lnx
Post your output of ls -al / On Apr 21, 2009 12:30 PM, arbelmichal arbelmic...@gezer.org.il wrote: can you please explain a bit more? What do I have to do? Arbel On Tue, 2009-04-21 at 12:17 -0500, M0E Lnx wrote: I have seen this before. My problem was solved b

Re: [Gambas-user] shared librarry into gambas

2009-04-13 Thread M0E Lnx
Thanks a lot man... This certainly helps. I'll see if I can follow your example into making something useful with libparted. I found the API references here http://www.gnu.org/software/parted/api/modules.html -- This

Re: [Gambas-user] shared librarry into gambas

2009-04-09 Thread M0E Lnx
Huh!. I wouldn't be surprised at all if your arguments are true, but for someone like myself, I feel that the documentation on this subject very limited. I will try to look at some examples. I need to access the libparted library, in the mean time, if you want to work up a sample for me that

Re: [Gambas-user] Proper use of containers

2009-04-08 Thread M0E Lnx
See attached project. I think the problem is in the frame object. It doesn't resize it's child objects. Since the hbox inside the frame does not get resized, the hbox cannot resize it's children objects. -- This SF.net

Re: [Gambas-user] Proper use of containers

2009-04-08 Thread M0E Lnx
Whooops... forgot to actually attach the project Here it is now nester-0.0.1.tar.gz Description: GNU Zip compressed data -- This SF.net email is sponsored by: High Quality Requirements in a Collaborative

[Gambas-user] Proper use of containers

2009-04-07 Thread M0E Lnx
So I'm trying to put all my objects in containers for easy handling of window resizing, but I've ran into a problem. Here is the problem. Hpanel1 ( expand=true) |- Frame1 (expand=true) |- Hbox1 (expand=true) | - Textlabel1 (expand=true), |- Combobox1 (expand=true) the frame resizes

Re: [Gambas-user] Ugly gtk warnings with tabstrip object

2009-04-06 Thread M0E Lnx
I run clearlooks with tango for icons. -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Dynamic objects

2009-03-24 Thread M0E Lnx
I have no experience with mysql at all, but you can easily create this textbox PUBLIC SUB Read_DBASE() DIM sList as string DIM sResults as String[] DIM tb as TextBox DIM sItem as String DIM i as integer dim y as integer ' This is where you get your values from mysql and let's assume you put them

Re: [Gambas-user] My first rodeo in using the network component

2009-03-24 Thread M0E Lnx
How exactly do you do this? What I need is to get the listing of a FTP directory and analyze it.. I can do that in gambas code, but I thought I could use the net component to get the listing. Would you mind explaining how your method works?

[Gambas-user] adjusting objects .width property in proportion to their .text property

2009-03-23 Thread M0E Lnx
I've always had this problem in gambas. Using gb.gtk I have buttons, textlabels and such objects on a form. My project is translatable, which means that the space needed for the their .text property is not always the same. Is there a way gambas could figure out exacly object's width needed to fit

Re: [Gambas-user] adjusting objects .width property in proportion to their .text property

2009-03-23 Thread M0E Lnx
Does the AutoResize property work when the object is a child to something like an hbox whose .expand property is set to true? I'm having a hard time getting this to work on mine here. I have an HBOX set expand=true All child objects of this hbox have their .expand property set to true but

[Gambas-user] Feature requests

2009-03-04 Thread M0E Lnx
I have a couple of requests for the gb.gtk component (and maybe even the gb.qt as well) It's about progressbars. I'd like to use a progressbar like alternating progressbar (like the one used in the gparted windows while executing changes (top one)) alternates from left to right I'd like to be

Re: [Gambas-user] Feature requests

2009-03-04 Thread M0E Lnx
I'm not sure how to do this... THe progressbar only moves in one direction, and the .label property is a boolean... Dont know how to change any of that. On Wed, Mar 4, 2009 at 11:09 AM, Benoît Minisini gam...@users.sourceforge.net wrote: I have a couple of requests for the gb.gtk component

Re: [Gambas-user] Feature requests

2009-03-04 Thread M0E Lnx
? -- Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise -Strategies to boost innovation and

Re: [Gambas-user] baloon size

2009-03-03 Thread M0E Lnx
When do you expect the next gambas2 release to be? I'm trying to figure out if it's worth it for me to build the svn tree or wait a bit for the next release. On Tue, Mar 3, 2009 at 2:08 PM, Benoît Minisini gam...@users.sourceforge.net wrote: Thank you. Will it automagically resize or does it

Re: [Gambas-user] baloon size

2009-03-03 Thread M0E Lnx
When do you expect the next gambas2 release to be? I'm trying to figure out if it's worth it for me to build the svn tree or wait a bit for the next release. On Tue, Mar 3, 2009 at 2:08 PM, Benoît Minisini gam...@users.sourceforge.net wrote: Thank you. Will it automagically resize or does it

Re: [Gambas-user] baloon size

2009-03-02 Thread M0E Lnx
Thank you. Will it automagically resize or does it have a .width and .height property that I need to adjust? On Tue, Mar 3, 2009 at 5:33 AM, Benoît Minisini gam...@users.sourceforge.net wrote: Is there any way to get a balloon to resize to what I need? I'm using aballoon to display about 12

Re: [Gambas-user] baloon size

2009-02-26 Thread M0E Lnx
when can I expect to see this fixed? On Thu, Feb 26, 2009 at 7:31 AM, Benoît Minisini gam...@users.sourceforge.net wrote: Is there any way to get a balloon to resize to what I need? I'm using aballoon to display about 12 lines of text (each line about 70 characters long) Is there any way to

Re: [Gambas-user] Missing dependencies in compiled packages

2009-02-25 Thread M0E Lnx
BTW, the 3.0 development branch is said to have support for such a thing... I have yet to try it. -- Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA -OSBC tackles the biggest issue in open

Re: [Gambas-user] Missing dependencies in compiled packages

2009-02-25 Thread M0E Lnx
I asked this question a long time ago (08/18/08) Apparently, there are no provisions for this in the gambas2 branch. I was referred to this back then http://gambas.svn.sourceforge.net/viewvc/gambas?view=revrevision=1520 (notice the log message) In the mean time, you may need to study your .deb

Re: [Gambas-user] Change translations at runtime

2009-02-25 Thread M0E Lnx
I have a program that runs the same way. Unfortunately, for translations to take place, all translated objects must be destroyed and re-created under the new environment. The first time around, I created a loop to restart the application after setting the right environment. Later, I realized that

[Gambas-user] baloon size

2009-02-23 Thread M0E Lnx
Is there any way to get a balloon to resize to what I need? I'm using aballoon to display about 12 lines of text (each line about 70 characters long) Is there any way to make the baloon resize to fit such a thing? Using Gambas2-2.11.1

[Gambas-user] Nesting objects into gridview cells

2009-01-30 Thread M0E Lnx
Hello guys. I'd like to know how if anyone has ever been able to nest objects like comboboxes, buttons, checkboxes or anything like that into a gridview's cell. I guess what I'm looking for is a way to do what the gambas IDE does for a forms or objects properties side panel I'm attaching a

Re: [Gambas-user] Sidepanel bug?

2008-12-22 Thread M0E Lnx
I did report a bug with this object in gb.gtk though. the first time you try to shrink it, it does shink, but you can't restore it again you have to manually drag it and resize it back to it's normal size. Shrinking and expanding work fine after the that. On Sat, Dec 20, 2008 at 11:20 PM, Benoit

[Gambas-user] sidepanel object + gb.gtk bug

2008-12-17 Thread M0E Lnx
I develop a couple of application in gambas2-2.9.0, both of which have a sidepanel object. Both use gb.gtk. I've found something that I believe is a bug. Does not happen when I use the gb.qt component When I click the little on the side panel (to hide it) it goes well, but when I click it again

Re: [Gambas-user] parent of current item

2008-12-16 Thread M0E Lnx
If you do not provide a Key, gambas will assign one, but you can provide one as a string. Like this Prep -Prep0 -Prep1 Inst -Inst0 -Inst1 Conf -Conf0 -Conf1 On Tue, Dec 16, 2008 at 11:11 AM, Wally wa...@voosen.eu wrote: How to get the parent of the current item in treeview ?

Re: [Gambas-user] Drag Drop to KDE Desktop

2008-12-16 Thread M0E Lnx
AFAIK, such a feature doesn't exist yet... I remember asking about it some time ago. At least not in 2.x On Tue, Dec 16, 2008 at 2:15 PM, Doriano Blengino doriano.bleng...@fastwebnet.it wrote: Hi list, how can I implement dragdrop with the desktop? I mean, drag an item (a filename, for

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-15 Thread M0E Lnx
the form's show event, not the open event. Steven Le lundi 15 décembre 2008 à 09:36 -0600, M0E Lnx a écrit : BTW, the functions that populate my content are called in each form's _Open() event On Mon, Dec 15, 2008 at 9:34 AM, M0E Lnx m0e@gmail.com wrote: After testing this, I do have

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-12 Thread M0E Lnx
: [Gambas-user] Emulating wizard Back/Next navigation M0E Lnx a écrit : I just can't seem to completely wrap my mind around this one. It really doesn't matter if i return to the same state or not... as long as I return there. it gets complicated when for instance, you go in a sequence from

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread M0E Lnx
, 2008 at 2:23 PM, Simonart Dominique simonart.domini...@wanadoo.fr wrote: M0E Lnx a écrit : I have to say, the array idea makes more sense to me, simply because otherwise, it'll be hard to tell the next and back buttons which sub to run. I have tried an array, but object array rather than

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread M0E Lnx
) Endif -- Original Message --- From: M0E Lnx m0e@gmail.com To: mailing list for gambas users gambas-user@lists.sourceforge.net Sent: Thu, 11 Dec 2008 14:50:38 -0600 Subject: Re: [Gambas-user] Emulating wizard Back/Next navigation Exactly. The forward navigation

Re: [Gambas-user] Emulating wizard Back/Next navigation

2008-12-11 Thread M0E Lnx
skip 3 and jump to 4 or 5. On Thu, Dec 11, 2008 at 3:40 PM, Simonart Dominique simonart.domini...@wanadoo.fr wrote: M0E Lnx a écrit : Exactly. The forward navigation depends on the user input, so it could jump from Form1 to Form3 and then to Form2 ans do on... So if we leave a footprint

[Gambas-user] Gambas2-2.9 Possible bug when running in russian locale

2008-12-05 Thread M0E Lnx
Here is the problem. I have an application which offers different languages to select from (English, Spanish, and Russian ATM) The problem is that when I select russian, I get this error that says This application has raised an unexpected error and must abort [31] Unsupported string conversion.

[Gambas-user] Feature request

2008-12-05 Thread M0E Lnx
I've noticed the radio button has no .Adjust method. This would be nice, because in my case, I have a radio button with text, that when translated to other languages can be quite long. It'd be nice to have it work like the textlabels work with an .adjust method. Cheers!

Re: [Gambas-user] Feature request for Message()

2008-11-11 Thread M0E Lnx
Very nice ;) Thank you On Tue, Nov 11, 2008 at 8:11 AM, Benoit Minisini [EMAIL PROTECTED] wrote: On mardi 7 octobre 2008, M0E Lnx wrote: I'd like to see a way to modify the message's title when using the Message() function to display a message. Maybe it should default to the project title

Re: [Gambas-user] Alternating progressbars

2008-11-07 Thread M0E Lnx
I know other GTK applications can do this... Kind of hoping it gets implemented into gambas3 at least if it doesn't make it in Gambas 2 On Fri, Nov 7, 2008 at 2:52 PM, birchy [EMAIL PROTECTED] wrote: M0E Lnx wrote: Is there a way to do alternating progressbars in gambas? I also have a need

Re: [Gambas-user] How to make a treeview un-clickeable

2008-11-04 Thread M0E Lnx
THanks On Tue, Nov 4, 2008 at 10:58 AM, Benoit Minisini [EMAIL PROTECTED] wrote: On mardi 4 novembre 2008, M0E Lnx wrote: Can anyone suggest a way to do this? I have a treeview which I intend to use as a simple list of tasks to perform. The treeview selection and pictures and stuff

Re: [Gambas-user] Multiple instances of Gambas ...

2008-11-04 Thread M0E Lnx
Nice ;) On Tue, Nov 4, 2008 at 2:23 PM, Jose J. Rodriguez [EMAIL PROTECTED] wrote: On 11/4/08, Gareth Bult [EMAIL PROTECTED] wrote: I have 4 screens .. I start Gambas on screen 3 .. then gambas2 will work quite happily on screens 2,3 and 4 , but will give the dump as quoted if started on

Re: [Gambas-user] Shipping translations for my project

2008-10-31 Thread M0E Lnx
] wrote: On jeudi 30 octobre 2008, M0E Lnx wrote: And that's what I'm doing at the moment. But that only works when the application is ran inside the IDE if I run it outside the IDE, then it doesn't list the languages not even when ran from the same directory that contains .lang suggestions

[Gambas-user] Shipping translations for my project

2008-10-30 Thread M0E Lnx
I'm working on this project and I'm offering translations. My question now is... where do I put the translations so my program can get to them? Is there a GNU Standard for this anyone knows of? And what is the best way of listing the offered translations withoug having to hard code a list?

Re: [Gambas-user] Shipping translations for my project

2008-10-30 Thread M0E Lnx
I've got the translations... but what do I do with them? If it is all automatic, how can I offer the end user the choice of languages? On Thu, Oct 30, 2008 at 10:59 AM, Benoit Minisini [EMAIL PROTECTED] wrote: On jeudi 30 octobre 2008, M0E Lnx wrote: I'm working on this project and I'm

  1   2   >