Copy Paste Text Too Long error (2 Viewers)

MsAccessNL

Member
Local time
Tomorrow, 00:01
Joined
Aug 27, 2022
Messages
213
I have a long text field when i paste a text in the table or in a form, i get message "Text too long to be edited" , If i copy smaller parts it will work. (25000characters wil work). I want to store a picture as Base64, this is a long text file. Pasting into NotePad works fine.
 
Base64 is a series of Byte array, meaning it is binary.
you need a VBA decoder to decode the base64.
 
Base64 can also be represented as a character string.
 
here is a demo, open form1.
see the code behind the buttons.
see the other modules.
 

Attachments

That's not the problem. The Problem is that i can't past a long text (the base64 character string)
 
Can you not use code to assign the value rather than copy paste?
 
At the end, yes, but know with testing, its a pain in the.., Is this a normal error in access, with pasting large text files?
 

Users who are viewing this thread

Back
Top Bottom