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. -

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] best way to monitor remote URL/file in gambas2

2009-10-13 Thread M0E Lnx
All I want is to compare the contents. For exmple, say yesterday I checked ftp://ftp-osl.osuosl.org and it reported this foo/ bar/ And today, I check again and it has foo/ bar/ foo-bar-1.0.tar.gz I Want to be able to detect the new "foo-bar-1.0.tar.gz" ---

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

2009-10-13 Thread M0E Lnx
Exacly, so I would very much rather not have to jack with a generated index.html I was thinking maybe the gambas http client had some useful functionality for this matter. But i've never used it. For ftp sites for example, curl works perfectly for what I need... for instance, SHELL curl -l ftp:/

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 yea

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

2009-10-12 Thread M0E Lnx
Yeah.. but even then doing that gives me a lot of raw contents to read which is exactly what I'm trying to avoid. -- Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need

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

2009-10-12 Thread M0E Lnx
I was hoping not to have to do that. If I want to monitor large files, this would take forever. I was king of hoping for a way to take a look at the contents of the remote directory. I know you can use curl -l and it will provide a listing similar to a local "ls" output. But that doesn't work wit

[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 comparison

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 t

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

2009-10-07 Thread M0E Lnx
Hi guys, I'm trying to figure out if there is a way to do this in gambas. In python, you can have a dictionary object (declared like "list = [key1:value1,key2:value2,key3:value3]") As you can see, it's like a string[] where each object is a key=value pair. I'm wondering if there is a way to emula

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" wrote: > O

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" wrote: Yes M0E Lnx wrote: > Timer seems to do the trick > > Just to be sure though.. > 5

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 BlackBerry® Developer Conference in SF, CA is the only developer event you nee

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" wrote: I'm writing some

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" 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 clear the status five sec

[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, t

Re: [Gambas-user] howto set starting path for dirview?

2009-08-25 Thread M0E Lnx
If that doesnt work, you may have found a bug... that should be the correct method -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deploym

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

2009-08-24 Thread M0E Lnx
that works here = vluser:$ cat report2.log [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.27.29 CPUArchitecture=i686 DistributionVendor=vector DistributionRelease=Vector Linux 6.0 SOHO Alpha 1.16 [Gambas] Gambas1=Not Installed Gambas2=2.15.2 Gambas2Path=/usr/bin/gbx2 Ga

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

2009-08-24 Thread M0E Lnx
Change distro is not the answer Detect it is the answer. I know for afact other distros that are derived from something else have 2 also. maybe you should take a look at this detection script from os-prober http://nopaste.com/p/ayiMYbr8cb --

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

2009-08-24 Thread M0E Lnx
I think most slackware derivates have 2 also.. I know ubuntu has a ubuntu and a debian identifier as well this is not unique to vectorlinux -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day t

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 deployme

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="" ==

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`" AR

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 and

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
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 a

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] 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 focus

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] 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] 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. Simpli

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 cod

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" wrote: > Am Freitag, den 07.08.2009, 22:24 +0200 schrieb Benoît Minisini: > > > Am Freitag, den 07.08.2009,... With your o

[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 Cry

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 --

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 Cr

Re: [Gambas-user] Reading settings

2009-08-07 Thread M0E Lnx
I wonder if this can make it into the main gambas2 build on some future version. Would be great -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integratio

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
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 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 ter

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 d

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 deployme

[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. Simp

Re: [Gambas-user] Reading settings

2009-08-03 Thread M0E Lnx
Ok... I guess I'll have to find a way around it. I'm not ready to switch to gambas3 yet. -- 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-03 Thread M0E Lnx
How about in gambas2? the Settings class doesn't have a keys property -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day trial. Simplify your report design, integration and deployment - and foc

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 i

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 handl

[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] making an animated demo

2009-07-30 Thread M0E Lnx
Definitely NX I've tested X over ssh, vnc, X11vnc and none of them compare to the speed and quality of NX I do all of my gambas developent over a NX environment. My host box is in SLC, Utah, and I'm sitting @ a desk in Stafford, TX. Response is perfect...No network lag (unless I'm downloading som

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] 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

[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 done

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" wrote: > I just ran into the need for this also, and noticed the listview does not > offer a scroll() metho... Listview items have an "EnsureVisible"

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" wrote: I am trying to use a listview to provide a displa

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

2009-06-10 Thread M0E Lnx
UPDATE: Success! I have built revision 2011... I'm up and running. ALthough I have moved the scrolling to a completely separate program embedded into my original app, the screen does seem to refresh a lot faster. I no longer need the WAIT between each shell process to allow the screen time to ref

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

2009-06-10 Thread M0E Lnx
well, I wanted to try and see if the scrolling issue worked any better... so I decided to refresh my copy of the 2.0 svn branch... revision 2011 was downloaded I attempted to build, and it failed. For some reason it can't find the qt moc exectuble, so configure reported gb.qt as DISABLED. readin

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] 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 (Ca

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] WAIT ... is it an (un) necessary evil for my app?

2009-05-26 Thread M0E Lnx
I just tried this, and in theory this should work. But I think there is a problem here. The progressbar is a 4th generation child. (Host form -> Child form -> hbox -> progressbar) The code that installs the packages is in a module that's not related to the host form. The functions that trigger the

[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 hav

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.

Re: [Gambas-user] SEGFAULT with SHELL

2009-05-26 Thread M0E Lnx
Maybe you need to call the compiler for thesel programs from gambas. Unless your programs are already compiled and you just run their binaries On May 26, 2009 4:02 AM, "juelin" wrote: I have 2 C-program's. lasercall.e run at background and call function in shared library liblumax.so. Calling

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" wrote: M0E Lnx wrote: > Hi all, > > Some of you may have seen my project... a GUI installer for VectorLinux... Shooting

[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 t

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" wrote: Running test right

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" 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 upg

[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] 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" 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 project site. Hope it coul

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" wrote: >

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" 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 +

[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 ro

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" 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 intger b as string

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" wrote: HEllo, how can i format a text like this 1 Auto 20.12.2008 20,15 2 Fahrrad 30.12.20053,22 3 Bus

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" 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: /home/richard/gambas3-svn/src/trunk/gb.d

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

2009-04-21 Thread M0E Lnx
18027 2009-04-15 19:35 פקודות לרובוטק.odt -rw-r--r-- 1 arbelmichal arbelmichal 117248 2009-02-19 07:41 קוח פסיכו.doc On Tue, 2009-04-21 at 12:54 -0500, M0E Lnx wrote: > Post your output of ls -al / > > On Apr 21, 2... >

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" 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

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" 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 died... Thanks Arbel ht

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 SF.

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 acce

Re: [Gambas-user] shared librarry into gambas

2009-04-08 Thread M0E Lnx
I always wandered myself how this works. For instance... in python, you can code something like import gtk import glade import pygtk And use the methods in these modules throughout your app. could this be done in gambas somehow? I have had instances in gambas where I could really use a shared l

Re: [Gambas-user] Proper use of containers

2009-04-08 Thread M0E Lnx
That's what I've noticed. I really need it to arrange, and the only way I can manage that right now is to add other containers inside the frame control and resize these containers manually using the form_resize() event. But this really shouldn't be necessary. Will this be fixed?

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 Environment

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 em

[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 just

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] 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? ---

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] adjusting objects .width property in proportion to their .text property

2009-03-23 Thread M0E Lnx
On the object itself or it's parent? or both? 'cuz I'm trying it here, and none of these combos work -- Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform

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 textlabe

Re: [Gambas-user] New annoyances on gambas2-2.12

2009-03-23 Thread M0E Lnx
good to know 2009/3/23 Benoît Minisini : >> Just upgraded to gambas2-2.12 and noticed an annoyance on the IDE >> On the right panel, where you set the object properties, appears to be >> a gridview where other objects move into the cells and stuff. >> The dropdown boxes, textboxes width property s

[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] 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 cut

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 wrote: >> I have a couple of requests for the gb.gtk component (and maybe even >> the gb.qt a

[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 able

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 wrote: >> Thank you. >> Will it automagically resize or does it have a .width and .height

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 wrote: >> Thank you. >> Will it automagically resize or does it have a .width and .height

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 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

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 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 make the baloon res

Re: [Gambas-user] Switching between forms in tabstrip

2009-02-25 Thread M0E Lnx
The form does have a keypress() event. If you are using a workspace to host(embed) other forms into one host form, you'll have to declare a variable that holds the current object in the workspace, and address the correct object. For example. PUBLIC $CurrentObject as Object on the guest forms open

  1   2   3   >