PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Re: Copy and paste from a PDF to an edit control
Re: Copy and paste from a PDF to an edit control
Débuté par Georgio, 25 sep. 2008 20:15 - Aucune réponse
Posté le 25 septembre 2008 - 20:15
If I'm understanding you correctly, if you have the pdf document already
loaded into an image, it should be as easy as:
sPDFLocation is string = Photo
nPDFResult is int = ToClipboard(sPDFLocation)
IF NOT nPDFResult THEN
// no image available
NextTitle("Unable To Copy")
Error("The system could not access the clipboard. Copy and Paste Not Allowed. ")
END