Re: [Gambas-user] A step forward in Gambas!

2011-06-16 Thread Nicolas Koch
Too bad I sold my MAC. :( On Thu, Jun 16, 2011 at 9:35 PM, John Spikowski wrote: > On Fri, 2011-06-17 at 11:27 +1000, richard terry wrote: > > On Friday 17 June 2011 10:47:39 John Spikowski wrote: > > Do the webcam and movie playing/pdf examples work in the Mac? > > > *** TYPO *** > > > Any chanc

Re: [Gambas-user] Gambas on Suse 11.4

2011-04-15 Thread Nicolas Koch
I have had 11.3 and then went to 11.4 when it first came out. I have both Gambas 2.23 and Gambas RC1 running perfectly. On Thu, Apr 14, 2011 at 11:30 AM, Girard Henri wrote: > compilation gambas3 on 11.4 : No more problems. > > Le jeudi 14 avril 2011 à 16:40 +0200, Steven Lobbezoo a écrit : > >

[Gambas-user] Gambas 2.15.2_2 has just been released.on PBIdir for PC-BSD

2011-03-22 Thread Nicolas Koch
Gambas 2.15.2 is a little old, but at least users no longer have to build 2.15 from freshports on PC-BSD. Enjoy! http://www.pbidir.com/bt/pbi/6/gambas -- -Nick -- Enable your software for Intel(R) Active Management Tech

Re: [Gambas-user] CDE. An interesting packaging tool

2011-02-25 Thread Nicolas Koch
So I imagine this has been forgotten and dropped by the wayside, but I have found cde to be very useful in making my app work in opensolaris, OpenIndiana, PC-BSD and some linux builds, mainly suse and ubuntu. @Benoît I think cde may be the best viable solution at packaging libraries for specified

[Gambas-user] ListView with spaces help

2011-01-29 Thread Nicolas Koch
I have a populated ListView and I want to run commands from the list, but the list items with spaces won't work in SHELL or EXEC. Message.Info(ListView.Current.Text) will return the list item with spaces as it should ie. "this is test" however when I go to EXEC [ListView.Current.Text] or SHELL L

Re: [Gambas-user] CDE. An interesting packaging tool

2010-12-21 Thread Nicolas Koch
IS there any movement on the Gambas3 packaging suite to compile and/or include the runtime and libs for the various distributions? I also looked at the CDE route and exceptions can be made to keep files to a minimum and just run your app with cde gbr3 project.gambas I got minimal results though b

Re: [Gambas-user] Gambas2 to 3 port error "Form.Delete is badly overridden in class"

2010-12-14 Thread Nicolas Koch
>have you converted your forms ? menu>tools> Yes >why not check for this after project load and ask the user to convert them? yes I have checked and verified. >The Delete() was reimplemented in your form. But its syntax differs from the >original Delete() method from the Control class. This i

[Gambas-user] Gambas2 to 3 port error "Form.Delete is badly overridden in class"

2010-12-13 Thread Nicolas Koch
I just finished compiling Gambas3 and verified I can play with some code and test ok, however, when i port my project gambas2 to gambas3 I get error : "Form.Delete is badly overridden in class" What do I need to look or change to fix that? I have verified that form files say Gambas Form file 3.0

Re: [Gambas-user] two separate groups of RadioButton same Form

2010-12-11 Thread Nicolas Koch
ame. > > Ed K. > > Nicolas Koch wrote: > > So I had taken a year hiatus away from the GAMBAS community due to the > > military and am finally back home coding again. :D I gotta tell you I > > really miss and love coding in GAMBAS. anyways on to my question... > > >

[Gambas-user] two separate groups of RadioButton same Form

2010-12-11 Thread Nicolas Koch
So I had taken a year hiatus away from the GAMBAS community due to the military and am finally back home coding again. :D I gotta tell you I really miss and love coding in GAMBAS. anyways on to my question... I have a Form and I want to have two separate groups of RadioButtons. In each group of

Re: [Gambas-user] GAMBAS Suggestions

2008-12-08 Thread Nicolas Koch
> The Plone CMS was a bit too complex for my taste. I admit a bug tracker is > needed, but I'd like something like bugzilla, in a simpler way if > possible. :-) In that case I'd recommend Trac http://trac.edgewall.org It is a very good tracker like bugzilla, but incorporates a wiki and has severa

Re: [Gambas-user] GAMBAS Suggestions

2008-12-07 Thread Nicolas Koch
>In other words, the only way things ever get done in free software is >through someone who takes the initiative. Please don't feel you need to >ask before doing something for the community. I am quite aware of this and am in some other communities as a prominent figure precisely because of initi

Re: [Gambas-user] Small window without gadgets

2008-12-04 Thread Nicolas Koch
Rolf, > The question is simple: Is it possible to make a small window without > any gadgets appear and disappear after some seconds showing a small hint > such as "you got new messages..."? Yes. Ok on your project you have your main form say FMain, create another form call it FNewMsg. On FMain

Re: [Gambas-user] TrayIcon control

2008-12-03 Thread Nicolas Koch
Toni, Are you using gb.gtk, gb.gui or gb.qt? I have replicated the same error only with gb.qt or using gb.gui while in KDE. Regards, Nick On Wed, Dec 3, 2008 at 8:46 PM, Toni <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using the "trayicon" control and I have found a couple of problems > with it.

Re: [Gambas-user] ComboBox Error when ComboBox.Remove("1") / possible bug in gb.gtk?

2008-11-26 Thread Nicolas Koch
> FOR EACH $DIR IN Dir(sPath, "*") >if left$($DIR,1)<>"." then ComboBox1.Add($DIR) > NEXT Thanks Ron and Thank you for schooling me Benoit for explaining to me what I was doing wrong. Best Regards, Nick - This SF.Net

Re: [Gambas-user] ComboBox Error when ComboBox.Remove("1") / possible bug in gb.gtk?

2008-11-26 Thread Nicolas Koch
AIL PROTECTED]> wrote: > On jeudi 27 novembre 2008, Nicolas Koch wrote: >> Hello Gambas Users, >> >> Ok an interesting problem I've noticed in gb.gtk or with gb.gui. If >> you have a ComboBox with items in it and you try to hide one of the >> items from

[Gambas-user] ComboBox Error when ComboBox.Remove("1") / possible bug in gb.gtk?

2008-11-26 Thread Nicolas Koch
Hello Gambas Users, Ok an interesting problem I've noticed in gb.gtk or with gb.gui. If you have a ComboBox with items in it and you try to hide one of the items from listing invoking ComboBox1.Remove("1") you'll get this error. (test 26729): Gtk-WARNING **: gtktreemodel.c:429: Negative numbers

Re: [Gambas-user] how-to execute file or bash script packaged inside gambas

2008-11-22 Thread Nicolas Koch
Stefano, Thank you so much. > - > DIM sTempScript as String > > sTempScript = Temp$ > > COPY "update.sh" TO sTempscript > > SHELL sTempScript WAIT > Regards, Nick --

[Gambas-user] how-to execute file or bash script packaged inside gambas

2008-11-22 Thread Nicolas Koch
Ok so I have created a gambas application and everything works except for exec or shell a bash script that is packaged in the data folder update.sh How do I get Gambas to run scripts packaged in project.gambas? - This SF.Net

[Gambas-user] columnview and combobox list as directories "ls"

2008-11-16 Thread Nicolas Koch
Hey everyone, I have been looking for an example, but have been unable to find the following: 1st thing I need a combobox1 to have a list that gets its items from a directory listing "ls" 2nd thing is a ColumnView1 that has 3 columns Directory, Size and Location and also Refresh() ColumnView1.

Re: [Gambas-user] ColumnView and exec or shell to button

2008-11-15 Thread Nicolas Koch
SHELL "~/.wrtest" &/ data END Regards, Nick On Sun, Nov 16, 2008 at 12:42 AM, Doriano Blengino <[EMAIL PROTECTED]> wrote: > Nicolas Koch ha scritto: >> well this is what I got so far >> >> Just to clarify Software = CloumnView1 >> &g

Re: [Gambas-user] ColumnView and exec or shell to button

2008-11-15 Thread Nicolas Koch
D Where would I add the command for each row in the column? Is this correct so far? Nick On Sat, Nov 15, 2008 at 10:59 PM, Doriano Blengino <[EMAIL PROTECTED]> wrote: > Nicolas Koch ha scritto: >> For the button_click() I have the following >> >> PUBLIC SUB button_Clic

Re: [Gambas-user] ColumnView and exec or shell to button

2008-11-15 Thread Nicolas Koch
v 15, 2008 at 9:15 PM, Nicolas Koch <[EMAIL PROTECTED]> wrote: > I can't figure out how to have each item in the ColumnView1 have a > command and then run from a single button_click() Can someone help > me out here? Each row or key will have there own shell command that >

[Gambas-user] ColumnView and exec or shell to button

2008-11-15 Thread Nicolas Koch
I can't figure out how to have each item in the ColumnView1 have a command and then run from a single button_click() Can someone help me out here? Each row or key will have there own shell command that needs to be run. Thanks in advance -