[Libreoffice-bugs] [Bug 84675] Add missing BASIC function and constant documentation

2017-05-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84675

Olivier Hallot  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |olivier.hallot@documentfoun
   |desktop.org |dation.org

--- Comment #8 from Olivier Hallot  ---
I'm attaching here the pdf and ods files from the forum archives.

However I can't get file 

LibreOffice BASIC Functions including Parameters.pdf 

from the archives, so if you have it somewhere, please attach it here.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84675] Add missing BASIC function and constant documentation

2017-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84675

Johnny_M  changed:

   What|Removed |Added

URL|http://en.libreofficeforum. |https://web.archive.org/web
   |org/node/5245   |/20160827142748/http://en.l
   ||ibreofficeforum.org/node/52
   ||45
Version|3.3.4 release   |Inherited From OOo

--- Comment #7 from Johnny_M  ---
(In reply to Regina Henschel from comment #6)
> Johnny_M: http://en.libreofficeforum.org does no longer exists. Do you have
> another place of the list, or have a copy that you can attach here?

Thanks for the heads-up! I've changed the URL to the one of its last crawl by
the Wayback Machine (August 27, 2016).

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84675] Add missing BASIC function and constant documentation

2017-03-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84675

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #6 from Regina Henschel  ---
Johnny_M: http://en.libreofficeforum.org does no longer exists. Do you have
another place of the list, or have a copy that you can attach here?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84675] Add missing BASIC function and constant documentation

2016-03-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84675

Olivier Hallot  changed:

   What|Removed |Added

 Blocks||80430

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84675] Add missing BASIC function and constant documentation

2015-06-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84675

Johnny_M kla...@partyheld.de changed:

   What|Removed |Added

 Depends on||90110
Summary|Add missing BASIC functions |Add missing BASIC function
   |and constants documentation |and constant documentation
   Severity|minor   |major

--- Comment #2 from Johnny_M kla...@partyheld.de ---
Also needed: Update of description of the Randomize statement according to
http://cgit.freedesktop.org/libreoffice/core/commit/?id=0e5aa443f8f603be6e5ad4ddcec12e5b6fbdff8ah=libreoffice-4-4

I.e.:

Using Randomize without an argument has no effect - in this case the
random-number generator will be initialized using system time (in seconds since
midnight) at its first use. If wishing to initialize (i.e. seed) the generator
using system time at any other point of time, use:

Sub ExampleRandomize
Dim lSeconds As Long
   lSeconds = Timer
   Randomize lSeconds
End Sub

Randomize affects only the Rnd function of BASIC. It has no effect on
random-number generators used by other parts of LibreOffice, such as, e.g., the
statistics and RAND() functions of Calc.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84675] Add missing BASIC function and constant documentation

2015-06-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84675

--- Comment #3 from Johnny_M kla...@partyheld.de ---
(In reply to Johnny_M from comment #2)
 [...]
 Using Randomize without an argument [...]

The without an argument should actually be without a parameter, for
consistency reasons.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84675] Add missing BASIC function and constant documentation

2015-06-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84675

--- Comment #4 from Johnny_M kla...@partyheld.de ---
(In reply to Johnny_M from comment #2)
Unfortunately, the following code example above seems to be wrong and needs to
be removed:

 [...] If wishing to initialize (i.e. seed) the
 generator using system time at any other point of time, use:
 
 Sub ExampleRandomize
 Dim lSeconds As Long
lSeconds = Timer
Randomize lSeconds
 End Sub
 [...]

Reasons: (a) That is not exactly what happens when Randomize is called without
a parameter, and (b) Randomize expects an integer, while Timer provides a Long
and will overflow it (86400 seconds per day).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs