It any one help me to find out how I can display a firebase storage pdf ("Bonjour visiteur, Merci de vous Inscrire ou de vous connectez pour voir les liens!") in my windev mobile app. In windev , i used pdf control and working well but in windev mobile, there is no pdf control & internet control is not working well with firebase links.
Use Chrome on Android Bonjour visiteur, Merci de vous Inscrire ou de vous connectez pour voir les liens!
Other solution for read pdf on android Bonjour visiteur, Merci de vous Inscrire ou de vous connectez pour voir les liens!
Thanks a lot Bonjour visiteur, Merci de vous Inscrire ou de vous connectez pour voir les liens! but I don't want to intend to use 2rd party browser like chrome. I want y view access to use. You advised me to use onl [QUOTE = "popoy, post: 25971, member: 741"] Other solution for read pdf on android Bonjour visiteur, Merci de vous Inscrire ou de vous connectez pour voir les liens! [/ QUOTE] Thanks, I tried this one ... In windev mobile emulator it works well but in actual phone, the pdf is not showing and only gray area shown instead of pdf. Tried multiple pdf sources with multiple mobiles but no success.
Tried this sFile_Path is string ANSI = fCurrentDir () + [fSep] + "test3.pdf" sLink_url is string = "Bonjour visiteur, Merci de vous Inscrire ou de vous connectez pour voir les liens!" oReq is an httpRequest oReq..URL = sLink_url oReq..Method = httpGet oReq..Destination = sFile_Path oRep is a httpResponse = HTTPEnvoie (oReq) IF Error Detected THEN Error (ErrorInfo (errComplet)) IF NOT // info (oRep.CodeEtat + rc + "Approval check OK.") strMonpdf is a string = sfile_path // completerep (frepexe ()) + "jesuischarlie.pdf" showPdf ("HTML1", strMonpdf, intModeSVG) END // INTERNAL PROCEDURE Url But not showing anything in HTML control except gray area inside HTML control.
Worked like a charm to display pdf in windev mobile sFile_Path is string ANSI = fRepDonnées() + [fSep] + "test.pdf" sLink_url is string = firebase storage pdf link oReq is an httpRequest oReq..URL = sLink_url oReq..Method = httpGet oReq..Destination = sFile_Path oRep is a httpResponse = HTTPEnvoie (oReq) SI fFichierExiste(sFile_Path) ALORS SI PAS PDFAffiche(NATIF_PDF..Valeur, sFile_Path) ALORS Erreur("Erreur lors de l'affichage du PDF") FIN SINON Erreur("Fichier PDF inexistant") FIN ========= In project we need to import the Repo from Github as mentioned in example Android Champ Lecture PDF example in LST 115 .