[Libreoffice-bugs] [Bug 119102] BASIC OPEN FOR BINARY does not delete existing file

2021-03-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

Andreas Heinisch  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |andreas.heini...@yahoo.de
   |desktop.org |

-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

himajin100...@gmail.com changed:

   What|Removed |Added

 Blocks||127592


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=127592
[Bug 127592] [META] LibreOffice Basic incl."Option Compatible" modules
-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2018-09-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

--- Comment #7 from Buovjaga  ---
(In reply to Jay Michael from comment #6)
> (In reply to Buovjaga from comment #5)
> 
>  Is there a way for me to edit my original post?
> 
>  Should I make a new comment/reply that includes the original post, and
> includes the changes you've indicated?

It's fine. The next version of Bugzilla will hopefully have editing
functionality.

-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2018-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

--- Comment #6 from Jay Michael  ---
(In reply to Buovjaga from comment #5)

 Is there a way for me to edit my original post?

 Should I make a new comment/reply that includes the original post, and
includes the changes you've indicated?

-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2018-09-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
  Component|LibreOffice |BASIC
 OS|Windows (All)   |All
 Ever confirmed|0   |1

--- Comment #5 from Buovjaga  ---
Thanks.

Step 1 should include that the text file must not be empty, so you see what
changes.

Version: 6.2.0.0.alpha0+ (x64)
Build ID: 414ef6cb187dd3bbcc917dbedf3c0c1cc8668f60
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86_64@42, Branch:master, Time: 2018-08-21_00:13:04
Locale: fi-FI (fi_FI); Calc: threaded

Arch Linux 64-bit
Version: 6.2.0.0.alpha0+
Build ID: 1c59d021b3dd27c8c0255312bd0d53ad25965bab
CPU threads: 8; OS: Linux 4.18; UI render: default; VCL: gtk3_kde5; 
Locale: fi-FI (fi_FI.UTF-8); Calc: threaded
Built on September 1st 2018

-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2018-09-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

--- Comment #4 from Jay Michael  ---
(In reply to himajin10 from comment #2)
> https://opengrok.libreoffice.org/xref/core/basic/source/runtime/iosys.
> cxx?r=7af90cc9#444

 Was this meant for me?
 I can believe that the line you indicate shows that if the mode is binary,
the file will not be deleted.  That's certainly consistent with what I
observed.

-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2018-09-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

Jay Michael  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Jay Michael  ---
(In reply to Buovjaga from comment #1)

2. Write a macro in LibreOffice that opens "x.txt" FOR BINARY, writes a few
bytes, and closes.

sub wb( fn as integer, byteval as integer )
  dim v as byte
  v = byteval
  put #fn,, v
end sub

Sub Main
const fname = "c:\users\jay\x.txt"
dim fn as integer
fn = freefile()
open fname for binary as #fn
wb(fn,asc("n"))
wb(fn,asc("e"))
wb(fn,asc("w"))
wb(fn,13)
wb(fn,10)
close fn
End Sub

 Change "fname" to point to your own home directory.
 Do not have "x.txt" open in LibreOffice while running the macro "Main".

-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2018-09-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

--- Comment #2 from himajin100...@gmail.com ---
https://opengrok.libreoffice.org/xref/core/basic/source/runtime/iosys.cxx?r=7af90cc9#444

-- 
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 119102] BASIC OPEN FOR BINARY does not delete existing file

2018-09-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119102

Buovjaga  changed:

   What|Removed |Added

 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Buovjaga  ---
(In reply to Jay Michael from comment #0)
> 2. Write a macro in LibreOffice that opens "x.txt" FOR BINARY, writes a few
> bytes, and closes.

Please write the macro here.

Set to NEEDINFO.
Change back to UNCONFIRMED after you have provided the information.

-- 
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