09-22-2024, 10:17 AM
The empty quotes look as if they are not recognised as a string! Replace these with the null character Chr$(0)
Alternatively, append the null terminator to the quotes, e.g., _Clipboard$ = "" + Chr$(0)
Alternatively, append the null terminator to the quotes, e.g., _Clipboard$ = "" + Chr$(0)