11-12-2024, 02:02 AM
But senior Steve...
I used to do the whole find replace bit, too.
Find: "
Replace: " + CHR$(34) + "
alt="Pete is tremendous"
becomes...
alt=" + CHR$(34) + "Pete is tremendous" + CHR$(34) + "
Helpful, but since the line doesn't include more text after the end quote, it needs the trailing + " cut off. My utility does that.
So with my utility
alt="Pete is tremendous"
becomes...
alt=" + CHR$(34) + "Pete is tremendous" + CHR$(34)
Very easy to paste into
a$ = " alt=" + CHR$(34) + "Pete is tremendous" + CHR$(34)
Pete
- My best amigo is my ego!
I used to do the whole find replace bit, too.
Find: "
Replace: " + CHR$(34) + "
alt="Pete is tremendous"
becomes...
alt=" + CHR$(34) + "Pete is tremendous" + CHR$(34) + "
Helpful, but since the line doesn't include more text after the end quote, it needs the trailing + " cut off. My utility does that.
So with my utility
alt="Pete is tremendous"
becomes...
alt=" + CHR$(34) + "Pete is tremendous" + CHR$(34)
Very easy to paste into
a$ = " alt=" + CHR$(34) + "Pete is tremendous" + CHR$(34)
Pete
- My best amigo is my ego!