[Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4-

Tobias BOEGE reported a new bug.

Summary
---

Segfault with Subst$(), IIf() and Null

Type : Bug
Priority : Medium
Gambas version   : 3.8.90 (TRUNK)
Product  : Unknown


Description
---

Code such as

Print Subst$("&1", IIf(False, "x", ""))

results in a segfault on my system. It is crucial that there is an IIf() inside 
a Subst$() evaluation and that the IIf() evaluates to Null, or the empty string 
for that matter. The segfault occurs in STRING_subst():

#0  STRING_subst (str=, len=4, 
get_param=get_param@entry=0x4118cb ) at gbx_string.c:707
#1  0x00412411 in SUBR_subst (code=) at 
gbx_subr_string.c:584
#2  0x0043d28b in EXEC_loop () at gbx_exec_loop.c:514

Let me know if debugging symbols are required.





--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4-

Tobias BOEGE added an attachment:

subst-iif-segfault-0.0.1.tar.gz



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Error message in 1 line PLEASE FIX IT !

2016-04-06 Thread abbat81
Many times i got red errror messages in one line which can't be read because
it hides behind resolution of screen.

I think it't time to fix it




--
View this message in context: 
http://gambas.8142.n7.nabble.com/Error-message-in-1-line-PLEASE-FIX-IT-tp55850.html
Sent from the gambas-user mailing list archive at Nabble.com.

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Error message in 1 line PLEASE FIX IT !

2016-04-06 Thread Benoît Minisini
Le 06/04/2016 13:56, abbat81 a écrit :
> Many times i got red errror messages in one line which can't be read because
> it hides behind resolution of screen.
>
> I think it't time to fix it
>

I don't understand what you mean. Do you have a screenshot?

-- 
Benoît Minisini

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4-

Benoît MINISINI changed the state of the bug to: Accepted.




--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4-

Comment #1 by Benoît MINISINI:

IIf() does not matter there. Subst$("&1", "") crashes the same way.



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #910: Segfault with Subst$(), IIf() and Null

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.910&from=L21haW4-

Comment #2 by Benoît MINISINI:

Fixed in revision #7726.

Benoît MINISINI changed the state of the bug to: Fixed.



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] Lenght of a string

2016-04-06 Thread José Monteiro
len("José Antônio") = 14
I need to fill a text file and upload it to a system in order to make an
invoice.
The field "name" must have lenght = 115. If shorter than that you must
complement it with spaces.
So:

 for i = 1 to (115 - len(name))
   name = name & Space$(1)
 next

The result is --> "José Antônio" + 101 spaces

But, in the text file, "José Antônio" + 101 spaces is considered as having
lenght = 113, not 115.
The text file, then, is rejected by the system, because the following fields
are not being correctly interpreted.
Any sugestions?
Thanks in advance



--
View this message in context: 
http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html
Sent from the gambas-user mailing list archive at Nabble.com.

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Lenght of a string

2016-04-06 Thread Oliver Etchebarne Bejarano
You are writing utf-8 characteres, so the 'é' and the 'ô' are two bytes 
long ("José Antônio" is 12 chars but 14 bytes long).

I think you should either remove the tildes, or use UTF-8 string 
functions (like String.len() instead of len()) for the calculations, and 
then change the encoding to something like latin-1. And hope that your 
system can understand the new encoding well...


El 06/04/16 a las 07:48, José Monteiro escribió:
> len("José Antônio") = 14
> I need to fill a text file and upload it to a system in order to make an
> invoice.
> The field "name" must have lenght = 115. If shorter than that you must
> complement it with spaces.
> So:
>
>   for i = 1 to (115 - len(name))
> name = name & Space$(1)
>   next
>
> The result is --> "José Antônio" + 101 spaces
>
> But, in the text file, "José Antônio" + 101 spaces is considered as having
> lenght = 113, not 115.
> The text file, then, is rejected by the system, because the following fields
> are not being correctly interpreted.
> Any sugestions?
> Thanks in advance
>
>
>
> --
> View this message in context: 
> http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html
> Sent from the gambas-user mailing list archive at Nabble.com.
>
> --
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user

-- 

Oliver Etchebarne Bejarano
Responsable del Área de TIC
Ica Server E.I.R.L. 

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Lenght of a string

2016-04-06 Thread Oliver Etchebarne Bejarano
You are writing utf-8 characteres, so the 'é' and the 'ô' are two bytes 
long ("José Antônio" is 12 chars but 14 bytes long).

I think you should either remove the tildes, or use UTF-8 string 
functions (like String.len() instead of len()) for the calculations, and 
then change the encoding to something like latin-1. And hope that your 
system can understand the new encoding well...

El 06/04/16 a las 07:48, José Monteiro escribió:
> len("José Antônio") = 14
> I need to fill a text file and upload it to a system in order to make an
> invoice.
> The field "name" must have lenght = 115. If shorter than that you must
> complement it with spaces.
> So:
>
>   for i = 1 to (115 - len(name))
> name = name & Space$(1)
>   next
>
> The result is --> "José Antônio" + 101 spaces
>
> But, in the text file, "José Antônio" + 101 spaces is considered as having
> lenght = 113, not 115.
> The text file, then, is rejected by the system, because the following fields
> are not being correctly interpreted.
> Any sugestions?
> Thanks in advance
>
>
>
> --
> View this message in context: 
> http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html
> Sent from the gambas-user mailing list archive at Nabble.com.
>
> --
> ___
> Gambas-user mailing list
> Gambas-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/gambas-user

-- 

Oliver Etchebarne Bejarano
Responsable del Área de TIC
Ica Server E.I.R.L. 

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Lenght of a string

2016-04-06 Thread José Monteiro
Thank you, Oliver.
Using String.len(name) completely solves the problem.



--
View this message in context: 
http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855p55858.html
Sent from the gambas-user mailing list archive at Nabble.com.

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Lenght of a string

2016-04-06 Thread ML
José,

A side note, no need also to use a FOR-NEXT to fill X spaces. You can do
it in a single step:

  'for i = 1 to (115 - len(name))
  '  name = name & Space$(1)
  'next
  name = String.Left$(name & Space$(115), 115)

If you need the spaces at the left (for example to right-align numbers),
you do the opposite:

  numberString = String.Right$(Space$(places) & Str$(number), places) 
'The number will be right-aligned to "places" spaces and returned in
numberString.

As Oliver pointed, you should use the UTF-8 versions of the calls;
otherwise you will have less than the expected characters in the
resulting string.

Regards,
zxMarce.

On 2016-04-06 11:00, Oliver Etchebarne Bejarano wrote:
> You are writing utf-8 characteres, so the 'é' and the 'ô' are two bytes 
> long ("José Antônio" is 12 chars but 14 bytes long).
>
> I think you should either remove the tildes, or use UTF-8 string 
> functions (like String.len() instead of len()) for the calculations, and 
> then change the encoding to something like latin-1. And hope that your 
> system can understand the new encoding well...
>
>
> El 06/04/16 a las 07:48, José Monteiro escribió:
>> len("José Antônio") = 14
>> I need to fill a text file and upload it to a system in order to make an
>> invoice.
>> The field "name" must have lenght = 115. If shorter than that you must
>> complement it with spaces.
>> So:
>>
>>   for i = 1 to (115 - len(name))
>> name = name & Space$(1)
>>   next
>>
>> The result is --> "José Antônio" + 101 spaces
>>
>> But, in the text file, "José Antônio" + 101 spaces is considered as having
>> lenght = 113, not 115.
>> The text file, then, is rejected by the system, because the following fields
>> are not being correctly interpreted.
>> Any sugestions?
>> Thanks in advance
>>
>>
>>
>> --
>> View this message in context: 
>> http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html
>> Sent from the gambas-user mailing list archive at Nabble.com.
>>
>> --
>> ___
>> Gambas-user mailing list
>> Gambas-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gambas-user



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Lenght of a string

2016-04-06 Thread Jose Monteiro
Thank you again.This one line solution is much more elegant.
 

On Wednesday, April 6, 2016 11:33 AM, ML  wrote:
 

 José,

A side note, no need also to use a FOR-NEXT to fill X spaces. You can do
it in a single step:

  'for i = 1 to (115 - len(name))
  '  name = name & Space$(1)
  'next
  name = String.Left$(name & Space$(115), 115)

If you need the spaces at the left (for example to right-align numbers),
you do the opposite:

  numberString = String.Right$(Space$(places) & Str$(number), places) 
'The number will be right-aligned to "places" spaces and returned in
numberString.

As Oliver pointed, you should use the UTF-8 versions of the calls;
otherwise you will have less than the expected characters in the
resulting string.

Regards,
zxMarce.

On 2016-04-06 11:00, Oliver Etchebarne Bejarano wrote:
> You are writing utf-8 characteres, so the 'é' and the 'ô' are two bytes 
> long ("José Antônio" is 12 chars but 14 bytes long).
>
> I think you should either remove the tildes, or use UTF-8 string 
> functions (like String.len() instead of len()) for the calculations, and 
> then change the encoding to something like latin-1. And hope that your 
> system can understand the new encoding well...
>
>
> El 06/04/16 a las 07:48, José Monteiro escribió:
>> len("José Antônio") = 14
>> I need to fill a text file and upload it to a system in order to make an
>> invoice.
>> The field "name" must have lenght = 115. If shorter than that you must
>> complement it with spaces.
>> So:
>>
>>  for i = 1 to (115 - len(name))
>>    name = name & Space$(1)
>>  next
>>
>> The result is --> "José Antônio" + 101 spaces
>>
>> But, in the text file, "José Antônio" + 101 spaces is considered as having
>> lenght = 113, not 115.
>> The text file, then, is rejected by the system, because the following fields
>> are not being correctly interpreted.
>> Any sugestions?
>> Thanks in advance
>>
>>
>>
>> --
>> View this message in context: 
>> http://gambas.8142.n7.nabble.com/Lenght-of-a-string-tp55855.html
>> Sent from the gambas-user mailing list archive at Nabble.com.
>>
>> --
>> ___
>> Gambas-user mailing list
>> Gambas-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/gambas-user



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


  
--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Gambas mime type

2016-04-06 Thread T Lee Davidson
Matti,

I was wrong about the pattern in 
"/usr/share/mimelnk/application/x-gambas3.desktop". That mimetype file is for 
Gambas scripts, 
not Gambas executables.

And, I recommend ignoring my instruction to create 
"~/.local/share/applications/gbr3.desktop". It might be much better to just 
create the association in System Settings.

Once there, go to Applications -> File Associations and search on "gambas". 
There should be two there already which you can use 
as examples to create a "x-gambas" type. You can switch back an forth between 
the types as you create the new one.

I chose the "application-x-gambas" icon from System icons, added "*.gambas" as 
a filename pattern, described it as "Gambas 
executable", and added "/usr/bin/gbr3" in Application Preference Order.

Once I clicked Apply, the file, "~/.local/share/applications/gbr3.desktop", was 
created and the mimetype database updated 
automatically.


On 04/05/2016 09:47 PM, T Lee Davidson wrote:
> On 04/05/2016 03:17 PM, Matti wrote:
>> Unfortunately, I have to set up my system (openSUSE 42.1) completely new.
>> I installed Gambas 3.8.4 
>> fromhttp://download.opensuse.org/repositories/Education/openSUSE_Leap_42.1/, 
>> and it runs ok as it did
>> before.
>>
>> But the packager seems to have made a mistake, as *.gambas files are 
>> regarded as plain text documents and won't start by
>> clicking on them.
>>
>> So, does anyone know how to make KDE run *.gambas files automatically?
>
> Matti,
>
> I think the mistake in "/usr/share/mimelnk/application/x-gambas3.desktop" is 
> the Patterns being set to "*.g;*.G". I tried
> correcting that to "*.gambas;*.Gambas" on my system. But, I got impatient and 
> didn't want bother seeing if a reboot would cause
> the new pattern to be picked up.
>
> Here's a quick fix.
>
> Ensure that you have a file "~/.local/share/applications/gbr3.desktop" with 
> the content:
> [Desktop Entry]
> Exec=/usr/bin/gbr3
> MimeType=application/gambas;
> Name=gbr3
> NoDisplay=true
> Type=Application
>
> (It can sometimes take a minute or so for the system to recognize changes in 
> "~/.local/share/applications".)
>
> Then go to System Settings -> Applications -> File Associations. Search for 
> "gambas". It should be:
> Filename patterns: *.gambas
> Description: application/gambas
> Application Preference Order: gbr3
>
> If it's not there, add it.
>

-- 
Lee
__

"Artificial Intelligence is no match for natural stupidity."

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Gambas mime type

2016-04-06 Thread Matti
Lee,
I sent a mail this morning to thank you - but it never reached the list (used 
the wrong mail account).
I followed your first fix, and everything is working as expected.
So, don't care, and thanks again!
Matti

Am 06.04.2016 um 17:37 schrieb T Lee Davidson:
> Matti,
>
> I was wrong about the pattern in 
> "/usr/share/mimelnk/application/x-gambas3.desktop". That mimetype file is for 
> Gambas scripts,
> not Gambas executables.
>
> And, I recommend ignoring my instruction to create 
> "~/.local/share/applications/gbr3.desktop". It might be much better to just
> create the association in System Settings.
>
> Once there, go to Applications -> File Associations and search on "gambas". 
> There should be two there already which you can use
> as examples to create a "x-gambas" type. You can switch back an forth between 
> the types as you create the new one.
>
> I chose the "application-x-gambas" icon from System icons, added "*.gambas" 
> as a filename pattern, described it as "Gambas
> executable", and added "/usr/bin/gbr3" in Application Preference Order.
>
> Once I clicked Apply, the file, "~/.local/share/applications/gbr3.desktop", 
> was created and the mimetype database updated
> automatically.
>
>
> On 04/05/2016 09:47 PM, T Lee Davidson wrote:
>> On 04/05/2016 03:17 PM, Matti wrote:
>>> Unfortunately, I have to set up my system (openSUSE 42.1) completely new.
>>> I installed Gambas 3.8.4 
>>> fromhttp://download.opensuse.org/repositories/Education/openSUSE_Leap_42.1/,
>>>  and it runs ok as it did
>>> before.
>>>
>>> But the packager seems to have made a mistake, as *.gambas files are 
>>> regarded as plain text documents and won't start by
>>> clicking on them.
>>>
>>> So, does anyone know how to make KDE run *.gambas files automatically?
>> Matti,
>>
>> I think the mistake in "/usr/share/mimelnk/application/x-gambas3.desktop" is 
>> the Patterns being set to "*.g;*.G". I tried
>> correcting that to "*.gambas;*.Gambas" on my system. But, I got impatient 
>> and didn't want bother seeing if a reboot would cause
>> the new pattern to be picked up.
>>
>> Here's a quick fix.
>>
>> Ensure that you have a file "~/.local/share/applications/gbr3.desktop" with 
>> the content:
>> [Desktop Entry]
>> Exec=/usr/bin/gbr3
>> MimeType=application/gambas;
>> Name=gbr3
>> NoDisplay=true
>> Type=Application
>>
>> (It can sometimes take a minute or so for the system to recognize changes in 
>> "~/.local/share/applications".)
>>
>> Then go to System Settings -> Applications -> File Associations. Search for 
>> "gambas". It should be:
>> Filename patterns: *.gambas
>> Description: application/gambas
>> Application Preference Order: gbr3
>>
>> If it's not there, add it.
>>

--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4-

Zainudin AHMAD reported a new bug.

Summary
---

Offline documentation not update

Type : Bug
Priority : Low
Gambas version   : 3.8.90 (TRUNK)
Product  : Wiki


Description
---

- I have remove wiki directory and wiki.tar.bz2 file in directory 
./local/share/gambas3

- and update/download gambas wiki offline from preference window (attach pic-1) 
it's succes (to download) and it's syas "the documentation is up to date"

- when I look(online wiki) in web browser (attach pic-2) some part has change

- but in offline wiki it's not change/not update (attach pic-3) the timestamp 
still 2015-06-04 (attach pic-4)

thaks

note : I remove the wiki directory and wiki.tar.bz2 because description in 
preference window always "the documentation is up to date" and button is disable


System information
--

[System]
Gambas=3.8.90 r7601
OperatingSystem=Linux
Kernel=3.2.0-88-generic
Architecture=x86
Distribution=Ubuntu 12.04.5 LTS
Desktop=LXDE
Theme=Gtk
Language=en_US.UTF-8
Memory=494M

[Libraries]
Cairo=libcairo.so.2.11000.2
Curl=libcurl.so.4.2.0
DBus=libdbus-1.so.3.5.8
GStreamer=libgstreamer-0.10.so.0.30.0
GStreamer=libgstreamer-1.0.so.0.7.0
GTK+2=libgtk-x11-2.0.so.0.2400.10
GTK+3=libgtk-3.so.0.400.2
OpenGL=libGL.so.96.43.23
Poppler=libpoppler.so.19.0.0
QT4=libQtCore.so.4.8.1
QT5=libQt5Core.so.5.0.2
SDL=libSDL-1.2.so.0.11.3

[Environment]
DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-pDyLiVAzRW,guid=620c78edb37a3bef27f60616003c
DEFAULTS_PATH=/usr/share/gconf/Lubuntu.default.path
DESKTOP_SESSION=Lubuntu
DISPLAY=:0
GB_GUI=gb.qt4
GDMSESSION=Lubuntu
GNOME_KEYRING_CONTROL=/tmp/keyring-Fvyg87
GNOME_KEYRING_PID=1630
HOME=
LANG=en_US.UTF-8
LC_ADDRESS=en_US.UTF-8
LC_IDENTIFICATION=en_US.UTF-8
LC_MEASUREMENT=en_US.UTF-8
LC_MONETARY=en_US.UTF-8
LC_NAME=en_US.UTF-8
LC_NUMERIC=en_US.UTF-8
LC_PAPER=en_US.UTF-8
LC_TELEPHONE=en_US.UTF-8
LC_TIME=en_US.UTF-8
LOGNAME=
MANDATORY_PATH=/usr/share/gconf/Lubuntu.mandatory.path
PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
PWD=
SAL_USE_VCLPLUGIN=gtk
SHELL=/bin/bash
SSH_AGENT_PID=1621
SSH_AUTH_SOCK=/tmp/keyring-Fvyg87/ssh
TZ=:/etc/localtime
USER=
XAUTHORITY=/.Xauthority
XDG_CONFIG_DIRS=/etc/xdg/lubuntu/:/etc/xdg/xdg-Lubuntu:/etc/xdg
XDG_CONFIG_HOME=/.config
XDG_CURRENT_DESKTOP=LXDE
XDG_DATA_DIRS=/etc/xdg/lubuntu:/usr/share/Lubuntu:/usr/local/share/:/usr/share/:/usr/share:/usr/share/gdm:/var/lib/menu-xdg
XDG_MENU_PREFIX=lxde-
XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
XDG_SESSION_COOKIE=2d9710af0959f6893eb828f10008-1454502296.442251-1328032402
XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session0
_LXSESSION_PID=1591



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4-

Zainudin AHMAD added an attachment:

pic-1.png



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4-

Zainudin AHMAD added an attachment:

pic-2.png



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4-

Zainudin AHMAD added an attachment:

pic-3.png



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #911: Offline documentation not update

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.911&from=L21haW4-

Zainudin AHMAD added an attachment:

pic-4.png



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #859: Report preview, caption label use English

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.859&from=L21haW4-

Comment #5 by Zainudin AHMAD:

it's seems fix, change become "two-sided"

thanks

Zainudin AHMAD changed the state of the bug to: Fixed.



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] [Gambas Bug Tracker] Bug #861: browse project using wrong file manager(not default)

2016-04-06 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.861&from=L21haW4-

Comment #5 by Zainudin AHMAD:

the problem is from xdg-open not from gambas, so this is invalid report.

Zainudin AHMAD changed the state of the bug to: Invalid.



--
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user