If I may butt in for a second. That is exactly what I had to do when my
Ubuntu updated to 12.04. When I tried to "check for updates" the Update
Manager told me that Gambas was "unauthorized" and refused to install it or
upgrade it.
I ran the commands you mention and upgraded mysel
Hello, thanks for contributions.
One of them said he "solved" by cleaning version 3.5.2, then:
sudo add-apt-repository ppa:nemh/gambas3
sudo apt-get update
sudo apt-get install gambas3
regards
vuott
Dom 27/4/14, Johny Provoost ha scritto:
Oggett
op 27-04-14 13:16, Ian Haywood schreef:
> On Sun, Apr 27, 2014 at 9:09 AM, Jesus wrote:
>> El 27/04/14 02:13, Ru Vuott escribió:
>>> Hello,
>>>
>>> two friends of the forum "www.gambas-it.org" have asked me to post this
>>> problem here in the Mailing List.
>>>
>>>
>>> They had updated and used
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Thanks! I am running Gambas 3.5.2 now, but perhaps I'll be able to
pull the development version and try it out.
Another feature request that I think would have been extremely great
would be something like a .RichTextInsert() method for the TextEdit
co
On Sat, 26 Apr 2014, Patrik Karlsson wrote:
> Hi,
>
> today I am using TextBox_Change event to reject | characters.
>
> Public Sub txtName_Change()
>
> If String.InStr(Last.Text, "|") > 0 Then
> Last.Text = Replace(Last.Text, "|", "")
> Endif
>
> End
>
> I guess MaskBox can do this muc
On Sun, Apr 27, 2014 at 9:09 AM, Jesus wrote:
> El 27/04/14 02:13, Ru Vuott escribió:
>> Hello,
>>
>> two friends of the forum "www.gambas-it.org" have asked me to post this
>> problem here in the Mailing List.
>>
>>
>> They had updated and used normally the version 3.5.3 of Gambas.
>>
>> Well, n
El 27/04/14 02:13, Ru Vuott escribió:
> Hello,
>
> two friends of the forum "www.gambas-it.org" have asked me to post this
> problem here in the Mailing List.
>
>
> They had updated and used normally the version 3.5.3 of Gambas.
>
> Well, not long ago they have updated their Ubuntu LTS distro at
Hello again!
It'd be very handy if 'Pointer' was considered by the interpreter as an
integer data type like 'Byte', 'Short', 'Integer' and 'Long'. That way
one could use any integer function indiscriminately on a Pointer as
well, rather than converting it to 'Long' (using 'CLong' function)
every t
Hi,
When trying to erase a textarea.text with the command:
TextArea1.text = ""
..does not work and it throws the Gtk-Critical error message:
(Textarea:9381): Gtk-CRITICAL **: IA__gtk_text_buffer_set_text:
assertion `text != NULL' failed
===
Textarea1.clear
works, without a w