Bug? [SOLVED] 5.02(1) Log > Copy All To Clipboard

sorex

Expert
Licensed User
Longtime User
Hello,

I dumped some data to the log window (~150 lines) in order to make a default data/csv file out of it.

When I right click and select copy all to clipboard only a portion is copied. (71 lines/4070 bytes)

It would also be nice if we could select 10 lines and copy that but it only allows a single line to be selected.
 

sorex

Expert
Licensed User
Longtime User
well, it didn't work.

I tried pasting in notepad and later notepad2 as I throught the limit was in notepad.
 

sorex

Expert
Licensed User
Longtime User
even when copying it to a document inside B4A it's been cut off
 

sorex

Expert
Licensed User
Longtime User
wrong guess ;)

it's using the log command for each line that appears in the log, not a concatinated string with 1 log command.
 

sorex

Expert
Licensed User
Longtime User
all you need to reproduce is this.

B4X:
Sub Activity_Create(FirstTime As Boolean)
For x=1 To 200
Log(x&"-1234567890123456789012345678901234567890")
Next
End Sub

you won't see 200 when you paste the clipboard
 

sorex

Expert
Licensed User
Longtime User
it's always around 4K that it stops (line 91 in this case)
 

sorex

Expert
Licensed User
Longtime User
sure, it goes to 200-1234567890123456789012345678901234567890 in the log window
 

sorex

Expert
Licensed User
Longtime User
no, this is a new desktop with Win8.1 on it. the "device" is genymotion tho.
 
Top