Re: [Gambas-user] Latest Gambas packages for Ubuntu - Broken?

2008-11-14 Thread MaxVK


Epíleg wrote:
> 
> ...You can build them Yourself.
> 
> http://packages.debian.org/unstable/source/gambas2
> 

Heh! I didn't actually follow the link because it used the word 'unstable',
hence my reply!
-- 
View this message in context: 
http://www.nabble.com/Latest-Gambas-packages-for-Ubuntu---Broken--tp20408776p20508049.html
Sent from the gambas-user mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Latest Gambas packages for Ubuntu - Broken?

2008-11-14 Thread Epíleg
En/na MaxVK ha escrit:
> Thanks Epíleg, but I really don't want the unstable release - I need a rock
> solid version. Is there an up to date stable version that I can do the same
> thing with? Better still if there is actually a full .deb release?
> 
> Regards
> 
> Max

unstable? If I go to http://gambas.sourceforge.net/, I can read that the stable 
version is 2.9.0, and the unstable is the svn trunk, the future gambas3.

Best regards,

-- 
Epíleg


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] New Error message with 2.9

2008-11-14 Thread moon_walker

Hi Stefano, 

thanks,
but what means SVN version? :-)

thx
Attila



Stefano Palmeri wrote:
> 
> Il giovedì 13 novembre 2008 21:22:09 moon_walker ha scritto:
> 
> I had the same problem on slackware. Benoit fixed it in svn version.
> 
> Bye,
> 
> Stefano
> 
> -
> This SF.Net email is sponsored by the Moblin Your Move Developer's
> challenge
> Build the coolest Linux based applications with Moblin SDK & win great
> prizes
> Grand prize is a trip for two to an Open Source event anywhere in the
> world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/New-Error-message-with-2.9-tp20488836p20507030.html
Sent from the gambas-user mailing list archive at Nabble.com.


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] New Error message with 2.9

2008-11-14 Thread Stefano Palmeri
Il giovedì 13 novembre 2008 21:22:09 moon_walker ha scritto:
> Hi,
>
> i just updated my 2.8 to 2.9 successfully on OpenSuSE 11 with packages by
> valor's repo.
> If i want to create an executable or even edit the project properties i
> receive an error message:
>
> "Unable to create desktop shortcut.
> File is a directory.
> Project.SearchPathVariable.2372"
>
> please help.
>
> br
> Attila

I had the same problem on slackware. Benoit fixed it in svn version.

Bye,

Stefano

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Beginers questions

2008-11-14 Thread Stephen Bungay
Demosthenes Koptsis wrote:
> Hi to all,
> 
> i have two  simple questions as a beginner,
> 
> 1) how to have access to control values from different forms?
> 

   Set the controls in all forms to be public as Werner suggests, or use 
properties and strictly control what information gets exposed to the 
outside world.

> For example i have 2 forms, Form1 and Form2
> I want to write something like the next code, in Form2
> 
> --- Form1 code 
> TextArea1.Text="Hello world"
>  -
> 
> --- Form2 code 
> Message.info(Form1.TextArea1.Text)
> -
> 
> but i cant. is there any way?
> 
> 2) how to add a separator line with menu editor in a menu.
> 
> 
> I use gambas2-2.9.0 and openSuse10.2
> 
> Thanks my friends for your time
> 
   Can't help you with this one.. I know I've done this but it was so 
long ago now... I'g have to hunt down an example.

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Beginers questions

2008-11-14 Thread Ron
Werner schreef:
> Demosthenes Koptsis wrote:
>   
>> Hi to all,
>>
>> i have two  simple questions as a beginner,
>>
>> 1) how to have access to control values from different forms?
>>
>> For example i have 2 forms, Form1 and Form2
>> I want to write something like the next code, in Form2
>>
>> --- Form1 code 
>> TextArea1.Text="Hello world"
>>  -
>>
>> --- Form2 code 
>> Message.info(Form1.TextArea1.Text)
>> -
>>
>> but i cant. is there any way?
>>   
>> 
> In Project Properties there is a checkbox "Form Controls are public".
>   
>> 2) how to add a separator line with menu editor in a menu.
>>   
>> 
> Have to pass on this one. Have you tried just a minus sign?
>   
>

Do insert menu, and clear the Caption field, ie an empty menu entry.

Regards,
Ron_2nd.



-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Beginers questions

2008-11-14 Thread Werner
Demosthenes Koptsis wrote:
> Hi to all,
>
> i have two  simple questions as a beginner,
>
> 1) how to have access to control values from different forms?
>
> For example i have 2 forms, Form1 and Form2
> I want to write something like the next code, in Form2
>
> --- Form1 code 
> TextArea1.Text="Hello world"
>  -
>
> --- Form2 code 
> Message.info(Form1.TextArea1.Text)
> -
>
> but i cant. is there any way?
>   
In Project Properties there is a checkbox "Form Controls are public".
> 2) how to add a separator line with menu editor in a menu.
>   
Have to pass on this one. Have you tried just a minus sign?
>
> I use gambas2-2.9.0 and openSuse10.2
>
> Thanks my friends for your time
>
>   


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Beginers questions

2008-11-14 Thread Demosthenes Koptsis
Hi to all,

i have two  simple questions as a beginner,

1) how to have access to control values from different forms?

For example i have 2 forms, Form1 and Form2
I want to write something like the next code, in Form2

--- Form1 code 
TextArea1.Text="Hello world"
 -

--- Form2 code 
Message.info(Form1.TextArea1.Text)
-

but i cant. is there any way?

2) how to add a separator line with menu editor in a menu.


I use gambas2-2.9.0 and openSuse10.2

Thanks my friends for your time

-- 

Γεια χαρα σε όλους!!!

Regards,

Demosthenes Koptsis
-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user